#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav li { /* all list items */
	float: left; /* width needed or else Opera goes nuts */
}

#nav a {
	display: block;
	padding-right: 20px;
	color: #adb4c1;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-size: 13px;
	padding-bottom: 15px;
}

#nav a:hover {
	color: #f2da38;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 100px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	/*background-color: #252525;*/
	border-top-width: 9px;
	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: #f2da38;
	border-right-color: #494111;
	border-bottom-color: #494111;
	border-left-color: #494111;
	margin-left: -5px;
	padding-left: 5px;
	left: -999em;
	padding-bottom: 10px;
	z-index: 99;
	background-image: url(menu-hg.png);
}
#nav li ul a {
	font-size: 9px;
	padding-top: 10px;
	line-height: 13px;
	padding-bottom: 0px;
}

#nav li ul a:hover {
	color: #f2da38;
}

#nav li ul ul { /* third-and-above-level lists */
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 100px;
	margin-top: -35px;
	border-top-width: 1px;
	border-top-color: #494111;
	width: 80px;
	line-height: 10px;
	background-image: url(menu-hg.png);
}
#nav li ul ul a {
	line-height: 5px;
	}
#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;
}

