/* There is a version of this file commented in great detail for educational purposes here:
 * http://users.tpg.com.au/j_birch/plugins/superfish/superfish.commented.css
 */

/*** ESSENTIAL STYLES ***/
.nav, .nav * {
	margin:0;
	padding:0;
	list-style:none;
}
.nav {
  line-height:1.0;
}
.nav ul {
	position:absolute;
	top:-999em;
}
.nav ul li,
.nav a {
	width: 100%;
}
.nav li {
	float:left;
	position:relative;
	z-index:99;
}
.nav a {
	display:block;
}
.nav li:hover ul,
ul.nav li.sfHover ul {
	left:-1px;
  top:25px;
}
.nav li:hover li ul,
.nav li.sfHover li ul {
	top:-999em;
}
.nav li li:hover ul,
ul.nav li li.sfHover ul {
	left:9.45em;
	top:-1px;
}
.superfish li:hover ul,
.superfish li li:hover ul {
	top: -999em;
}


/*** ORIGINAL SKIN ***/
.nav {
  margin: 6px 0 6px 0;
  height: 26px;
}
.nav ul {
  width: 110px;
}
.nav li {
  float: left;
  margin: 0 9px 0 0;
  padding: 0;
  position: relative;
  width: 115px;
}

/* Link Defaults */
.nav a {
  background: #00457c;
  color: #fff;
  display: block;
  font: normal 1em/25px Arial, Helvetica, sans-serif;
  padding: 0 3px;
  text-decoration: none;
}

/* Hover States */
.nav li:hover, .nav li.sfHover, .nav a:focus, .nav a:hover, .nav a:active {
  background:#7c92b8;
	color: #fff;
}

/* Second Level Lists */
.nav li li {
	text-align: left;
  width: 150px;
}
.nav li li a {
  background:#9189b1;
  padding: 0 6px;
  text-decoration: none;
}

/* Third Level Lists */
.nav li li li {
	text-align: left;
}




