#nav {
	float: left;
	width: 873px;
	height: 25px;
	background-image: url(../images/navbar_background.jpg);
	background-repeat: repeat-x;
	text-align: left;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 20px;
}

#nav a {
	display: block;
	text-decoration: none;
	color: #333333;
}

#nav li { /* all list items */
	float: left;
	font-family: Arial;
	font-size: 13px;
	font-weight: bold;
	margin-left: 9px;
	margin-right: 9px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #f4b704;
	width: 12em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li a {
	width: 13em;
}

#nav li ul li {
	padding-left: 5px;
	margin-left: 0px;
	margin-right: 0px;
	width: 12em;
	font-size: 11px;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1.9em 0 0 13em;
	line-height: 20px;
	background-color: #f4b704;
	margin-right: 0px;
}

#nav li a:hover {
	color : white;
	}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
	color: #FFFFFF;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	color: #FFFFFF;
}