body {
	font: normal 12px tahoma;
	}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #9933cc;
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #ffccff;
	padding: 5px 5px 5px 1.6em;
	border: 1px solid #9933cc;
	border-bottom: 1;
	background-color: #9900cc;
	background-image: url(Images/bullet2.gif);
	background-repeat: no-repeat;
	background-position: .3em .6em;
	}

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

ul li a:hover { /* Hover Styles */
 color: #9900cc;
 background: #ffccff;
 background-image: url(Images/bullet2.gif);
 background-repeat: no-repeat;
 background-position: .3em .6em;
} 
		
li ul li a { /* Sub Menu Styles */
 padding: 2px 5px;
 background-image: none;
}

li ul li a:hover { /* Sub Menu Styles */
 background-image: none;
}
		
li:hover ul, li.over ul { /* The magic */
 display: block;
}
