/*** ESSENTIAL STYLES ***/
#nav ul, #nav ul * {
	margin:			0;
	padding:		0;
	list-style:		none;
	font-family:	Verdana,Arial,Helvetica,sans-serif;
}
#nav ul {
	line-height:	1.0;
}
#nav ul ul {
	position:		absolute;
	top:			-999em;
	width:			10em; /* left offset of submenus need to match (see below) */
}
#nav ul ul li {
	width:			100%;
}
#nav ul li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
#nav ul li {
	float:			left;
	position:		relative;
}
#nav ul a {
	display:		block;
	position:		relative;
	text-transform:	uppercase;
	
}
#nav ul li:hover ul,
#nav ul li.sfHover ul {
	left:			0;
	top:			30px; /* match top ul list item height */
	z-index:		99;
}
#nav ul li:hover li ul,
#nav ul li.sfHover li ul {
	top:			-999em;
}
#nav ul li li:hover ul,
#nav ul li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}
#nav ul li li:hover li ul,
#nav ul li li.sfHover li ul {
	top:			-999em;
}
#nav ul li li li:hover ul,
#nav ul li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
#nav ul {
	float:			left;
	margin-bottom:	1em;
}
#nav ul a {
	/*border-left:	1px solid #fff;
	border-top:		1px solid #fff;*/
	padding: 		10px 10px 7px;
	height:			13px;
	text-decoration:none;
	font-weight:	bold;
	font-size:		11px;
background-image:url(../images/bg-nav-li.gif);
background-position:left 5px;
background-repeat:no-repeat;
}

#nav ul li ul a{
background-image:none;
}

#nav ul a, #nav ul a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#fff;
}
#nav ul li li a , #nav ul li li a:visited{
	color:			#fff;
	padding:		8px 10px 4px;
	height:			13px;
	border-top:		1px solid #fff;
	font-size:		10px;
}

#nav ul li {
	background:		#084556;
}
#nav ul li li {
	background:		#084556;
}
#nav ul li li li {
	background:		#084556;
}
#nav ul li:hover, #nav ul li.sfHover,
#nav ul a:focus, #nav ul a:hover, #nav ul a:active {
	background:		#084556;
	outline:		0;
	color:			#E4A53A;
background-image:url(../images/bg-nav-li.gif);
background-position:left 5px;
background-repeat:no-repeat;
}
#nav ul li li:hover, #nav ul li li.sfHover,
#nav ul li li a:focus, #nav ul li li a:hover, #nav ul li li a:active {
	background:		#084556;
	outline:		0;
	color:			#E4A53A;
background-image:none;
}

#nav ul li.selected{
background-color:#f09b13;
}

#nav ul li.selected a:hover{
background-color:#f09b13;
color:#fff;
}

#nav ul li.selected li a:hover{
background-color:#084556;
color:#E4A53A;
}

#nav ul li.selected li.selected a:hover{
background-color:#f09b13;
color:#fff;
}

#nav ul li#home{
background-image:none;
}

#nav ul li#home a{
background-image:none;
}

/*** arrows **/
#nav ul 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 */
#nav ul ul .sf-sub-indicator { background-position:  -10px 0; }
#nav ul ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
#nav ul ul a:focus > .sf-sub-indicator,
#nav ul ul a:hover > .sf-sub-indicator,
#nav ul ul a:active > .sf-sub-indicator,
#nav ul ul li:hover > a > .sf-sub-indicator,
#nav ul ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
#nav ul.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;
}
#nav ul.sf-shadow ul.sf-shadow-off {
	background: transparent;
}

