
body { font-family: sans-serif, Arial, Verdana; font-size: 10pt; white-space: nowrap; }

#nav, #nav ul { /* all lists */
	padding: 0px;
	margin: 0px;
	list-style: none;
	line-height: 1.5;
}

#nav a {	display: block;
	width: 70px;
	color: #FFFFFF;
	font-size: 8pt;
	font-family: sans-serif;
	white-space: nowrap;
	text-decoration: none;
}

#nav li { /* all list items */
	float: left;
	width: 70px; /* width needed or else Opera goes nuts width of block */
}

#nav li ul { /* li ul second-level lists */
	position: absolute;
	background: #000080;
	width: 120px;
	left: -130px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#content {    /* clears content under drop down list */
	clear: left;
	color: #ccc;
}