/* This handles the hover state for the top-level LI items */
#menu li:hover, #menu li.sfhover {
	color: #FFF;
}
/* This hides the nested UL before you hover */
#menu li ul {
	position: absolute;
	width: 200px;
	left: -999em;
	
	
}
/* This shows the nested UL when you hover */
#menu li:hover ul, #menu li.sfhover ul {
	left: auto;
	display:  block;
}

/* This is the style for the nested UL */
#menu li:hover ul, #menu li.sfhover ul {
	background: #054d83;
	display: block;
	margin: 0px; padding: 0px;
}
/* This is the style for the LI items within the nested UL */
#menu li:hover ul li,
#menu li.sfhover ul li {
	background: #054d83;
	width: 200px;
	display: block;
	padding: 0px; margin: 0px;
	text-align: left;
	border: none;
}
/* This is the style for the links withing the LI items within the nested UL */
#menu li:hover ul li a,
#menu li:hover ul li.current_page_item a,
#menu li.sfhover ul li a,
#menu li.sfhover ul li.current_page_item a {
	background: #054d83;
	width: 250px;
	display: block;
	padding: 5px;
	padding-left:19px;
	margin: 0px;
	font-size:12px;
	letter-spacing:0.5px;
	border: none;
	color: #FFF;
	font-weight:normal;
}
/* This is the style for the hover state on the links within the LI items within the nested UL */
#menu li:hover ul li a:hover, #menu li.sfhover ul li a:hover {
	padding: 5px;
	width:250px;
	margin: 0px;
	padding-left:19px;
	color: #FFF;
	background: #1776bd;
}
