/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-align: center;
	background-color: #00006c;
}
/* Commonly used to style page titles. */
h1 {
	color: #293747;
	font: normal 26px/26px Georgia, "Times New Roman", Times, serif;
	letter-spacing: -1px;
	background: url(images/h1-bg.png) no-repeat center bottom;
	padding-bottom: 16px;
}
/* Commonly used to style section titles. */
h2 {
	color: #3D435F;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E9E6DF;
	padding-bottom: 6px;
	font: bold normal 18px/18px Verdana, Geneva, sans-serif;
	letter-spacing: -1px;
}
img {
	border:none;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #900;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #000;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000;
}
.galleryleft {
	float:left;
	border:solid 5px #000;
	margin:10px 10px 0 0;
}	
.arrow {
	background: url(images/arrow.gif) no-repeat left top;
	display: block;
	padding-left: 15px;
	margin-top: 8px;
}
.arrow-not {
	display: block;
	padding-left: 15px;
	margin-top: 8px;
}
/* This extra layer simply allows the body tag to have the same darker color as the bottom of the footer so the color extends to the bottom of the browser window */
#background {
	background: #FFF url(images/body-fade-bg.jpg) repeat-x left top;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 920px;
	margin: 0px auto 0;
}
/* These are the settings for the top navigation bar */
#nav {
	height: 59px;
	color: #FFFFFF;
	background: url(images/nav-bg.jpg) repeat-x top;
	padding-left: 20px;
}
#nav ul {
	margin: 0px;
	padding: 0px;
}
#nav ul li {
	margin: 0px;
	display: block;
	float: left;
	list-style: none;
	clear: right;
}
#nav ul li a {
	display: block;
	padding-right: 20px;
	padding-left: 20px;
	text-align: center;
	color: #CCCFE1;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 59px;
	font-weight: bold;
	background: url(images/nav-divider.gif) no-repeat right top;
}
#nav ul li a:hover {
	background: url(images/nav-hover.jpg) no-repeat right top;
	text-decoration: none;
	color: #ffdc14;
}
#nav ul li#active {
	background: url(images/nav-hover.jpg) no-repeat right top;
	text-decoration: none;
}
#nav ul li#active a {
	color: #FFFFFF;
}
/* The logo is the entire header image */
#logo {
	background: url(images/logo.jpg) no-repeat left top;
	height: 134px;
}
#outerWrapper #contentWrapper {
	overflow: hidden;
	margin-right: 0px;
	margin-left: 0px;
	background: url(images/content-bg.jpg) repeat-y center;
	padding-right: 20px;
	padding-top: 15px;
}
#outerWrapper #contentWrapper #content {
	float: left;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 25px;
	width: 610px;
}
#outerWrapper #contentWrapper #rightColumn {
	float: right;
	width: 245px;
	padding-bottom: 20px;
	margin-bottom: 10px;
}
/* This the hr tag a line color */
#content hr {	
	border: 1px solid #E9E6DF;
}
#content fieldset {
	border: 1px solid #ccc;
}

#content fieldset form fieldset.valid_nol {
	border-style: none;
}
/* This creates more spacing between lines in the content paragraphs */
#content p {
	line-height: 140%;
}
/* These are the optional content area box settings */
.widebox {
	border: 1px solid #E9E6DF;
	background-color: #F8F7F3;
	margin-bottom: 15px;
}
.widebox .arrow {
	margin-left: 10px;
}
.widebox h5 {
	background-image: url(images/widebox-title.jpg);
	background-repeat: repeat-x;
	background-position: center;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
}
#content .widebox p {
	padding:8px;
	margin:3px;
	line-height: 120%;
}
#content .widebox form {
	padding:8px;
	margin:3px;
	line-height: 120%;
}
#content ul li {
	margin-bottom:10px;
}
dt {
	font-weight:bold; 
	margin: 0;
	color: #626262; 
	font-size: 14px;
}
dd {
	margin: 5px 0;
	padding-left: 15px;
}
dd .arrow {
	clear: left;
	border-bottom: 1px solid silver;
	padding-bottom: 10px;
}
dd .arrow-not {
	clear: left;
	border-bottom: 1px solid silver;
	padding-bottom: 10px;
}
/* This styles the headings in the right sidebar */
#rightColumn h3 {
	font: bold normal 16px/16px "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding-left: 10px;
	padding-top: 7px;
	letter-spacing: normal;
	background: url(images/h3-bg.png) no-repeat left top;
	border-bottom: 2px solid #FFF;
	color: #FFF;
	padding-bottom: 13px;
}
#rightColumn h4 {
	padding-left:10px;
	padding-right: 10px;
	
}
#rightColumn p.arrow {
	margin-left:10px;
	padding-right: 10px;
	
}
#rightColumn div.sidebardkblu p.arrow {
	margin-left:0px;
	padding-right: 10px;
	
}

