ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 190px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}
	
ul li {
	position: relative;
	z-index:9999;
	}
	
li ul {
	position: absolute;
	left: 190px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	 border-top: 1px none #AACCD5;
    border-bottom: 1px solid #AACCD5;
	 border-left: 1px solid #AACCD5;
    border-right: 1px solid #AACCD5;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
    margin-top: 0;
    height: 19px;
    line-height: 19px;
    font-weight: normal;
    text-transform: capitalize;
    background-color: #DEECF0;
    background-position: 13px 5px;
    background-repeat: no-repeat;
    border-top: 1px solid #AACCD5;
    border-bottom: 1px none #AACCD5;
    padding: 0 10px;
	font-size: 11px;
    font-family: Tahoma, Verdana, Arial, Helvetica;
    text-align:left;
	}
	ul li a:hover {
	    margin-top: 0;
    height: 19px;
    line-height: 19px;
    color: #000000;
    background-color: #CEE3E9;
    /*border-left: 5px solid #ffffff;*/
    border-top: 1px solid #ABCFD9;
    border-bottom: 1px none #EEF5F7;
    /*padding-left: 6px;*/
	}
	
/* 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 */