#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	/* width: 10em; */
}

#nav li { /* all list items */
	float: left;
	width: 124px; /* width needed or else Opera goes nuts */
	background: black;
}

#nav li ul { /* second-level lists */
	position: absolute;
	top: 29px;
	background: black;
        width: 242px;
        w\idth: 242px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li li { /* second-level lists */
        width: 252px;
        w\idth: 242px;
        font-size: 8pt;
	border-color: white;
	border-style: solid;
	border-width: 1px;
	border-bottom: none;
        padding: 2px 2px 2px 6px;
}
#nav li li.lastitem { /* second-level lists */
	border-bottom-style: solid;
	border-bottom-color: white;
	border-bottom-width: 1px;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