/* This styles the dividing lines between items in the right sidebar if hr is used */
#rightColumn hr {
	background-color: #20377D;
	color: #6F78A3;
	height: 1px;
	border: 0;
}
#rightColumn ul {
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#rightColumn ul li {
	list-style: none;
	display: inline;
}
#rightColumn ul li a {
	display: block;
	padding: 4px 4px 4px 10px;
	border-bottom: 1px solid #E9E6DF;
}
#rightColumn ul li a:hover {
	text-decoration: none;
	background-color: #E9E6DF;
}
/* These styles are for different style fonts */
.font-7 {
	font-size: .7em;
	font-weight: bold;
}
.font-7N {
	font-size: .7em;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
}
.font-75 {
	font-size: .75em;
	font-weight: bold;
}
.font-75N {
	font-size: .75em;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
}
/* Commonly used to style section titles. */
.sidebarlt {
	padding: 6px;
	border: 1px solid #E9E6DF;
	background-color: #F8F7F3;
}
.sidebarlt h1 {
	color: #262c83;
	font: normal normal 18px/18px Georgia, "Times New Roman", Times, serif;
	letter-spacing: 0px;
	background-image: none;
	padding-bottom: 2px;
	margin-bottom: 4px;
	border-bottom: thin inset #262c83;
}
.sidebarlt h2 {
	color: #293747;
	font: normal normal 12px/12px Verdana, Geneva, sans-serif;
	letter-spacing: 1px;
	border-style: none;	
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.sidebarlt p {
	margin-top: 4px;
}
.sidebarlt ul {
	margin-top: 0px;
	padding-top: 0px;
}
.sidebardk {
	color: #FFFFFF;
	border: 1px solid #253141;
	padding: 6px;
	background-color: #20377D;
}
/* Commonly used to style section titles. */
.sidebardk h1 {
	color: #fff;
	font: normal normal 18px/18px Georgia, "Times New Roman", Times, serif;
	letter-spacing: 0px;
	background-image: none;
	padding-bottom: 0px;
	margin-bottom: 4px;
}
.sidebardk h2 {
	color: #fff;
	font: normal normal 14px/14px Verdana, Geneva, sans-serif;
	letter-spacing: 1px;
	border-style: none;	
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.sidebardk h4, .sidebardk h5,.sidebardk h6 {
	color: #fff;
	font: normal normal 12px/12px Verdana, Geneva, sans-serif;
	letter-spacing: 1px;
	border-style: none;	
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.sidebardk p {
	margin-top: 4px;
	color: #e7edff;
}
.sidebardk ul {
	margin-top: 0px;
	padding-top: 0px;
}
.sidebardk a, sidebardk a:visited, sidebardk a:active {
	color: #FFFFFF;
}

.sidebardk a:hover {
	color: #ffdc14;
}
.sidebardk li a:hover {
	color: #20377D;
}
.sidebardkblu {
	color: #c7c7c7;
	border: 1px solid #aac2eb;
	padding: 6px;
	background-color: #C7E1F8;
}
/* Commonly used to style section titles. */
.sidebardkblu h1 {
	color: #293747;
	font: normal 18px/18px Georgia, "Times New Roman", Times, serif;
	letter-spacing: 0px;
	background-image: none;
	padding-bottom: 0px;
	margin-bottom: 4px;
}
.sidebardkblu h2 {
	color: #3D435F;
	font: normal normal 14px/14px Verdana, Geneva, sans-serif;
	letter-spacing: 1px;
	border-style: none;	
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.sidebardkblu h4, .sidebardkblu h5,.sidebardkblu h6 {
	color: #3D435F;
	font: normal bold 12px/12px Verdana, Geneva, sans-serif;
	letter-spacing: 1px;
	border-style: none;	
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.sidebardblu p {
	margin-top: 4px;
}
.sidebardkblu ul {
	margin-top: 0px;
	padding-top: 0px;
}
.sidebardkblu a, .sidebardkblu a:hover, .sidebardkblu a:visited, sidebardkblu a:active {
	color: #900;
}
/* This styles footer section */
#footertop {
	background: #20377D url(images/footer-top-fade.jpg) repeat-x top;
}
#footer {
	margin: 0px auto 0px;
	height: 100%;
	width: 920px;
	color: #FFF;
	background: url(images/footer.jpg) no-repeat center top;
	padding-top: 30px;
	padding-bottom: 0px;
}
#footer h4 {
	font: normal 22px/24px Verdana, Geneva, sans-serif;
	color: #FFF;
	margin-bottom: 15px;
}
#footerlower {
	clear: both;
	width: 920px;
	margin: 10px auto 0px;
}
#footerlower p {
	padding: 0 10px 15px;
	color:#C9D3DE;
	margin-bottom: 0px;	
	margin-top: 0px;
}
#footerlower a, #footerlower a:link, #footerlower a:visited, #footerlower a:active {
	color: #C9D3DE;
	font-weight: normal;
}
#footerlower a:hover {
	color: #C9D3DE;
}
/* This can be applied to footer text and links to position them*/
#footerlower .float-left {
	display: block;
	float: left;
	margin-right: 10px;
	margin-bottom: 0px;
	border: none;
	margin-top: 0;
}

