body {
	font: normal 11px verdana;
	}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 120px; /* Width of Menu Items */
	border-bottom: 0px ;
	
	}

ul li {
	position: relative;

	}
	

li ul {
	position: absolute;
	left: 120px; /* Set 1px less than menu width */
	top:7px;
	display: none;
	border-bottom: 1px solid #ccc;
    text-align:left;
	z-index:3;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff; 
	padding: 1px;
	border: 0;
	border-bottom: 1px solid #ccc;
	
	}

* html ul li { float: left; height: 1%; 	 }
* html ul li a { height: 1%; 	z-index:3;}


ul li a:hover { color: #7484C1; background: #FCAF17; } /* Hover Styles */
		
li ul li a { padding: 2px 5px; background: #7484C1; color:#FCAF17;  } /* Sub Menu Styles */
		
li:hover ul, li.over ul{display: block; }
