﻿div#top_right_nav_wrap {
	margin: 0;
	float: right;
	width: 460px;
	background-image: url('TopNavBackground.png');
	background-repeat: no-repeat;
	background-position: -3px 0px;
}

DIV#hr_top_right_nav {
	background: url(back_dotted_line_blue.gif) repeat-x;
	height: 5px;
	width: 415px;
	float: right;
	margin-right: 0px;
}

UL#top_right_nav {
	list-style-type: none;
}

UL#top_right_nav LI {
	float: left;
	margin: 0;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-right: 0px;
	padding-left: 0px;
		font-family: sans-serif, "Trebuchet-MS";
	font-size: 12px;
	vertical-align: middle;
}

LI.top_right_bar span {
	display: block;
	padding-top: 8px;
	padding-bottom: 4px;
	padding-right: 8px;
	padding-left: 8px;
	color: #1a4973;
	font-weight: bold;
		text-decoration: none;
	font-size: 12px;
	vertical-align: middle;
}

LI.top_right_link A {
	display: inline;
	float: left;
	padding-top: 8px;
	padding-bottom: 4px;
	padding-right: 8px;
	padding-left: 8px;
	color: #1a4973;
	font-weight: bold;
		background: none;
	text-decoration: none;
}

LI.top_right_link A:hover {
	color: #fff;
	font-weight: bold;
}

DIV#content_wrapper {
	display: block;
	margin-left: auto;
	width: 940px;
	margin-right: auto;
}

DIV#strip_wraper {
	display: block;
	margin-left: auto;
	width: 940px;
	margin-right: auto;
}

DIV#header_wraper {
	display: block;
	margin-left: auto;
	width: 940px;
	margin-right: auto;
	}

DIV#header_wraper {
	height: 107px;
	width:100%;
}

/*
The main navigation tabs
*/

#nav {
	list-style-type: none;
	margin-left: 0px;
	padding-top: 161px;
	float: left;
}

#nav li {
	float: left;
	margin-right: 3px;
		background-color: white;
}

#nav li a {
	display: block;
	padding: 3px 8px 5px 8px;
	text-decoration: none;
}

/*
The resting state for nav list items is a white background with blue text.

When hovered or active it switches to a blue gradient background and white text. The text style
is specified on a nested span.
*/

#nav li a span {
	color: #194B77;
	font-family: Verdana, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px;
	white-space: nowrap;
}

#nav li:hover {
	background-image: url('TabBackground.png');
	background-repeat: repeat-x;
}

#nav li:hover a span {
	color: white;
}

/* 
because the submenu list is itself nested inside a hovered list item we have to reset the 
hover style from the nested spans and reapply it based on the hovering of individual submenu links
*/

#nav li:hover ul.submenu a span {
	color: #194B77;
}

#nav li:hover ul.submenu a:hover span {
	color: white;
}

/*
The submenus are just nested lists contained inside the parent list item. They are hidden
by default and displayed when the parent list item is hovered.
*/

#nav li ul.submenu {
	left: auto;
	list-style-type: none;
	position: absolute;
	margin: 0;
	padding: 0;
	display: none;
	width: 12em;
	border: 1px solid #215086;
	overflow: visible;
}

#nav li ul.submenu li {
	width: 100%;
	text-align: center;
}

#nav li:hover ul.submenu {
	display: block;
}
