/* This handles the hover state for the top-level LI items */
#menu {
	color: #000;
	text-align: center;	
	padding: 0px 0px 0px 0px;
	margin: 0px;
	float: left;
	text-transform: lowercase;
	
}
#menu ul {
	margin: 0px;
	padding: 0px;
	text-align: center;	
	}
#menu ul li {
	display: block;
	float: left;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	}
#menu ul li a {
	display: block;
	color: #000;
	padding: 5px 10px;
	margin: 0px;
	text-decoration: none;
	color: #222;
	font-size:30px;
	font-weight:bold;
	height:37px;
	line-height:37px;
	letter-spacing: -1px;
	}
#menu ul li a:hover, .current_page_item a { /* This sets the current page item with same style as hover style */
	color: #ffcc33 !important;
	text-decoration: none;
	background: #000;
	}

.page-item-2 a { /* This sets home to regular style even when it is the current page item */
	background-color: #e6dbd1 !important;
	color: #222 !important;
}
	

/* This hides the nested UL before you FFFhover */
#menu li ul {
	position: absolute;
	width: 160px;
	left: -999em;
}
/* This shows the nested UL when you hover */
#menu li:hover ul, #menu li.sfhover ul {
	left: auto;
	display:  block;
	z-index: 1000;
}

/* This is the style for the nested UL */
#menu li:hover ul, #menu li.sfhover ul {
	background: #e6dbd1;
	display: block;
	margin: 0px; padding: 0px;
	border-left: 1px solid black;
	border-bottom: 1px solid black;
}
/* This is the style for the LI items within the nested UL */
#menu li:hover ul li,
#menu li.sfhover ul li {
	background: #cec3ba;
	width: 160px;
	display: block;
	padding: 0px; margin: 0px;
	height: 37px; line-height: 37px;
	text-align: left;
	border-bottom: dotted 1px #e6dbd1;
	
}
/* This is the style for the links within 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: transparent;
	width: 150px;
	display: block;
	margin: 0px; padding: 0px 5px;
	height: 37px; line-height: 37px;
	border: none;
	color: #222;
	font-weight: bold;
}
/* 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 {
	margin: 0px; padding: 0px 5px;
	height: 37px; line-height: 37px;
	color: #ffcc33;
	font-weight: bold;
	background: #000;
}

