body {
	font: normal 12px verdana;
	font-weight: bold;
	}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; 
	border-bottom: 1px solid #ccc;
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 149px; 
	top: 0;
	display: none;
	}

ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #777;
	border-bottom: 0;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

ul li a:hover { font-size:11px; color: blue; background: #f9f9f9; text-decoration: underline;} 
		
li ul li a { padding: 2px 5px; } 
		
li:hover ul, li.over ul { display: block; } 