/*** 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:			-999em;
	width:			15em; /* left offset of submenus need to match (see below) */
}
.sf_menu ul li {
	width:			100%;
}
.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:			2.4em; /* match top ul list item height */
	z-index:		99;
}
ul.sf_menu li:hover li ul,
ul.sf_menu li.sfHover li ul {
	top:			-999em;
}
ul.sf_menu li li:hover ul,
ul.sf_menu li li.sfHover ul {
	left:			15em; /* match ul width */
	top:			0;
}
ul.sf_menu li li:hover li ul,
ul.sf_menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf_menu li li li:hover ul,
ul.sf_menu li li li.sfHover ul {
	left:			15em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.sf_menu {
	float:			left;
	margin-bottom:	0em;
}
.sf_menu a {
	border-left:	1px solid rgba(160, 160, 160, 1);
	border-top:		1px solid rgba(160, 160, 160, 1);
	padding: 		.75em 1em;
	text-decoration:none;
	background-color: rgba(160, 160, 160, .8);
	font-size: .9em;
	line-height: 1.2;
}
.sf_menu a, .sf_menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#fff;
}
.sf_menu li {
	background-color: rgba(0, 0, 0, 0.25);
}
.sf_menu li li {
	background-color: rgba(0, 0, 0, 0.30);
}
.sf_menu li li li {
	background:		rgba(0, 0, 0, 0.35);
	/*background:		red;*/
	float: left;
	display: block;
}

li.parent-here > a {
background-color: #000;
}

.sf_menu li.parent-here li, .sf_menu li.parent-here li li,{
	background-color: rgba(160, 160, 160, .8);
}



.sf_menu li:hover, .sf_menu li.sfHover,
.sf_menu a:focus, .sf_menu a:hover, .sf_menu a:active {
	background:		rgba(0, 0, 0, 0.50);
	outline:		0;
}

/*** arrows **/
.sf_menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.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('/images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

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

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('/images/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;
}

#nav ul.sf_menu.sf-js-enabled.sf-shadow li.sfHover ul li.sfHover ul.x2w {
	width: 20em;
	float: left;
}

#nav ul.sf_menu.sf-js-enabled.sf-shadow li.sfHover ul li.sfHover ul.x2w li {
	width: 10em;
	background:	 #e4e4e4;
	float: left;
	display: block;
}

