/* simple code */

#navL img {
	padding:0;
	margin:0;
}
#navL, #navL ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font: bold 19px "Trebuchet MS", Arial;
	text-transform: lowercase;
}
#navL a, #navL .iemenufix {
	display: block;
	width: 100%;
	color: #fcfcc7;
	text-decoration: none;
	font-weight: bold;
	text-transform: lowercase;
	font: bold 14px "Trebuchet MS", Arial;
}
#navL a:hover {
	color: #464b10;
	text-decoration: none;
	font-weight: bold;
}
#navL li { /* all list items */
	float: left;
	width: 201px; /* width needed or else Opera goes nuts */
	margin-top:8px;
	height:37px;
}
#navL li li {
	/* all drop down list items */
	background-color: #aba009;
	margin:0;
	padding:10px;
	height:20px;
	position:relative;
	z-index:10000
}
#navL li ul { /* second-level lists */
	position: absolute;
	width: 201px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin: -43px 0 0 201px;
 	*margin: 0;
	float:left;
}
#navL li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 9em;
}
#navL li:hover ul ul, #navL li:hover ul ul ul, #navL li.sfhover ul ul, #navL li.sfhover ul ul ul {
	left: -999em;
}
#navL li:hover ul, #navL li li:hover ul, #navL li li li:hover ul, #navL li.sfhover ul, #navL li li.sfhover ul, #navL li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
#navL li:hover {
	background-position: 0 0;
}

