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

#nav a {
   display: block;
   color: white;
}

#nav li { /* all list items */
   float: left;
}

#nav li ul { /* second-level lists */
   position: absolute;
   background: orange;
   width: 10em;
   left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li {
   margin: 0;
   width: 10em;
   background-color: #A73845;
}

#nav li ul li a {
	padding: .5em .5em .5em 2em;
	border-bottom: 1px solid white;
	border-left: 1px solid white;
}

#nav li ul li a:hover {
   background-color: #8e0011;
   border-bottom: 1px solid white;
   border-left: 1px solid white;
}

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

#nav li h1 {
	color: white;
    background-color: #8e0011;
	background-image: none;
	padding: .5em;
	margin: 0;
	padding: .5em;
	border-bottom: 1px solid white;
	border-left: 1px solid white;	
}


