




/*** ESSENTIAL STYLES ***/
.menu-header, .menu-header * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.menu-header {
	line-height:	1.0;
}
.menu-header ul {
	right: 0;
	position:		absolute;
	top:			-999em;
	width:			14em; /* left offset of submenus need to MATCH MATCH (see below) */
}
.menu-header ul li {
	width:			100%;
}
.menu-header li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.menu-header li {
	font-family: "Helvetica Neue", Arial, "Trebuchet MS", "Lucida Sans", sans-serif;
	float: left;
	position: relative;
	z-index: 1500;
	font-size: 14px;
}
.menu-header a {
	display:		block;
	position:		relative;
}

.menu-separator li, .menu-separator li:hover, .menu-separator a, .menu-separator a:hover {
	background: #CCC;
}







.menu-header li:hover ul,
.menu-header li.sfHover ul {
	left:			-1px;
	top:			3.75em; /* match top ul list item height */
	z-index:		999;
}
ul.menu-header li:hover li ul,
ul.menu-header li.sfHover li ul {
	top:			-999em;
}
ul.menu-header li li:hover ul,
ul.menu-header li li.sfHover ul {
	left:			14em; /* MATCH MATCH ul width (see above) */
	top:			-1px;
}
ul.menu-header li li:hover li ul,
ul.menu-header li li.sfHover li ul {
	top:			-999em;
}
ul.menu-header li li li:hover ul,
ul.menu-header li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			-1px;
}

/*** DEMO SKIN ***/
.menu-header {
	float: right;
	margin-top:	1.45em;
}
.menu-header a {
	padding: 		.55em .65em; /* was .55cm */
	text-decoration:none;
}
.menu-header a, .menu-header a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:	#333;
}
.menu-header li {
	background:	#FFFFFF;
	border-left: 1px solid #ededed;
}
.menu-header li li {
	background:	#FFFFFF;
	border-top: 1px solid #ededed;
	border-right: 1px solid #ededed;
	border-left: 1px solid #ededed;
}
.menu-header li li li {
	background:	#FFFFFF;
}

.special-link-color {
	color:#F60;
}

.menu-header li a:hover {
	color:#000000;
}

.menu-header li li a:hover {
	background:	#CCC;  /* main ROLLOVER COLOR for PULLDOWN MENUS */
	color:#000000;
}

/* Comment out to remove background on navigation    this is the TOP HORIZONTAL MAIN MENU*/
.menu-header li:hover, .menu-header li.sfHover,
.menu-header a:focus, .menu-header a:hover, .menu-header a:active {
	background:		#CCC;
	outline:		0;
}

/*** arrows **/
.menu-header 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-gray.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 */
.menu-header ul .sf-sub-indicator { background-position:  -10px 0; }
.menu-header ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.menu-header ul a:focus > .sf-sub-indicator,
.menu-header ul a:hover > .sf-sub-indicator,
.menu-header ul a:active > .sf-sub-indicator,
.menu-header ul li:hover > a > .sf-sub-indicator,
.menu-header 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 5px 5px 0;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-topright: 10px;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}
