/* HORIZONTAL BAR CHART */
/* Adapted From AppleToOranges -- GREAT ARTICLE GUYS! http://applestooranges.com/blog/post/css-for-bar-graphs/?id=55 */

    dl { 
        margin: 0; 
        padding: 0;                     
    }
    
	dt { 
        position: relative; /* IE is dumb */
        clear: both;
        display: block; 
        float: left; 
        width: 104px; 
        height: 30px; 
        line-height: 20px;
        margin-right: 17px;              
        font-size: .75em; 
        text-align: right; 
    }
    
	dd { 
        position: relative; /* IE is dumb */
        display: block;                 
        float: left;     
        width: 197px; 
        height: 20px; 
        margin: 0 0 15px; 
        background: #CCCCCC;
     }
     
	 * html dd { float: none; } 
    /* IE is dumb; Quick IE hack, apply favorite filter methods for wider browser compatibility */

     dd div { 
        position: relative; 
        background: #FFCC00;
        height: 20px; 
        width: 75%; 
        text-align:right; 
     }
     
	 dd div strong { 
        position: absolute; 
        right: -3px; 
        top: -2px; 
        display: block; 
        background: #FF6600;
        height: 24px; 
        width: 3px; 
        text-align: left;
        text-indent: -9999px; 
        overflow: hidden;
     }


div#amount_markers{ width: 197; margin: 0 0 0 120px;}
div#amount_min{ float: left; width: 10px; font-size: 11px; color: #666666; }
div#amount_max{ float: right; width: 20px; font-size: 11px; color: #666666; }


/* INFO TOOL TIPS */
.tool-tip {	color: #fff; width: 200px; z-index: 13000; } */
.tool-title { font-weight: bold; font-size: 11px; margin: 0; color: #9FD4FF; padding: 8px 8px 4px; background: url(../images/bubble.png) top left; }
.tool-text { font-size: 11px; padding: 15px 15px 15px 15px; background: url(images/bubble.png) bottom right; }
.rollover_info{ cursor: pointer; cursor: hand; }