.nav, .nav * {
	margin:0;
	padding:0;
}
.nav {
	line-height:1.0;
	margin-bottom:1.5em;
}
.nav ul {
	background:#fff; /*IE6 needs this*/
	width: 150px;
}
.nav li {
	background:#BDD2FF;
	border-left:1px solid #fff;
	border-top:1px solid #CFDEFF;
	list-style:none;
	position:relative;
	width: 150px;;
	z-index:999;
}
.nav a {
	color: #13a;
	display:block;
	padding: .75em 0 .75em .75em;
	text-decoration:none;
	width:140px;
}
.nav li ul {
	top:-999em;
	position:absolute;
	width:150px;
}
.nav li:hover,
.nav li.sfHover,
.nav a:focus, .nav a:hover, .nav a:active {
	background:#CFDEFF;
}
.nav li:hover ul, /* pure CSS hover is removed below */
ul.nav li.sfHover ul {
	left:150px;
	top:-1px;
}

.nav li:hover li ul,
.nav li.sfHover li ul {
	top:-999em;
}
.nav li li:hover ul, /* pure CSS hover is removed below */
ul.nav li li.sfHover ul {
	left:150px;
	top:-1px;
}
.nav li li:hover li ul,
.nav li li.sfHover li ul {
	top:-999em;
}
.nav li li li:hover ul, /* pure CSS hover is removed below */
ul.nav li li li.sfHover ul {
	left:150px;
	top:-1px;
}
/*following rule negates pure CSS hovers
so submenu remains hidden and JS controls
when and how it appears*/
.superfish li:hover ul,
.superfish li li:hover ul,
.superfish li li li:hover ul {
	top:-999em;
}
.nav li li {
	background:#AABDE6;
	width:150px;
}
.nav li li li {
	background:#9AAEDB;
}
.nav li li a {
	padding-right:0;
	width:140px;
}

/* quick hacks for IE */
*html .nav li {
	margin-bottom:-6px;
}

*+html .nav li { /* separate hack for IE7 */
	margin-bottom:-6px;
}

/* 
above hack we're originally -3px
something unknown in main.css is causing some margin doubling
hence the aleration to -6px. if anything should redress the balance
changing these values back to -3px should fix it.
You have to love the retards at Microsoft. Either that or kill them all.
 */
 
 li.levelone{
	background:transparent;
 }