#nav, #nav ul { /* all lists */
	padding: 0;
	list-style: none;
	line-height: 16px;
	margin-top: 2px;
	margin-right: 2px;
	margin-bottom: 2px;
	margin-left: 5px;
	z-index: 1000;
}

#nav a {
	display: block;
	padding-right: 8px;
	padding-left: 8px;
	font-size: 12px;
	color: #000000;
}

#nav li { /* all list items */
	float: left; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #FFFFFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFAC1F;
	border-right-color: #33425A;
	border-bottom-color: #33425A;
	border-left-color: #33425A;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	width: 200px;
	margin: 0px;
	padding: 5px;
}
#nav li ul li a {
	padding: 5px;
	width: 188px;
	border: 1px solid #FFFFFF;
}
#nav li ul li a:hover {
	padding: 5px;
	background-color: #EAEAEA;
	border: 1px solid #D2D2D2;
}


#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
#nav li:hover {position: static;}
