#nav li.header
{
	padding : 2px 0 2px 5px;
	margin : 5px 0 5px 0;
	width: 125px;
	font-size : 12px;
	font-weight: bold;
	background: #54433a;
	color: #fff;
	
}

#nav a:hover {
	color : #C94342;
	text-decoration : underline;
	font-weight: bold;
}

	
/********************/
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0 0 0 0;
	list-style: none;
	line-height: 1;
	float : left;
	width : 13em;
	background: #C7C1AF;
}


#nav a {
	display: block;
	color : #000000;
	text-decoration : none;
	font-size : 12px;
	font-weight : bold;
	padding : 0 0.5em;
}




#nav li { /* all list items */
	font-size : 10px;
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	padding: 0 0 5px 0;
	line-height : 1.25em;
	/*position : relative; Michael, this caused it to overwrite over items in template*/
	width: 15em;
}

#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 */
		margin-left : 8em; /* adjusts submenu starting position */
		padding: 5px 13px 5px 5px; /* forces width of box to standardize short text items */
		border: 1px solid #000;
}

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