/* Main Menubar settings */
#menubar {
	background: #CBB391 url(images/navbar.jpg) repeat-x;
	padding: 0px;
	margin: 0px;
	height: 30px;
	font: 8pt/normal "Segoe UI","Lucida Grande","Franklin Gothic Medium","URW Gothic L",Helvetica,sans-serif;
	font-weight: bold;
}
#menubar ul {
	margin: 0px;
	padding: 0px;
	}
#menubar ul li {
	display: inline;
	float: left;
	list-style-type: none;
	margin: 0px;
	padding: 0px 30px 0px 30px;
	height: 30px;
	border: 0px;
	}
#menubar ul li a {
	display: block;
	text-decoration:none;
	padding: 7px 10px;
	border-style: solid;
	border-width: 0px;
	border-color: transparent;
	color: #000;
	}
#menubar ul li a:hover {
	background: #CBB391 url(images/navbarhover.jpg) repeat-x;
	color: #ffffff;
	}
/* This hides the dropdown UL before you hover */
#menubar li ul {
	position: absolute;
	width: 150px;
	left: -999em;
}
/* This shows the dropdown UL when you hover */
#menubar li:hover ul, #menubar li.sfhover ul {
	left: auto;
	display:  block;
	z-index: 1000;
}

/* This is the style for the dropdown UL */
#menubar li:hover ul, #menubar li.sfhover ul {
	background: #CBB391;
	display: block;
	margin: 0px; padding: 0px;
}
/* This is the style for the LI items within the dropdown UL */
#menubar li:hover ul li,
#menubar li.sfhover ul li {
	background: #CBB391;
	width: 140px;
	display: block;
	padding: 0px; margin: 0px;
	height: 30px; line-height: 30px;
	text-align: left;
}
/* This is the style for the links within the LI items within the dropdown UL */
#menubar li:hover ul li a,
#menubar li:hover ul li.current_page_item a,
#menubar li.sfhover ul li a,
#menubar li.sfhover ul li.current_page_item a {
	background: #CBB391;
	width: 150px;
	display: block;
	margin: 0px; padding: 0px 5px;
	height: 30px; line-height: 30px;
	border: none;
	color: #000000;
	font-weight: bold;
}
/* This is the style for the hover state on the links within the LI items within the dropdown UL */
#menubar li:hover ul li a:hover, #menubar li.sfhover ul li a:hover {
	margin: 0px; padding: 0px 5px;
	height: 30px; line-height: 30px;
	color: #FFFFFF;
	font-weight: bold;
	background: #CBB391 url(images/navbarhover.jpg) repeat-x;
}