ul {
	margin: 0;
	padding: 0;
	list-style: none;
 /* Width of Menu Items */
	}
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 180px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	background-color:#D2EAF8;
	padding-right:10px;
	border-top: solid white 1px;
	border-bottom: solid white 1px;		
	border-right: solid white 1px;			
	}
li ul li{
	line-height:24px;
	vertical-align:top;
}
/* Styles for Menu Items */
ul li a {
	display: block;
	}
	
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; } /* The magic */
