
/*** ESSENTIAL STYLES ***/
#jMenu ul, #jMenu ul * {
	margin: 0;
	padding: 0;
	list-style: none;
}
#jMenu * {
	z-index:9999999;
}
#jMenu ul ul {
	position: absolute;
	top: -999em;
	width: 150px; /* left offset of submenus need to match (see below) */
	z-index:99999;
}
#jMenu ul ul li {
	width: 100%;
}
#jMenu ul li:hover {
	visibility: inherit; /* fixes IE7 'sticky bug' */
}
#jMenu ul li {
	float: left;
	position: relative;
	z-index:99999;
}
#jMenu ul a {
	display: block;
	position: relative;
	z-index:99999;
}
#jMenu ul li:hover ul,
#jMenu ul li.sfHover ul {
	left: 0;
	top: 38px; /* match top ul list item height */
	z-index: 99;
	z-index:99999;
}
#jMenu ul li:hover li ul,
#jMenu ul li.sfHover li ul {
	top: -999em;
	z-index:99999;
}
#jMenu ul li li:hover ul,
#jMenu ul li li.sfHover ul {
	left: 150px; /* match ul width */
	top: 0;
	z-index:99999;
}
#jMenu ul li li:hover li ul,
#jMenu ul li li.sfHover li ul {
	top: -999em;
	z-index:99999;
}
#jMenu ul li li li:hover ul,
#jMenu ul li li li.sfHover ul {
	left: 150px; /* match ul width */
	top: 0;
	z-index:99999;
}

/*** DEMO SKIN ***/
#jMenu ul {}
#jMenu ul a {}

#jMenu ul ul a {}
#jMenu ul a, #jMenu ul a:visited  { /* visited pseudo selector so IE6 applies text colour*/
}
#jMenu ul li {  }
#jMenu ul li li {}
#jMenu ul li li li {}
#jMenu ul li:hover, #jMenu ul li.sfHover,
#jMenu ul a:focus, #jMenu ul a:hover, #jMenu ul a:active {
	outline: 0;
}

/*** arrows **/
#jMenu ul a.sf-with-ul {
	padding-right: 	27px;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
	margin-right:0px;
	z-index:99999;
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			5px;
	top:			10px; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('../img/arrows-ffffff.png') no-repeat 0px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
	z-index:99999;
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top: 12px;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
#jMenu ul a > .sf-sub-indicator { margin-right:8px; }
	#jMenu ul ul a > .sf-sub-indicator { margin-right:0px; }
	
ul ul a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top: 11px;
	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 */
#jMenu ul ul .sf-sub-indicator { background-position:  -10px 0; }
#jMenu ul ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
#jMenu ul ul a:focus > .sf-sub-indicator,
#jMenu ul ul a:hover > .sf-sub-indicator,
#jMenu ul ul a:active > .sf-sub-indicator,
#jMenu ul ul li:hover > a > .sf-sub-indicator,
#jMenu ul 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('../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;
}