#footerlower .float-left p {
	font-weight: normal;
	padding: 10px 10px 4px;
}
#footerlower .float-left a, #footerlower .float-left a:link, #footerlower .float-left a:visited, #footerlower .float-left a:active {
	font-weight: normal;
	padding: 14px 2px;
}
#footerlower .float-left a:hover {
	color: #ffdc14;
	background-color: #001b74;
	background: url(images/nav-hover.jpg) no-repeat left bottom;
}
#footerlower .float-right {
	display: block;
	float: right;
	margin-left: 10px;
	margin-bottom: 0px;
	border: none;
	margin-top: 5px;
	word-spacing: 2px;
}
#footerlower .float-right p {
	font-weight: normal;
	padding: 10px 10px 0px;
}
#footerlower .float-right a, #footerlower .float-right a:link, #footerlower .float-right a:visited, #footerlower .float-right a:active {
	color: #fff;
	font-weight: normal;
	padding: 14px 5px;
}
#footerlower .float-right a:hover {
	color: #ffdc14;
	background-color: #001b74;
	background: url(images/nav-hover.jpg) no-repeat right bottom;
}
/* This is the left side of the footer feature area */
.foot-left {
	width:490px;
	float:left;
	text-align:left;
	padding-left:20px;
	padding-top: 0px;
	padding-bottom: 10px;
}
/* This is the right side of the footer feature area */
.foot-right {
	width:370px;
	float:right;
	text-align:left;
	padding: 0px 15px 0px 5px;
	color: #fff!important;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}

/* This provides padding away from the sidebar edges for sidebar paragraphs. */
.pad {
	padding-right: 10px;
	padding-left: 15px;
	clear: both;
	padding-top: 15px;
	margin: 0px;
}
/* This can be applied to images to position them left of the related content */
.float-left {
	display: block;
	float: left;
	margin-right: 10px;
	margin-bottom: 12px;
	border: none;
}
/* This can be applied to images to position them right of the related content */
.float-right {
	display: block;
	float: right;
	margin-left: 10px;
	margin-bottom: 12px;
	border: none;
}
/* These are the settings for the newsletter signup in the footer */
#emailform {
	margin: 5px 0 20px 0px;
}
#emailform input {
	margin:0px;
}
#email {
	color: #900;
	font: bold 16px Verdana, Geneva, sans-serif;;
	padding: 3px;
	border: 1px solid #000;
}
#emailform .email {
	color: #900;
	font: bold 16px Verdana, Geneva, sans-serif;;
	padding: 3px;
	border: 1px solid #000;
}
#emailform #button {
	width:125px;
	text-align:center;
	color:#900;
	font-size:16px;
	font-weight:bold;
	border:none;
	background: transparent url(images/button.gif) no-repeat;
	height: 31px;
	padding: 0px;
	margin: 0px 0px 0px 10px;
}
#emailform #button:hover {
	color: #FFF;
	background-image: url(images/button-hover.gif);
	cursor: pointer;
}
/* This styles the sitemap page list */
#sitemap ul {
	margin-top: 5px;
	padding-left: 0px;
	margin-left: 0px;
}
#sitemap li.subpage {
	background: url(images/subpage.gif) no-repeat left top;
	padding-left: 12px;
	line-height: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
	list-style: none;
}
#sitemap li.subpage a, #content li.subpage a:link {
	font-weight:normal;
}
/* These are the styles for the contact form */
Label {
}
.inputValue {
	width:50%;
	margin-top:5px;
}
.inputText {
	width:85%;
	height:180px;
	margin-top:5px;
	font: normal 1em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
.inputButton {
}
.required {
	font-size:9px;
	color:#C00;
}
/* ---------- These are the styles for the data detail table ---------- */

#detail {
	margin-top: 20px;
}
#detail h3 {
	margin: 8px 0px 0px;
	padding: 0px;	
}
#detail p {
	line-height:normal;	
}
#detail a {
	font-weight:bold;	
}
#detail td.uline {
	border-bottom:1px solid #ccc;	
}
