ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width:auto;
}

ul li {
	position: relative;
}
	
li ul {
	position:relative;
	left:0;
	top: 0;
	display: none;
	background-color:inherit;
}

/* Styles for Menu Items */
ul li a {
	display: block;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
		
li ul li {
	list-style:outside;
}
		
li:hover ul, li.over ul { display: block; } /* The magic */