#navx, #navx ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#navx a {
	display: block;
	color : #225588;
	TEXT-DECORATION: none;
	padding : 3px 20px 3px 10px;
}

#navx li {
	/* all list items */
	float: left;
	font-size: 98%;
	/* width needed or else Opera goes nuts */

}

#navx li ul li{
	/* all list items */
	float: left;
	width: 190px;
	/* width needed or else Opera goes nuts */

}

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

#navx li ul a {
	color: Black;
	padding : 3px 0px 3px 0px;
}

#navx li ul a:hover{
	/* second-level lists */
	width: 190px;
	background: #d1e8f0;

	/* using left instead of display to hide menus because display: none isn't read by screen readers */
}


#navx li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 130px;
}

#navx li:hover ul ul, #navx li:hover ul ul ul, #navx li.sfhover ul ul, #navx li.sfhover ul ul ul {
	left: -999em;
}

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

