/*jquery plugin*/
#af_container{
	position:relative;
	}
	#bar_container{
		background:url(/images/af_counter.gif);
		width:185px;
		height:251px;
		}
		#af_bar{
			width:67px;
			height:245px;
			position:absolute;
			left:85px;
			}
			#af_bar #top{
				background:url(/images/af_bar_top.gif) no-repeat;
				height:6px;
			}
			#af_bar #mid{
				background:url(/images/af_bar_back.gif) repeat-y;
				height:100%;/*CSP sdb 062910 added height variable for IE to display properly*/
			}
			#af_bar #btm{
				background:url(/images/af_bar_bottom.gif) no-repeat;
				height:4px;
			}
			
	.af-header, .data { float:left; font-family:Helvetica; font-size:11px; }
	.af-header{
		clear:left;
		color:#47463f;
		font-weight:bold;
	}
	.data{
		color:#64635b;
		margin-left:3px;
	}
	
	#goal{ padding-top:18px; }
	#current{}
	#start{}
	#end{}
	#asof{ display:none; }
	#part_current{}
	#part_lyear{ display:none; }
	#part_goal{}

 	.lay {  
       _height: 0;  
       zoom: 1; 
       }  


/*-----------------ASP PAGE------------------*/
/*---------------ANNUAL FUND------------------*/

/*container for the whole bar contents*/
.af_container {
	
	
}

.af_bar_top, .af_bar_middle, .af_bar_bottom { width:67px; }
/*Top of the bar (ABOVE middle and bottom)*/
.af_bar_top {
	background:url(/images/af_bar_top.gif) no-repeat;
	height:6px;
}

/*Middle of the bar (BETWEEN top and bottom)*/
.af_bar_middle {
	background:url(/images/af_bar_back.gif) repeat-y;
}

/*Bottom of the bar (BELOW top and middle)*/
.af_bar_bottom {
	background:url(/images/af_bar_bottom.gif) no-repeat;
	height:4px;
}

/*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:97px;
}

/*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:209px;
	width: 251px;
	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{}
