@charset "UTF-8";
/* CSS Document */


/* STYLE GUIDE ----------------------------- 

colors:
	#173f74				dark blue
	#7d7d7d				dark gray
	#af1f24				solar red
	#818285				materials gray
	#0072bc				fc blue

fonts:
	Arial				1st Primary
	Helvetica			2nd Primary
	Verdana				3rd Primary
	Sans-Serif			4th Primary

/* END ------------------------------------- */

/* NAVIGATION ----------------------------- */



.navigation{
	width:825px;
	font-weight:bold;
}

.navigation:after{ /*Add margin between menu and rest of content in Firefox*/
	content:"."; 
	display:block; 
	height:0; 
	clear:both; 
	visibility:hidden;
	
}

.navigation ul{
	width:825px;
	background:#005764;
	padding:7px 0;
	margin:0;
	text-align:center;
	
}

.navigation ul li{
	display:inline;

}

.navigation ul li a{
	font:11px Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	color:#fff;
	padding:6px 15px;
	margin:0;
	text-decoration:none;
	
}

.navigation ul li a:hover, .navigation ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
	color:#77b0c5;
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	font:11px Arial, Helvetica, sans-serif;
	color:#444;
	position:absolute;
	top:0;
	border:1px solid #fff;
	line-height:18px;
	z-index:100;
	width:140px;
	visibility:hidden;
	/*filter:progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4);*/ /*Add Shadow in IE. Remove if desired*/
	
}

.dropmenudiv a{
	width:auto;
	display:block;
	text-indent:8px;
	padding:3px 0;
	text-decoration:none;
	font-weight:bold;
	color:#000;
	background:#aed3e4;
	filter:alpha(opacity=75);
	-moz-opacity:.75;
	opacity:.75;
}

* html .dropmenudiv a{ /*IE only hack*/
	width:100%;
	
}

.dropmenudiv a:hover{
	background-color:#006470;
	color:#fff;
}







/* END ------------------------------------- */























