@charset "utf-8";
/* CSS Document */

#menuMain, #menuMain ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.2;
	font-size:14px;
}

#menuMain a {
	display: block;
	width: 11em;
	text-decoration:none;
	color:#999999;
	padding-left:2em;
}
#menuMain li ul a:hover {
	width: 9em;
	background-color:#e0e0e0;
}
#menuMain li ul li a {
	color:#ffffff;
}

#menuMain li { /* all list items */
	float: left;
	width: 11em; /* width needed or else Opera goes nuts */
	background:url(../images/drop-leafe-20-20.png) no-repeat;
}
#menuMain li ul li { /* all list items */
	background:none;
}

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

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

}

