#header-nav {
		height:29px;
		padding-left:6px;
		background:url(/images/header-nav-bg.gif) no-repeat;
		line-height:29px;
	}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 2.5;
	list-style-type: none;
	z-index: 2000;
	background-color: transparent;
}

#nav li { /* all list items */
	float: left;
	position:relative;
}

#nav li a {
	display:block;
	float:left;
		padding:0 15px;
		color:white;
	}
	
#nav li a:hover {
		background:#FFB700;
		text-decoration:none;
	}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #FFB700;
	width: 260px;
	top: 29px;
	border-top: 1px solid #fff;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li{ /* all list items */
	width: 100%; /* width needed or else Opera goes nuts */
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	background: #FFB700;
}

#nav li ul li a:hover {
		background:url(/images/header-subnav-bg.gif) no-repeat;
		text-decoration:none;
	}

#nav li ul li a { /* all list items */

	display:block;
	width: 240px;
	color:white;
	font-weight:bold;
	padding: 0 10px;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -2.6em 0 0 18em;
}

#nav li:hover ul ul, #navigation 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: 0;
}

