/* CSS Document */

#nav, #nav ul { /* all lists */
	font-size:12px;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	width:738px;
}
body{
	background:#021f42;
	font-family: Arial, Helvetica, sans-serif;
}
#nav a {
	color:#3d3d3d;
	padding: 9px 0 9px 0px;
	display: block;
	/*border-left:1px solid #818181;
	border-right:1px solid #fff;*/
}
#nav a:hover {
	
}
#nav li { /* all list items */
	float: left;
	width: 123px; /* width needed or else Opera goes nuts */
}
#nav li a{
	color:#000;
	text-decoration:none;
	text-align:center;
	background:url(../images/global/navbarBG-off.jpg);
}
#nav li a:hover, #nav li a.selected{
	background:url(../images/global/navbarBG-on.jpg);
}
#nav li ul { /* second-level lists */
	position: absolute;
	background: #e6e6e6;
	border:1px #fff;
	text-decoration:none;
	width: 250px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul li,#nav li ul li a{
	background:#ccc;
	width: 250px;
	_width:267px;
}
#nav li ul li a{
	padding-left:8px;
	text-align:left;
	text-decoration:none;
	border-right:1px solid #fff;
	border-left:1px solid #fff;
	border-bottom:1px solid #fff;
}
#nav li ul li a:hover{
	text-decoration:underline;
	background: #999;
}
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
