ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 100px;
	}
ul li {
	position: relative;
	}
li ul {
	position: absolute;
	left: 0px;
	top: 50px;
	display: none;
	}
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	padding: 2px;
	border-bottom: 0;
	}
ul li ul li a {
   border-top: 1px solid #333333;
   padding: 2px;
   }

ul li ul a {
   background: #D6FABA;
   }

ul li ul a:hover {
   background: #CBEEB0;
   }

li:hover ul, li.over ul { 
	display: block; }



/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */





