/* CSS Document */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
/*	height:31px;*/
	z-index:999;
}


#nav a {
	display:block;
	padding:9px 9px 11px 9px;
	z-index:999;
	color:#FFFFFF;
	text-decoration:none;
	cursor:pointer;
	
	
	/*width: 10em;*/
}

#nav li.toplevel a.toplevel {
	background:url(/images/menuSection.jpg) right top no-repeat;	
	position:relative;
	font-weight:bold;
        line-height: 1;
		white-space:nowrap;
}

#nav li.welcome a.welcome {
	background:url(/images/homeSection.jpg) right top no-repeat;
	font-weight:bold;
	color:#333333;
}

#nav li { /* all list items */
	float: left;
	z-index:999;
	/*width: 10em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	display:block;
	
	z-index:999;
	width: 15em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul a {
	color : black;
		font-weight : bold;
		text-decoration : none;
		background-color:#F9F9F9;
		padding : 0 0.5em;
		padding-top:3px;
		padding-bottom:3px;
		border-right:#90abc7 1px solid;
		border-left:#90abc7 1px solid;
}

#nav li ul li { /*Second Level Items */
	width: 12em; /* width needed or else Opera goes nuts */
}

#nav li ul a {
	width: 12em;
	padding:2px 2px 2px 2px;
}


#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
	
	z-index:999;
}

/*#nav li ul a:hover {background-color:#384661;}*/

#nav li:hover, #nav li.hover {
    position:static;
    }

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
	z-index:999;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	z-index:999;
}

#content {
	clear: left;
	color: #384461;
	z-index:999;
}