/*jquery plugin*/
#af_container{ position:relative; }
	#bar_container{ height:250px; width:189px; background:url(/images/afBar.jpg); overflow:hidden; }
		#af_bar{ position:relative; height:201px; width:97px; margin:25px 0 0 62px; }
			#af_bar div { position:absolute; }
				#af_bar #top{}
					#af_bar #left{}
				#af_bar #mid{ width:97px; background:url(/images/afBarRepeater.jpg) bottom left no-repeat; margin:0; padding:0; zoom:1; }
				#af_bar #btm{}
					#af_bar #right{}
			
	
	#data_container { display:none; }
		#goal{}
		#current{}
		#start{}
		#end{}
		#asof{}
		#part_current{}
		#part_lyear{}
		#part_goal{}
			.af-header, .data { float:left; }
			.af-header{ clear:left; font-weight:bold; }
			.data{ margin-left:3px; }

 	.lay {  
       _height: 0;  
       zoom: 1; 
       }  

/*--------------------------------------------*/
/*------------------ASP PAGE------------------*/

/*container for the whole bar contents*/
.af_container {
	
	
}

/*Top of the bar (ABOVE middle and bottom)*/
.af_bar_top {
	background:url(/images/af_bar_top.gif) no-repeat;
	height:6px;
	width: 63px;
}

/*Middle of the bar (BETWEEN top and bottom)*/
.af_bar_middle {
	background:url(/images/af_bar_back.gif) repeat-y;
	width: 63px;
}

/*Bottom of the bar (BELOW top and middle)*/
.af_bar_bottom {
	background:url(/images/af_bar_bottom.gif) no-repeat;
	height:4px;
	width: 63px;
}

/*Container for the bar (.af_bar_top, .af_bar_middle, .af_bar_bottom)*/
.af_bar {
	position: absolute;	/*Don't remove*/
	bottom: 0px;	/*Set to the bar's distance from the bottom of the chart*/
	margin-left:57px;
}

/*Container for .af_bar.  Typically where the graph will go*/
.af_guage {
	position: relative;	/*Don't remove*/
	background:url(/images/af_counter.gif) no-repeat;
	height:208px;
	width: 171px;
	background-position:center;
}

/*Container for chart stats*/
/*float left/right and set .af_guage padding-left/right to go side by side.*/
.af_info {
	padding-top:10px;
}

/*A single line of stat information*/
.af_info_line {
	font-family: 'Verdana', 'Trebuchet MS', 'Times New Roman', 'Tahoma', 'Georgia', 'sans serif';
	font-size: 11px;
	line-height: 20px; 
}

/*Title of the stat info (ie. Start Date, Participation Goal)*/
.af_info_title {
	float:left;
	font-weight:bold;
}

/*Stat value (ie. $100,000 or 50%)*/
.af_info_value {
	float:right;
}
/*Used to clear floats on the info lines*/
.af_info_clear {
	clear: both;
}

/*Use the following styles to turn things on and off*/
.goal-amt{}
.current-amt{}
.part-goal{}
.start-date{}
.end-date{}
.as-of-date{}
