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

#nav li { /* all list items */
	position : relative;
	float : left;
	line-height : 1.25em;
	margin-bottom : -1px;
	margin-right : -1px;
	
	background: white;
	/* border: 1px solid #000000; */
	/* width: 10em; width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position : absolute;
	left: -999em;
	
	width: 10em;
}

#nav li ul li {
	border: 1px solid #000000;
	
	width: 10em;
}

#nav li ul ul { /* third-and-above-level lists */
	left: -999em;
	margin-left : 11.05em;
	margin-top : -1.35em;
	
	border: 1px solid #000000;
}

#nav li a, span.nolink {
	display : block;
	width: auto;
	padding : 2px 0.5em;
	
	color: #1d1d1d;
	background-color : #ffffff;
	
	font-family: Corbel, "Trebuchet MS", Verdana, "Lucida Grande", "DejaVu Sans", sans-serif;
	font-size: 1.3em;
	font-weight : bold;
	
	text-decoration : none;
}

#nav li a:hover {
	color: #09db12;
	background-color: #a13b96;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

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