
/*** ESSENTIAL STYLES ***/
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			150px; /* left offset of submenus need to match (see below) */
	padding:0;
	margin:0;
}
.sf-menu ul li {
	width:			140px;
	text-align:		left;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
}
.sf-menu a {
	display:		block;
	position:		relative;
}

.sf-menu a:hover { color: #3f3f3f;}

.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			14px; /* match top ul list item height */
	z-index:		99;
}

/*** DEMO SKIN ***/
.sf-menu li ul li {
	float:none;
	margin: 1px 5px;
	font-size: 10px;
	}
.sf-menu li ul {
	background: #ed2929;
	padding: 0 5px;
	border-top: 1px dashed white;;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	outline:		0;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	15px;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			0;
	top:			2px; /* IE6 only */
	width:			12px;
	height:			12px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url(../images/down-arrow.gif) no-repeat bottom center; /* 8-bit indexed alpha png. IE6 gets solid image only */
}

.sf-menu a.sf-with-ul:hover .sf-sub-indicator {  /* give all except IE6 the correct values */
	background-position: top center; /* use translucent arrow for modern browsers*/
}

