ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 170px; /* Width of Menu Items */
	border-bottom: 0px solid #ccc;
	background-position: left;
	background-repeat:no-repeat;
	text-decoration:none;
	}
	
ul li {
	position: relative;
	text-align: left;
	font-family:Tahoma;
	font-size:11px;
	border-bottom:1px solid white;
	border-right:1px solid white;
	width:170px;
	}
	
li ul {
	position: absolute;
	left: 170px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	background-color:#ffffff;
}
	

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color:#900101;
	padding-left: 20px;
	padding-bottom: 7px;
	padding-right: 5px;
	padding-top: 7px;
	font-weight: bold;
	text-align: left;
	clear: left;
	background-position: left;
	background-image: url('../images/bullet.jpg');
	background-repeat:no-repeat;
	}
ul li ul li
{
	
	background-repeat:no-repeat;
	width:170px;
	height:23px;
	border:1px #900101 solid;
	background-image:none;
	
}
li ul li a:hover
{
	text-decoration:none;
		
}

/* 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;clear:both;} /* The magic */