#nav {
	width:900px;
	z-index:100;
	position:relative;
	height:25px;
	background-image:url(../images/black60percent.png);
}

#nav ul { /* all lists */
	padding-top:5px;
	top:25px;
	margin: 0;
	list-style: none;
	line-height: 1;
	list-style:none;
}

#nav a {
	padding-left:10px;
	padding:5px;
	display: block;
	width: 15em;
	color:#FFF;
	text-decoration:none;
}

#nav a:hover{
	text-decoration:none;
	color:#999;
}

#nav li { /* all list items */
	list-style:none;
	float: left;
	width: 15em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	list-style:none;
	position: absolute;
	/*background: orange;*/
	background-image:url(../images/black60percent.png);
	width: 15em;
	left: -999em; /* 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;
	list-style:none;
}

li li {
	padding-bottom:5px;
	list-style:none;
}
