#navholder{
	padding-top: 10px;
  margin: 0 auto;
  text-align: center;
	width: 1000px:
}

#nav{
	height: 35px;
	margin: 0 auto;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0 auto;
	margin-left: 0; 
	margin-right: 0; 
	list-style: none;
	line-height: 1;
	text-indent:0
}

#nav li ul li{
	margin-left: 0; 
	margin-right: 0; 
	float: left;
}

#nav a {
	text-align: center;
	display: block;
	width: 98px;
	height: 34px;
	line-height: 35px;
	color: white;
	text-decoration: none;
	font-size: 10pt;
	white-space:nowrap;
	margin-left: 0; 
	margin-right: 0; 
	background-repeat: no-repeat;
	background-image: url(menu.gif);
}

#nav a:hover{
	background-image: url(menuover.gif);
	background-repeat:no-repeat;
}

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

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

#nav li ul ,#nav li ul a {
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -35px 0 0 10em;
}

#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 */
	float: left;
	left: auto;
}
