#nav {
	position: relative;
	top: 10px;
	left: 15px;
	float: left;
}
#nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 180px; /* Width of Menu Items */
	background: #fff;
	}
	
#nav ul li {
	position: relative;
	}
	
#nav ul li ul {
	position: absolute;
	width: 180px;
	left: 179px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	border: 1px solid #999;
	}

/* Styles for Menu Items */
#nav ul li a, #nav ul li a:visited, #nav ul li a:active {
	font-size: 12px;
	line-height: 12px;
	display: block;
	text-decoration: none;
	color: #000;
	padding: 8px;
	border: 1px solid #999; /* IE6 Bug */
	margin-bottom: 2px;
	}

#nav ul li.current a {
	background: url(../images/navcurrent-bg.jpg);
	font-weight: bold;
}
	
#nav ul li a:hover {
	border: 1px solid #010368;
	background: url(../images/navhover-bg.jpg) top left repeat-x;
	font-weight: bold;
	color: #fff;
}
	
#nav ul li ul a:link, #nav ul li ul a:visited, #nav ul li ul a:active {
	margin-bottom: 0;
	border: 0;
	padding: 4px 8px;
	font-size: 11px;
	background: none;
	font-weight: normal;
}

#nav ul li ul a:hover {
	background: url(../images/navhover-bg.jpg) top left repeat-x;
	font-weight: normal;
}
	
/* Holly Hack. IE Requirement \*/
* html #nav ul li { float: left; height: 1%; }
* html #nav ul li a { height: 1%; }
/* End */

#nav ul li:hover ul, #nav ul li.sfhover ul { display: block; } /* The magic */