#header-navigation {
	float: right;
	z-index: 99;
}

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

#header-navigation ul {
	margin: 55px 0 0;
}

#header-navigation a {
	display: block;
	font-size: 10px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
}

#header-navigation a:hover {
	color: #ffc423;
}

#header-navigation li { /* all list items */
	float: left;
	padding: 0 15px;
	border-left: 1px solid #ffc423;
	/* width needed or else Opera goes nuts :: Sorry, Opera. */
}

#header-navigation .first { border: 0; }

#header-navigation li ul { /* second-level lists */
	position: absolute;
	background: #fff;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin: 0;
	border: 0;
	border-top: 10px solid #000;
	z-index: 99;
}

#header-navigation li ul li {
	clear: left;
	padding: 0;
	z-index: 99;
	border: 0;
	border-bottom: 1px dotted #c0c0c0;
	display: block;
	float: none;
}

#header-navigation li ul a {
	color: #000;
	font-size: 10px;
	padding: 8px;
	display: block;
	background-color: #fff;
}

#header-navigation li ul a:hover {
	color: #FFC423;
	background-color: #000;
}

#header-navigation li:hover ul, #header-navigation li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
