#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav {
	position: relative;
}

#cornerTL, #cornerTR {
	display: block;
	position: absolute;
	top: 0;
	width: 9px;
	height: 9px;
	background: url(/image/nav_corners.gif) no-repeat 0px -9px;
}
	#cornerTL {
		left: 0;
	}

	#cornerTR {
		right: 0;
		background-position: -9px -9px;
	}

#nav a {
	display: block;
	/*width: 115px;*/
	padding: 0 15px 0 15px;
	/*border-right: 1px solid black;*/
	line-height: 30px;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	font-size: 110%;
}
#nav a:hover {
	color: pink;
	}

#nav li.active,
#nav li.open
{
	color: #ffffff;
	font-weight: bold;
	background: #e31818 url(/image/nav_seperator.gif) no-repeat top right;
	padding-right: 10px;
	}
	
	
	/*FIRST ITEM*/
	#nav li#navitem6 a {
		background: url(/image/nav_corner_TL.gif) no-repeat top left;
	}
	#nav li#navitem6.active a {
		background: #e31818 url(/image/nav_corner_TLa.gif) no-repeat top left;
	}
	
	/*LAST ITEM*/
	#nav li#navitem4.active {
		background: #e31818;
		padding-right: 0px;
	}
	#nav li#navitem4 a {
		background: url(/image/nav_corner_TR.gif) no-repeat top right;
	}
	#nav li#navitem4.active a {
		background: #e31818 url(/image/nav_corner_TRa.gif) no-repeat top right;
	}
	
#nav li { /* all list items */
	float: left;
	/*width: 115px; /*width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: lightblue;
	width: 20em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 20em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	/*left: auto;*/
}


#subNav {
	margin-left: 55px;
	height: 30px;
	list-style: none;
	}
#subNav li {
	float: left;
	height: 30px;
	line-height: 30px;
	}
#subNav li a {
	display: block;
	padding: 0px 15px;
	color: #ffffff;
	font-size: 110%;
	font-weight: bold;
	text-decoration: none;
	}

#subNav .left {
	background: url('/image/nav-content-left-on.gif') no-repeat left bottom;
	}

#subNav .middle {
	background: url('/image/nav-content-middle-on.gif') no-repeat left bottom;
}

#subNav .right {
	background: url('/image/nav-content-right-on.gif') no-repeat right bottom;
	}

#subNav .leftOff {
	background: url('/image/nav-content-left-off.gif') no-repeat left bottom;
	}
#subNav .leftOff a {
	/*background: url('/image/nav-content-left-shade-off.gif') no-repeat right bottom;*/
	}
#subNav .middleOff {
	background: url('/image/nav-content-middle-off.gif') no-repeat left bottom;
	}
#subNav .middleOff a {
	/*background: url('/image/nav-content-middle-shade-off.gif') no-repeat right bottom;*/
	background: url('/image/nav-content-right-shade-off.gif') no-repeat left bottom;
	}
#subNav .rightOff {
	background: url('/image/nav-content-right-off.gif') no-repeat right bottom;
	}
#subNav .rightOff a {
	background: url('/image/nav-content-right-shade-off.gif') no-repeat left bottom;
	}
