#nav {
    font-size:10px;
}


#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
    text-decoration: none;
    font-size:11px;
    font-family:Arial;
    padding: 3px 5px 3px 5px;
}

#nav li { /* all list items */
	float: left;

}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #c3baa0;
	width:140px;
	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;
}

.submenu {
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

a.submenu:hover {
    background-color: #159646;
    color:#FFFFFF;
}

