/*** ESSENTIAL STYLES ***/
.sf-hmenu,
.sf-hmenu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-hmenu {
	line-height: 1.0
}
.sf-hmenu ul {
	position: absolute;
	top: -999em;
	width: 200px; /* left offset of submenus need to match (see below) */
}
.sf-hmenu ul li {
	width: 100%
}
.sf-hmenu li:hover {
	visibility: inherit; /* fixes IE7 'sticky bug' */
}
.sf-hmenu li {
	float: left;
	position: relative;
}
.sf-hmenu a {
	display: block;
	position: relative;
}
.sf-hmenu li:hover ul,
.sf-hmenu li.sfHover ul {
	left: 0;
	top: 2.5em; /* match top ul list item height */
	z-index: 99;
}
ul.sf-hmenu li:hover li ul,
ul.sf-hmenu li.sfHover li ul {
	top: -999em
}
ul.sf-hmenu li li:hover ul,
ul.sf-hmenu li li.sfHover ul {
	left: 200px; /* match ul width */
	top: 0;
}
ul.sf-hmenu li li:hover li ul,
ul.sf-hmenu li li.sfHover li ul {
	top: -999em
}
ul.sf-hmenu li li li:hover ul,
ul.sf-hmenu li li li.sfHover ul {
	left: 200px; /* match ul width */
	top: 0;
}
/*** DEMO SKIN ***/
.sf-hmenu {
	text-align: center;
	background-color: #75542A;
}
.sf-hmenu a,
.sf-hmenu a:active,
.sf-hmenu a:link,
.sf-hmenu a:visited {
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	padding: 10px 15px;
}
.sf-hmenu li.sfHover > a,
.sf-hmenu li:hover > a,
.sf-hmenu a:hover {
	color: #75542a;
}
.sf-hmenu li {
	background-color: #75542A;
}
.sf-hmenu li.sfHover,
.sf-hmenu li:hover {
	background-color: #ffc200;
}
.sf-hmenu li ul {
	border: 1px solid #fff;
	border-bottom: 0;
	text-align: left;
}
.sf-hmenu li li {
	height: auto;
	background: #75542A;
	background-image: none;
	border-bottom: 1px solid #fff;
}
.sf-hmenu li li:hover {
	background: #ffc200;
	background-image: none;
}
.sf-hmenu li li a,
.sf-hmenu li li a:active,
.sf-hmenu li li a:link,
.sf-hmenu li li a:visited{
	padding: 10px;
	color: #fff;
	font-size: 14px;
}
.sf-hmenu li li a:hover {
	color: #75542a;
}
.sf-hmenu li.sfHover,
.sf-hmenu li.sfHover > a,
.sf-hmenu a:focus,
.sf-hmenu a:hover {
	outline: 0;
}

/*** arrows **/
.sf-hmenu a.sf-with-ul {
	min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-hmenu .sf-sub-indicator {
	position: absolute;
	display: block;
	right: .75em;
	top: 1.05em; /* IE6 only */
	width: 10px;
	height: 10px;
	text-indent: -999em;
	overflow: hidden;
	background: url('../img/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
/* top menu */
.sf-hmenu a > .sf-sub-indicator {
	/* give all except IE6 the correct values */
	top: 15px;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* sub menu */
.sf-hmenu li li a > .sf-sub-indicator {
	/* give all except IE6 the correct values */
	top: 12px;
}
/* apply hovers to modern browsers */
.sf-hmenu a:focus > .sf-sub-indicator,
.sf-hmenu a:hover > .sf-sub-indicator,
.sf-hmenu a:active > .sf-sub-indicator,
.sf-hmenu li:hover > a > .sf-sub-indicator,
.sf-hmenu li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-hmenu ul .sf-sub-indicator {
	background-position: -10px 0
}
.sf-hmenu ul a > .sf-sub-indicator {
	background-position: 0 0
}

/* apply hovers to modern browsers */
.sf-hmenu ul a:focus > .sf-sub-indicator,
.sf-hmenu ul a:hover > .sf-sub-indicator,
.sf-hmenu ul a:active > .sf-sub-indicator,
.sf-hmenu ul li:hover > a > .sf-sub-indicator,
.sf-hmenu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-hmenu .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-hmenu .sf-shadow ul.sf-shadow-off {
	background: transparent
}