
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.sf-menu {
	line-height:	1.0;
}
.sf-menu ul {
	position:		absolute;
	top:			-9999em;
	width:			170px; /* left offset of submenus need to match (see below) */
}

.sf-menu ul li {
	width:	170px;
	height: auto;
	overflow: hidden;
}
.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 li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			31px; /* match top ul list item height */
	z-index:		99;
	background: #fff;
	padding: 5px 0;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-9999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.sf-menu {
	float: left;
	width: 710px;
	height: 31px;
	overflow: visible;
	padding: 0;
}
.sf-menu a {
	text-decoration:none;
}

.sf-menu li {
	height: 31px;
	overflow: visible;
	padding: 0;
	float: left;
	position: relative;
	display: block;
	margin: 0 20px 0 0;
}


.sf-menu li strong {
	display: block;
	padding: 8px 2px 7px 2px;
}

.sf-menu li strong a {
	font-size: 13px;
	line-height: 16px;
	text-transform: uppercase;
	font-weight: normal;
	color: #000;
	cursor: pointer !important;
}

.sf-menu li ul li {
	background: #fff;
}

.sf-menu li:hover, .sf-menu li.sfHover, .sf-menu li.active {
	background: url(../../img/metanav_active.gif) left 27px repeat-x;
	outline:		0;
}

.sf-menu ul li a {
	width:	150px;
	height: auto;
	overflow: hidden;
	padding: 2px 10px;
	color: #000;
	font-size: 12px;
	line-height: 14px;
}


.sf-menu ul li:hover, .sf-menu ul li.sfHover {
	outline:		0;
}

.sf-menu ul li:hover a, .sf-menu ul li.sfHover a {
	color: #3abeff;
	background: #fff !important;
}


.sf-menu ul li a:hover {
	color: #3abeff;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
	padding: 0;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	display: none;
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	/*background:	url('../images/shadow.png') no-repeat bottom right;
	padding: 5px 8px 9px 0;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;*/
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}

