@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #2d2d2d;
	background-color: #16315E;
	background-image: url(images/bg.jpg);
	background-repeat: repeat-x;
	background-attachment:scroll;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
}

#backgroundArt {
	width: 100%;
	background-image:url(images/bg-art.jpg);
	background-repeat:no-repeat;
	background-position: left top;
	background-attachment:scroll;
	
	}
.twoColFixRtHdr #container {
	width: 906px;
	margin: 0 auto;
	text-align: left;
	background-image: url(images/shadow-brdr.png);
	background-repeat: repeat-y;
} 
.twoColFixRtHdr #header {
	height: 556px;	
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColFixRtHdr #header h2 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}


#top {
	height: 196px;
	width: 906px;
	float: left;
	}
#splash {
	height: 327px;
	margin-left: 5px;
	width: 897px;
	float: left;
	
	
	}
#menu {
	height: 33px;
	margin-left: 5px;
	width: 897px;
	float: left;
	}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 280px;
	margin-right: 4px;
}
.twoColFixRtHdr #mainContent {
	margin: 0 280px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 23px 0 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #footer {
	font-family: Arial, Helvetica, sans-serif;
	height: 200px;
	width: 906px;
	position: relative;
	color: #FFFFFF;
	margin: 0 auto;
	text-align: left;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.twoColFixRtHdr #footer a {
	
	color: #FFFFFF;
	}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

h1 {
	color: #004170;
	font-size: 24px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;	
}

.subheadLarge {
	font-size: 20px;
	color: #fb6f00;
	
}

.subheadLarge a {

	color: #fb6f00;
	text-decoration: none;
	
}

h2 {
	color: #fb6f00;
	font-weight: normal;
	font-size: 18px;
	
}

.subheadSmall {
	font-size: 16px;
	color: #004170;
	
}

#heading {

	width: 846px;
	padding: 0px 30px;
	margin-bottom: 15px;
	
}

.headingSubtext {
	margin-top: 15px; font-size: 18px; color: #797979
	
}

.cta {
	margin-top: 15px; font-size: 18px; color: #797979
}
	
}

#bigTab {
	background-image: url(images/big-tab-bg.jpg);
	background-repeat: no-repeat;
	margin-left: -15px;
	width: 573px;
	padding: 0px 0px 0px 15px;
	background-position: left top;	
	}
#rightTab {
	background-image: url(images/right-tab-bg.jpg);
	background-repeat: no-repeat;
	margin-top: 15px;
	padding: 15px 0px 0px 15px;
	
	
	}
.footerBlue {
	font-weight: bold;
	color: #7f95b0;
}
.footerHeading {
	font-size: 18px;
	line-height: 22px;
}
.footerOrange {
	font-style: italic;
	color: #fb6f00;
}

.copyright {font-size: 9px}


/* one column format (subpages) */


.oneColFixCtrHdr #footer {
	font-family: Arial, Helvetica, sans-serif;
	height: 200px;
	width: 906px;
	position: relative;
	color: #FFFFFF;
	margin: 0 auto;
	text-align: left;
} 
.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.oneColFixCtrHdr #footer a {
	
	color: #FFFFFF;
	}

.oneColFixCtrHdr #container {
	width: 906px;
	margin: 0 auto;
	text-align: left;
	background-image: url(images/shadow-brdr.png);
	background-repeat: repeat-y;
} 
.oneColFixCtrHdr #header {
	height: 556px;	
} 
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.oneColFixCtrHdr #mainContent {
	margin: 0; 
	padding: 15px 30px 0; 
	background-image: url(images/subpage-tab-bg.jpg);
	background-repeat: no-repeat;
	background-position: 5px 0px;
}

.oneColFixCtrHdr #mainContent2 {
	margin: 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 15px 30px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(images/subpage-tab-bg-2.jpg);
	background-repeat: no-repeat;
	background-position: 5px 0px;
}

.highlightBlue {
	color: #004170;
}

/* Lists */

ul {
	list-style-type: none;
	padding-left: 0;
	margin-left: 0;
	}
ul ul {
	list-style-type: none;
	padding-left: 35px;
	margin-left: 35px;
	}
li {
	background-image: url(images/bullet.jpg);
	background-repeat: no-repeat;
	background-position: left 5px;
	padding-left: 15px;
}


ul ul li{
	background-image: url(images/bullet-2.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
	margin-left: 15px;
}

/* #sidebar ul {attributes}
#sidebar li {attributes}
#sidebar ul li {attributes}
#sidebar ul ul li {attributes}
#sidebar ul ul ul li {attributes}
#pagenav {attributes}
#pagenav ul {attributes}
#pagenav ul li {attributes} */.closebtm {
	margin-bottom: 0px;
}
.closetop {
	margin-top: 0px;
}
#footerText {
	position:absolute;
	width:496px;
	height:115px;
	z-index:1;
	left: 34px;
	top: 30px;
}
/* .tab_background {
	background-image: url(images/subpage-tab-bg-2.jpg);
	background-repeat: no-repeat;
	height: 75px;
	margin-bottom: -30px;
	line-height: 30px;
	
} */

.tab_background {
	margin: 0 0 0 -30px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 15px 30px 0 32px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(images/tab_20.jpg);
	background-repeat: no-repeat;
	background-position: 5px 0px;
	height: 75px;
	margin-bottom: -40px;
}

.tab_background_home {
 	background-image:url(images/big-tab-bg.jpg);
	margin: 0 0 0 -20px; 
	padding: 15px 30px 0 18px; 
	background-repeat: no-repeat;
	background-position: 5px 0px;
	height: 75px;
}

