#nav {
	margin-bottom: 6px;
   z-index: 8; /* index of 8 puts us above all content and still doesn't break Shadowbox */
	font-weight: bold;
}

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

#navtop a {
	display: block;
	padding: 7px 8px;
	text-decoration: none;
}

#navtop li { /* all list items */
	float: left;
	/* width needed or else Opera goes nuts */
	list-style: none;
	height: 30px;
}

#navtop li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border: 1px solid black;
	font-weight: normal;
	font-size: 100%;
}

#navtop li ul li {
	height: auto;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid #adb9c6;
}



#navtop > #navtop li ul li:hover  {
	background-color: white;
	color: black;
}

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