/* CSS Document */
#header {width:949px; text-align:left;}
#header_top img {padding:0; margin:0; border:none;}
#nav_left {width:169px; height:20px; background-image:url(../images/hleft2.jpg); float:left;}
#nav_right {width:780px; height:20px; background-color:#f3cf1d; float:right;}
#bar {width:169px; height:13px; float:none; clear:both; background-image:url(../images/hleft3.jpg); background-repeat:no-repeat; background-color:#fff;}

#nav, #nav ul { /* all lists */
	padding:0;
	margin:0;
	list-style: none;
}
#nav a { /*formatting the top level links*/
	display: block;
	width: auto;
	padding:0;
	margin:0;
	font-size:12px;
	font-weight:bold;
	color: #5f5004;
	text-decoration:none;
	padding:2px 30px 2px 30px;
}

#nav li { /* all list items */
	float: left;
	width: auto; /* for Opera */
	padding:0;
	margin:0;
}
#nav li ul { /* sub navigation */
	position: absolute;
	background: #e9eef2;;
	width: 180px;
	padding:2px 2px 5px 8px;
	border:1px solid #000;
	margin:0;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul li a, #nav li ul li a:link { /*sublink formatting*/
	color: #003366;
	text-decoration:none;
	font-size:10px;
	width:150px;
	padding:6px 0 6px 15px;
	margin:0;
	clear:both;
}
#nav li ul li a:hover { /*arrow for sublinks*/
	color:003366;
	background-image:url(../images/nav_bullet.jpg);
	background-repeat:no-repeat;
	background-position:left;
}
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}