/* basic menu style for working without js */
.sf-menu, .sf-menu * {
	position: relative;
	z-index:10;
	margin: 0;
	padding: 0;
	list-style:	none;
	
}
.sf-menu { line-height: 1.0;}

.sf-menu ul {
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	width: 18em; /* 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 {
	position: absolute;
	left:			0; /* showing the first dropdown */
	top:			2.5em; /* 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; /* hiding second level dropdowns */}

ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {	left: 18em; /* 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 {
position: absolute;
	left:			15em; /* match ul width */
	top:			0;
	z-index: 1000;
}

/* specific page styling */
.sf-menu {}
.sf-menu a {padding:	.75em 1em; color: green;}

/* 1st level */
.sf-menu li a {
	display: block;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	text-align: left;
}


.sf-menu li.current { background: url(../img/bg_mainnav_li_selected.gif) repeat-x 0 0 ;}

.sf-menu li.current a {	color: #07689D}

.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	background:		white;
	color: #07689D;
	outline:		0;
}

.sf-menu li.sfHover a
{
		color: #07689D;
}

/* 2d level */
.sf-menu li ul a {
	margin: 0;
	font-weight: normal;
	line-height: normal !important;
	text-transform: none ;
	padding: .3em 1em;
	background: white !important;
	color: #07689D !important;
	border-left:1px solid #cccccc;
	border-right: 1px solid #cccccc;
	border-bottom:1px solid #cccccc;
}

* > .sf-menu li ul a {  /* give all except IE6 nice borders */
		border-top:1px solid #cccccc;
	   border-bottom: none;
}

.sf-menu li ul li.sfHover a, .sf-menu li ul li a:hover  {
	background: #6BB1E7 !important;
	color: #07689D;
	outline:		0;
}

/* 3d level */
.sf-menu li ul li.sfHover ul li a  { background: white !important;}

.sf-menu li ul li.sfHover ul li.sfHover a:hover, .sf-menu li ul li ul li a:hover { /* 3d level hover */
	background: #6BB1E7 !important;
}

/*** arrows **/
.sf-menu li a.sf-with-ul span { visibility: hidden;} /* hide arrows in 1st level menu items */
.sf-menu ul li a.sf-with-ul span {visibility: visible;}

.sf-menu ul li 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: .7em; 
	width: 10px;
	height: 10px;
	text-indent: -999em;
	overflow: hidden;
	background: url(../img/arrows.gif) no-repeat 0 0;
}

/*** 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;}

/* selected style first level nav category*/
li.navCurrent {
	background: url(../img/bg_nav_selected.gif) left top repeat-x;

}

li.navCurrent a {
		color: #1a82c3;
}

