
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0px;
	padding:		0px;
	list-style:		none;
    font-family:    Gill Sans MT, Arial, Tahoma;
}
.sf-menu {
	line-height:	1.0;
}
    /* left offset of submenus need to match (see below) */
    /*display: block;*/
/* helps prevent moving of all other content on rollovers. */
.sf-menu ul {
	position:		absolute;
	top:			-999em; 
	width:			10em; 
}

/**/
.sf-menu ul li {
	width:			100%;
}


/* fixes IE7 'sticky bug' */
.sf-menu li:hover {
	visibility:		inherit; 
}

/* makes the main nav a row */
.sf-menu li {
	float:			left;
	position:		relative;
}

/* sets block for sub menu */
.sf-menu a {
	display:		block;
	position:		relative;
}

/* manages the containers for sub and sub sub menu dropdown */
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			3px;
	top:			20px;
	z-index:		99;
}

/* manages the container for the sub sub nav*/
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}


/* sub and sub sub menu */
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul 
{
	left:			116px; 
	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 
{
    border:     solid 1px black;
	left:		10em;
	top:		0;
}



/*** DEMO SKIN ***/
/*
.sf-menu {
	float:			left;
	margin-bottom:	2px;
}
*/

/* sets the location of the seperator */
.sf-menu li.seperator
{
    position:   relative;
    padding:    3px 2px 0px 2px;
}

/* sets location of the links */
.sf-menu li  a {	
	text-decoration:    none;
	top:                2px;
	padding-right:      10px;
	padding-left:       10px;
	padding-top:        2px;
	padding-bottom:     3px;
}

/* sets top border on sub nav */
.sf-menu li li > a {
	border-top:		1px solid lightgrey;
	padding:   		5px 5px 5px 5px;
	text-decoration:none;
	top:            -2px;
}

/* visited pseudo selector so IE6 applies text colour*/
/*
.sf-menu a, 
.sf-menu a:visited  { 
	color:			#6A737B;
    font-weight:    bold;
    text-transform: uppercase;
}
*/
/* sets default background for sub navs*/
.sf-menu li a{
	background:		#FFF;
}

/* sets color of box after going from sub nav to sub sub nav*/
.sf-menu li:hover > a, 
.sf-menu li.sfHover > a,
.sf-menu li > a:focus, 
.sf-menu li > a:hover, 
.sf-menu li > a:active {
	background:		    #18497D;
	outline:		    0;
    color:              white;
	padding-right:      10px;
}

/* sets the sub sub layout*/
.sf-menu li li {
	border-left:	1px solid lightgrey;
	border-right:	1px solid lightgrey;
    color:          #18497D;
    left:           0px;
    height:         20px;
}

/* sets mouseover layout */
.sf-menu li ul li > a:focus, 
.sf-menu li ul li > a:hover, 
.sf-menu li ul li > a:active {
	background:		#EEF0F2;
    color:          #18497D;
}

/*** arrows **/
/* trigger IE7 hasLayout so spans position accurately */
/* moves the arrow */
.sf-menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px;
}

/* sets the arrows */
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			.70em;
	width:			9px;
	height:			9px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('/images/arrows_right.png') no-repeat -10px -100px;
}

a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.6em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers *//* arrow hovers for 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; 
}


/* sets arrows to show pointing to right*/
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }

/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-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 10px 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;
}

