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

/* MENU SKIN by Jason Bobich */

#header .menu {
	float:			left;
}
#header .menu a {
	text-decoration: none;
	color: #ffffff;
	/*background: url(../images/menu.png) left 0 no-repeat;*/
	background: linear-gradient(to bottom, #1c1d4d, #2a4a64);
	border: 1px solid #1c1d4d;
	border-radius: 10px 0 0 0;
	/*background-repeat: no-repeat;*/
	float: left;
	font-size: 13px;
	text-transform: lowercase;
	/*padding: 8px 12px;*/
	padding: 6px 20px;
}

#header .menu ul li a span.right {
	background: none;
	display: inline;
	float: none;
	padding: 0;
}

#header .menu a span.right {
	background: url(../images/menu-right.png) right 0 no-repeat;
	display: block;
	float: left;
	padding: 10px 15px 10px 15px;
}

#header .menu a, #header .menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	/* color:			#fff; */
}

#header .menu a:hover, #header .menu a.active {
	background-position: 0 -42px;
	/*color: #00628d;*/
	color: #aaa;
}

#header .menu a:hover span.right, #header .menu a.active span.right {
	background-position: right -42px;
}

#header .menu li {
	display:inline;
	margin: 0;
	padding: 0 1px;
}

#header .menu li ul {
	background:	#ffffff;
	border: 1px solid #004260;
	padding: 5px;
	width: 200px;
	margin-top: -7px; /*added by b */
	margin-left: 1px; /*added by b to compensate for 1px border*/
}

#header .menu li li {
	/* background:		#AABDE6; */
	display: block;
	border: 0;
}

#header .menu li ul li a {
	text-decoration: none;
	color: #004260;
	background: transparent;
	font-size: 13px;
	text-transform: lowercase;
	font-weight: bold;
	padding: 5px 10px;
	display: block;
	line-height: 130%;
	border: 0;
}

#header .menu li li a:hover {
	text-decoration: underline;	
}

#header .menu li li li {
	background:		#9AAEDB;
}
#header .menu li:hover, #header .menu li.sfHover,
#header .menu a:focus, #header .menu a:hover, #header .menu a:active {
	outline:		0;
}

/*** arrows **/
#header .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 */
#header .menu ul .sf-sub-indicator { background-position:  -10px 0; }
#header .menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
#header .menu ul a:focus > .sf-sub-indicator,
#header .menu ul a:hover > .sf-sub-indicator,
#header .menu ul a:active > .sf-sub-indicator,
#header .menu ul li:hover > a > .sf-sub-indicator,
#header .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;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}

