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

#nav a {
	display: block;
	width: 120px;
}

#nav li { /* all list items */
	float: left;
	width: 121px; /* width needed or else Opera goes nuts */
}

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

#nav li ul ul { /* third-and-above-level lists */
	margin: -21px 0 0 122px;
}

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

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

a.menu
{
background-image:url(left.gif);
border-bottom:1px solid #333333;
border-left:1px solid #333333;
border-right:1px solid #333333;
display:block;
text-align: center;
width:120px;
height:20px;
padding-left:0px;
text-decoration:none;
color:#000000;
font-family:Tahoma;
font-size:14px;
}
a.menu:hover
{
background-image:url(over.gif);
color:#000000;
}