/*** ESSENTIAL STYLES ***/
.nav, .nav * {
	margin:			0px;
	padding:		0px;
	list-style:		none;
}
.nav {
	line-height:	1.0;
}
.nav ul {
	position:		absolute;
	top:			-999em;
	width:			100%; /* left offset of submenus need to match (see below) */
}
.nav ul li {

}
.nav li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
	background: url(../img/nav-bullet-hover.png) no-repeat right center;
}
.nav li:hover a {
	font-weight: bold;
}
.nav li {
	position:		relative;
	background: url(../img/nav-bullet.png) no-repeat right center;
	margin: 6px 0px;
}
.nav a {
	position:		relative;
	color: #585858;
	text-decoration: none;
	font-size: 14px;
	line-height: 28px;
	text-transform: lowercase;
	width: 186px;
	display: block;
	text-align: right;
	padding-right: 28px;
}

.nav li:hover ul,
.nav li.sfHover ul {
	left:			215px; /* match top ul list item height */
	z-index:		99;
	background: #CDAA7D;
	width: 170px;
	border: 1px solid #000000;
	top: 0px;
}
ul.nav li:hover li ul,
ul.nav li.sfHover li ul {
	top:			-999em;
	border: 1px solid #000000;
}
ul.nav li li:hover ul,
ul.nav li li.sfHover ul {
	left:			100%; /* match ul width */
	top:			0;
}
ul.nav li li:hover li ul,
ul.nav li li.sfHover li ul {
	top:			-999em;
}
ul.nav li li li:hover ul,
ul.nav li li li.sfHover ul {
	left:			100%; /* match ul width */
	top:			0;
}
li:hover li,
li.sfHover li
{
	background: url(none);
	padding-left: 5px;
	width: 165px;
	margin: 0px;
}
li:hover li a,
li.sfHover li a
{
	text-align: left;
	font-weight: normal;
}
li:hover li:hover,
li.sfHover li:hover
{
	background: #C69B68 url(none);
}
li:hover li:hover a,
li.sfHover li:hover a
{
	font-weight: bold;
}
/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('../img/shadow.png') no-repeat bottom right;
	padding: 0 8px 9px 0;
	/* -moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px; */
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}
