ul#nav {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 200px;
}

ul#nav li {
	position: relative;
	line-height: normal;
	width: 200px; 
}

ul#nav li ul {
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #ccc;
}
	
ul#nav li ul {
	position: absolute;
	left: 200px; /* Set 1px less than menu width */
	top: 0;
	display: none;
}

/* Styles for Menu Items */

ul#nav li ul li {
	display: inline;
}
	
ul#nav li a {
	display: block;
	background: #fff; /* IE6 Bug */
	border-bottom: 0;
}

	
ul#nav li ul li a {
	display: block;
	text-decoration: none;
	color: #000;
	background: #ededed; /* IE6 Bug */
	background-color: #ededed;
	padding: 5px;
	border: 1px solid #ccc; /* IE6 Bug */
	border-bottom: 0;
	font-weight: bold;
	font-family: arial, verdana, helvetica, sans-serif;
	width: 200px; 
}
	
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

ul#nav li ul li a:hover { 
	font-weight: bold; 
	color: #ffffff; 
	background: #c00016; 
	background-color: #c00016; 
	text-decoration: none;
} /* Hover Styles */

ul#nav li:hover ul, li.over ul { display: block; } /* The magic */



