#menuTable
{
  
	
}

#menuTable table /*width of the entire menu*/
{
	width: 800px;
  border:0;
  font-family: 'Trebuchet MS', 'Lucida Grande',
	  Verdana, Lucida, Geneva, Helvetica, 
	  Arial, sans-serif;
	font-size:13px;
	margin-top: 0.1em;
  margin-bottom: 0.2em;
  
}

 #menuTable ul 
{ /* all lists */
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
  width:133px;
}

#menuTable a 
{
	display: block;
	padding: 5px 5px 5px 5px;
	background-color: #ffffff;
	color: #000;
	text-decoration: none;
	text-align:center;
	width: 100%;
	border-width: 1px;
	border-style: solid;
	border-color: gray;
}

#menuTable li 
{ /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	margin-top: 1em;
	margin: 0;
}

#menuTable li ul 
{ /* second-level lists */
	position: absolute;
	color: #ff9;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#menuTable li:hover ul, #menuTable li.sfhover ul
{ /* lists nested under hovered list items */
	left: auto;
  /*color: #fff;*/
  visibility:visible;
}

