body
{
	margin:0px;
	background-color:#ffffff;
}

#nav, #nav ul
{
	margin-left:  100px;
	padding: 0;
	list-style: none;
	position:relative;
}

/* now lets get rid of position:relative for IE */

* #nav, * #nav ul
{
	padding: 0;
	list-style: none;
}


#nav a
{
	width: 105px;
	display: block;
	color: White;
	text-decoration: none;
	background-color: Red;
	border: 1px solid #ffffff;
	padding: 4px;
	font: 14px Arial, Helvetica, sans-serif;
	/* N6 needs this to cascasde the font style */
}

/* BMH for IE 5 */

* html #nav a
{
  	width: 115px;
  	w\idth: 105px;
}
	
#nav li
{
	margin: 0px;
	float: left;
	width: 115px;
	position: relative;
}
	
#nav li ul
{
	margin: 0px;
	position: absolute;
	left: -999em;
	width: 115px;
}
	
#nav li a:hover
{
	color: #000000;
	background-color: #CCCC99;
}

#nav li:hover ul, #nav li.sfhover ul
{
	left: auto;
}