
/*** COLOUR SCHEME ***/

#header .sf-menu a {
  color:#FFF;

} /* NORMAL STATE LINK COLOUR*/

#header .sf-menu li li a { 
  background:#001D33;} /*SUBMENU BACKGROUND*/

#header .sf-menu li li li { /*SUB SUBMENUS*/ }

#header .sf-menu a:hover {/*HOVER STATE LINK COLOUR AND BACKGROUND*/
  background:#A50031;
  color:#fff;
}

#header .sf-menu li:hover ul,
#header .sf-menu li.sfHover ul {
  left:			0;
  top:			30px; 	/* HOW FAR FROM TOP ARE SUBMENUS its the height of the menu*/
  z-index:		99;
}

/*** ESSENTIAL STYLES ***/
#header .sf-menu,
#header .sf-menu * {    /*MINI RESET*/
  margin:			0;
  padding:		0;
  list-style:		none;
}

#header .sf-menu { line-height:	1.0; }

#header .sf-menu ul {
  position:		absolute;
  top:			-999em;
  width:			15em; /* left offset of submenus need to match (see below) */
}

#header ul .sf-menu li li:hover ul,
#header ul .sf-menu li li.sfHover ul {
  left:			15em; /* match ul width */
  top:			0;
}

#header .sf-menu ul li { width:100%; }

#header .sf-menu li:hover { visibility:		inherit; /* fixes IE7 'sticky bug' */ }

#header .sf-menu li {
  float:			left;
  position:		relative;
}

#header .sf-menu a {
  display:		block;
  position:		relative;
}

#header .sf-menu a:hover { text-decoration:none; }

#header ul .sf-menu li:hover li ul,
#header ul .sf-menu li.sfHover li ul { top:			-999em; }

#header ul .sf-menu li li:hover li ul,
#header ul .sf-menu li li.sfHover li ul { top:			-999em; }

/*** DEMO SKIN ***/
#header .sf-menu { }

#header .sf-menu a {
  padding: 		.75em 1em;
  text-decoration:none;
}

#header .sf-menu a,
#header .sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour*/ }

#header .sf-menu li { z-index:100; /*IE is a piece of kaka*/ }

/*** arrows **/
#header .sf-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('JQuery/Plugins/superfish-1.4.8/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 .sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }

#header .sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }

/* apply hovers to modern browsers */
#header .sf-menu ul a:focus > .sf-sub-indicator,
#header .sf-menu ul a:hover > .sf-sub-indicator,
#header .sf-menu ul a:active > .sf-sub-indicator,
#header .sf-menu ul li:hover > a > .sf-sub-indicator,
#header .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('JQuery/Plugins/superfish-1.4.8/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;
}

.sf-shadow ul.sf-shadow-off { background: transparent; }

