ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 10em;
	width: 8.86em;
	height: 23px;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	left: 0;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { /* lists nested under hovered list items */
	top:	23px;
	display: block;
}

#content {
	clear: left;
}

ul a {
	display: block;
	text-decoration: none;
	color: #ffffff;
	background: #F69F67; 
	padding-top: 3px;
	padding-bottom: 0px;
	border: 0px;
	font-family: verdana;
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	height: 23px;
}
/* Hover Styles */
ul a:hover { 
	color: #ffffff; 
	background: #F27626; 
	padding-top: 3px;
	border: 0px;
	height: 23px;
} 

/* Sub Menu Styles */
li ul a {
	text-decoration: none;
	color: #ffffff;
	background: #F69F67; /* IE6 Bug */
    padding: 3px; 
	height: 18px;
} 

/* Sub Menu Hover Styles */
li ul a:hover { 
	color: #ffffff; 
	background: #F27626; 
    padding: 3px; 
	height: 18px;
} 