ul  {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 140px;
	/* Width of Menu Items */
	border: 0px solid #ccc;
}

ul li  {
	position: relative;
}

li ul  {
	position: absolute;
	left: px;
	/* Set 1px less than menu width */
	top: 20;
	display: none;
}

/* Styles for Menu Items */
ul li a  {
	display: block;
	background: #fff;
	padding: 0px;
	border: 0px solid #ccc;
	/* IE6 Bug */
	border-bottom: 0;
	width: 135px;
	text-decoration: underline;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li  {
	float: left;
	height: 1%;
}

* html ul li a  {
	height: 1%;
}

/* End */
		
li:hover ul  {
	display: block;
}

