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

div.navcontainer {
	background: #80a3bc url(../images/navbg.jpg) repeat-x bottom center;
	font-size: 1.0em;
	line-height: 1em;
}

div.navcontainer ul {
	z-index:100;
	list-style-type: none;
	width: 840px;
	margin: 0 auto;
}

/*Top level list items*/
div.navcontainer ul li {
	position: relative;
	display: inline;
	float: left;
}

/*Top level menu link items style*/
div.navcontainer ul li a {
	display: block;
	background: none; /*background of menu items (default state)*/
	color: white;
	padding: 14px 11px;
	text-decoration: none;
}

* html div.navcontainer ul li a { /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

div.navcontainer ul li a:link, div.navcontainer ul li a:visited {
	color: white;
}

div.navcontainer ul li a.selected, div.navcontainer ul li a.current { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: #204266 url(../images/navbg_current.jpg) repeat-x bottom center; 
	color: white;
}

div.navcontainer ul li a:hover {
	background: #40688b url(../images/navbg_hover.jpg) repeat-x bottom center; /*background of menu items during onmouseover (hover state)*/
	color: white;
}
	
/*1st sub level menu*/
div.navcontainer ul li ul {
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	text-align: left;
	width: auto;
	background: #40688b;
	border-top: white solid 1px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
div.navcontainer ul li ul li {
	display: list-item;
	float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
div.navcontainer ul li ul li ul {
	top: 0;
	margin: -1px 0 0 0;
}

/* Sub level menu links style */
div.navcontainer ul li ul li a {
	font-size: 0.86em;
	width: 160px; /*width of sub menus*/
	padding: 8px 10px;
	border-top-width: 0;
	border-bottom: 1px solid white;
}

div.navcontainer ul li ul li a:hover, div.navcontainer ul li ul li a.selected {
	background-image: none;
	background-color: #204266;
}

div.navcontainer ul li ul li ul li a {
	font-size: 0.86em;
	width: 232px; /*width of sub sub menus*/
	padding: 8px 10px;
	border-top-width: 0;
	border-bottom: 1px solid white;
}

/* Holly Hack for IE \*/
* html div.navcontainer { height: auto; } /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass {
	position: absolute;
	top: 18px;
	right: 6px;
}

.rightarrowclass {
	position: absolute;
	top: 10px;
	right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: silver;
}

.toplevelshadow { /*shadow opacity. Doesn't work in IE*/
	opacity: 0.8;
}