/* This handles the hover state for the top-level LI items */
div#menu li:hover, div#menu li.sfhover {
	color: #ffffff;
}
/* This hides the nested UL before you hover */
div#menu li ul {
	position: absolute;
	width: 220px;
	left: -999em;
}
/* This shows the nested UL when you hover */
div#menu li:hover ul {
	left: auto;
}

/* This is the style for the nested UL */
div#menu li:hover ul {
	background: #333;
	display: block;
    padding: 0px;
   	margin: 0px;
}
/* This is the style for the LI items within the nested UL */
div#menu li:hover ul li {
	background: #333;
	width: 220px;
	display: block;
	padding: 0px 0px 0px 0px; 
    margin: 0px;
	text-align: left;
	border: none;
    border-left: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}