/* CSS Document */

#nav, #nav ul { /* all lists */
	width: 643px;
	padding: 0;
	margin: 0 0 0 8px;
	list-style: none;
	line-height: normal;
	}

#nav a {
	display: block;
	width: auto;
	}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	margin: 0 0 0 0px;
	padding: 0 12px 0 11px;
	background: url(images/nav/nav-div.gif) right no-repeat;
	}

#nav li ul { 
	display:none; /* UPDATED: need to first hide the subs */
}	
	
#nav li.right {
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	margin: 0 0 0 0px;
	padding: 0 0 0 11px;
	background: none;
	}

#nav li ul, #nav li.right ul { /* second-level lists */
	position: absolute;
	background: #4f7a9a;
	width: 183px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	padding: 0 0 2px 0;
	margin: 0;
	}
#nav li ul li, #nav li.right ul li {
	background: #4f7a9a;
	width: 175px;
	padding: 0 0 0 0;
	margin: 4px;
	font-size: 13px;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: left;
	background: none;
	}
#nav li ul li a, #nav li.right ul li a {
	color: #fff;
	text-decoration: none;
	}
#nav li ul li a:hover, #nav li.right ul li a:hover {
	color: #fff;
	text-decoration: underline;
	}

#nav li:hover ul, #nav li.right:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	display:block; /* UPDATED: then we show them on hover */
	left: auto;
	}
