/* VERSIONS
/* 1_0: Default Fund Thermometer
/* 2_0: Update to account for default horizontal / vertical bar chart [Author: Landon]

/* Fund Thermometer
----------------------------------------------------------------------------- */

div.fundthermometer{}
	div.fundthermometer .inner{}
		div.fundthermometer .inner h2{}
		div.fundthermometer .inner p{ margin: 0; padding: 0;}
		div.fundthermometer .inner p.goal{ margin: 5px 18px;}
		div.fundthermometer .inner .thermometer{ /* EMPTY bar chart */
			background-color: #e1e1e1;
			border: 3px solid #999;
			border-radius: 4px;
			-moz-border-radius: 4px;
			-webkit-border-radius: 4px;
			margin: .5em 18px;
			position: relative;
			} 
			div.fundthermometer .inner .thermometer span{ /* FULL bar chart (ie 100% = Full).  Percentage applied inline - not here. */
				background-color: #8F3500; 
				display: block;
				position: absolute;
				} 
				div.fundthermometer .inner .thermometer span p{
					background-color: #95BE60;				
					border: 2px solid #708F47;
					border-radius: 4px;
					-moz-border-radius: 4px;
					-webkit-border-radius: 4px;
					color: #ffffff;
					font-weight: bold;
					font-size: 130%;
					padding: 4px;
					position: absolute;
					text-shadow: 2px 2px 2px #708F47;
					width: auto;
					}
		div.fundthermometer .inner p.total{ margin: 5px 18px;}

/* Horizontal */
div.fundthermometer{}
	div.fundthermometer .horizontal{}
		div.fundthermometer .horizontal .thermometer{ 	
			height: 1.75em;
			}
			div.fundthermometer .horizontal .thermometer span{ 
				height: 1.75em;
				}
				div.fundthermometer .horizontal .thermometer span p{	
					right: 1%;
					top: -25%;
					}
				
/* Vertical */	
div.fundthermometer{}
	div.fundthermometer .vertical{}
		div.fundthermometer .vertical .thermometer{ 	
			height: 300px;
			width: 1.75em;
			}
			div.fundthermometer .vertical .thermometer span{ 
				bottom: 0;
				width: 1.75em;
				}
				div.fundthermometer .vertical .thermometer span p{
					font-size: 120%;
					left: -40%;
					top: 1%;
					}
