#navItem, #navItem ul 
{ 
	/* all lists */
	padding: 5;
	margin: 0;
	list-style: none;
	line-height: 2;
	font-size: 8pt;
	letter-spacing: 1px;
	font-family: Arial;
	z-index: 100;
	text-align: center;
}

#navItem .menuItem 
{
	display: block;
	width: 123px;
	color:#ffffff;
	text-decoration:none;
}

#navItem .menuItem:hover 
{
	display: block;
	width: 123px;
	color:#FFFFFF;
	background-color: #2cb182;
}

#navItem li 
{ 
	/* all list items */
	float: left;
}

#navItem li ul 
{ 
	/* second-level lists */
	position: absolute;
	background: #0d70aa;
	width: 123px;
	left: -999em; /* using left instead of display to hide menus because display: none isnt read by screen readers */
}

#navItem li:hover ul, #navItem li.sfhover ul 
{ 
	/* lists nested under hovered list items */
	left: auto;
}