#nav, #nav ul { /* all lists */
	padding: 0 0 0 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	text-align: left;
}
#nav li { /* all list items */
  position : relative;
	float : left;
	line-height : 1.25em;
	margin-bottom : -1px;
	margin-right : -1px;
	width: 11em; /* width needed or else Opera goes nuts */
	font: 14px/17px Lucida sans unicode;
	text-transform: uppercase;
  background: #cccccc;
}

#nav li ul { /* second-level lists */
	position : absolute;
	left: -999em;
	margin: 0;
	text-align: left;
}
#nav li ul li {
	text-transform: none;
}
#nav li ul ul { /* third-and-above-level lists */
	left: -999em;
	margin-left : 14.05em;
	margin-top : -1.8em;
}

#nav li a, span.nolink, span.forbidden {
	width: 11em;
	w\idth : 10em; /* not a typo, browser hack */
	display : block;
	color : black;
	font-weight : bold;
	text-decoration : none;
	text-align: center;
	background-color : #cccccc;
	padding : 0;
}

#nav li span.forbidden {
	color: #aaaaaa;
}
#nav li a:hover {
	color : #000000;
	background-color : #ffcc00;
}

#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: auto;
}

