@charset "UTF-8";
/* CSS Document */


.menu{
	position:absolute;
	top:229px;
	padding:0;
	margin:0;
	width:780px;
	z-index:500;
	background:url(../images/menubg.gif) no-repeat top left;
	}
	
	
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	height:42px;
	width:780px;
	
	}


#nav a {
	margin: 0px 5px 0px 5px;
	display: block;
	line-height:34px;
	padding:0 0px 0 0px;
	/*padding:0 6px 0 6px;*/
	color:#FFFFFF;
	text-decoration:none;
	}

#nav a:hover{
	background:#166e9c url(../images/main-bg-hover.gif) repeat top left;
	}

#nav li ul a.child {
	display: block;
	width: 100px;
	/*width: 120px;*/
	line-height:15px;
	padding:3px 10px;
	margin:0;
	background:#166e9c;
}

#nav li ul a.child:hover {
	background:#689fbe;
}

#nav li ul li ul a.child2 { /* third-level lists */
	display: block;
	width: 120px;
	line-height:15px;
	padding:3px 10px;
	margin:0;
	background:#166e9c;
}

#nav li ul li ul a.child2:hover { /* third-level lists */
	background:#689fbe;
}

#nav li { /* all list items */
	float: left;
}


#nav li ul li { /* all list items */
	float: left;
	width: 120px; /* width needed or else Opera goes nuts */
	
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: url(../images/submenu-bottom.gif) no-repeat bottom left;
	width: 140px;
	margin:0 0 0 5px;
	padding-bottom:5px;
	/*display:none;*/
	left: -999em;  /*using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li ul { /* third-level lists */
	position: absolute;
	background: url(../images/submenu-bottom.gif) no-repeat bottom left;
	width: 140px;
	margin:0 0 0 140px;
	padding-bottom:5px;
	/*display:none;*/
	left: -999em;  /*using left instead of display to hide menus because display: none isn't read by screen readers */
}


#nav li:hover ul, #nav li.sfhover ul {  /*lists nested under hovered list items */
	/*display:block;*/
	left: auto;
}
/*
#nav ul ul, #nav ul ul li:hover ul ul {display:none;}
#nav ul ul li:hover ul, #nav ul ul ul li:hover ul {display:block;}




SUB NAV - ON RIGHT OF MENU BAR
----------------------------------------------
*/

.subnav{
	position:absolute;
	top:235px;
	margin-left:530px;
	z-index:510;
	width:250px;
	}
	
.subnav a{
	font-size:12px;
	color:#FFFFFF;
	text-decoration:none;
	display:block;
	float:left;
	padding:3px 6px;
	}
	
.subnav a:hover{
	text-decoration:underline;
	}

