/* CSS Document */

/*text for overall site*/
	td, .red 
	{font-family: verdana,arial,helvetica; 
	font-size: 10px; 
	color: white; 
	line-height: 140%; }
	

	
	/*red text for emphasis*/
	.red
	{
	color: red;}
	
	/*this style below is for the main navigation. It's contained within a div because of the cascading order, the td above overrides spacing issues.*/
	div.nav {
	display: block; 
	height: 19px; 
	font-family: verdana,arial,helvetica; 
	font-size: 10px; 
	color: white;
	font-weight: bold; } 
	
	div.links {
	display: block; 
	height: 19px; 
	font-family: verdana,arial,helvetica; 
	font-size: 10px; 
	color: blue;} 
	
	div.text {
	display: block; 
	height: 17px; 
	font-family: verdana,arial,helvetica; 
	font-size: 10px; 
	color: blue;
	font-weight: bold; }
	
	/*this style below is for headlines*/
	.headline, a.headline:link, a.headline:visited {
	font-family: verdana,arial,helvetica; 
	font-size: 11px; 
	text-decoration: underline; 
	color: black; 
	line-height: 20px; 
	font-weight: bold;}
	


	/*headline effect*/	
	a.headline:hover {
	font-family: verdana,arial,helvetica; 
	font-size: 11px; 
	text-decoration: none; 
	color: black; 
	line-height: 20px; 
	font-weight: bold;}
	
	/*headlines with no link or decoration*/
	.headline {text-decoration: none;
	font-size: 15px;
	font-weight: bold;}
	
	.sub_text {text-decoration: none;
	font-size: 12px;
	color: black;}
	
	/*LINKS*/
	a:link, a:visited 
	{font-family: verdana,arial,helvetica; font-size: 12px; color: white; text-decoration: underline;}
	


	
	