#nav {
	width: 1000px;
	height: 30px;
	padding: 0;
	margin: 0;
}

#nav ul {
	margin: 0;
        padding: 0;
	list-style: none;
	line-height: 1;
}

#nav ul li {
	float: left;
	border-right: 1px solid #3d3f3f;
}

#nav a {
	color: #c8c8c8;
	display: block;
	font: normal normal 11px "Lucida Grande", Lucida, Verdana, sans-serif;
	text-decoration: none;
	padding: 8px 17px 9px 17px;
	text-transform: uppercase;
}

#nav ul li ul li a, #nav li.selected ul li a {
  text-transform: none;
  background: #3d3f3f;
  color: #c8c8c8;

}

#nav a:hover {
	background-color: #3d3f3f;
	color: #c8c8c8;
}

#nav li.selected a  {
	background-color: #e0e4e7;
	color: #000;
	text-transform: uppercase;
}

#nav ul li ul li { /* all list items */
        border: none;
        float: none;
        display: block;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #3d3f3f;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
       z-index: 999;
       border-top: 1px solid #c8c8c8;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto; /* set this to auto to enable the drop-down menus - comment out to disable */
}

#nav li:hover, #nav li:hover.selected a {
  background: #3d3f3f;
  color: #c8c8c8;
}

#nav ul li ul li a:hover, #nav ul li.selected ul li a:hover { 
  background: black;
}