@charset "UTF-8";
body  {
	font: 100% Georgia, "Times New Roman", Times, serif;
	background: #202f65;
	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: #ffffff;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
	color: #FFFFFF;
}
h1 {
	color: #ffffff;
	font-size: 130%;
}
h2 {
	color: #ffffff;
	font-size: 130%;
}
h3 {
	color: #ffffff;
	font-size: 120%;
}
h4 {
	color: #FFFFFF;
	font-size: 110%;
	font-weight: bold;
	font-style: italic;
}
h5 {
	color: #ffffff;
	font-size: 120%;
	margin-top: 40px;
}
#container { 
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	font-size: 80%;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width: 836px;
	width:expression(document.body.clientWidth < 600? "600px" : document.body.clientWidth > 1200? "1200px" : "auto");/* this is a fix for IE but will make your ss invalidate unless you put it in the head */
} #header {
	background: #ffffff url(../images/banner.jpg) no-repeat left top;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 149px;
} 

#navbar {
	background: url(../images/bkgds/menubkgd.jpg) repeat-x;
	height: 31px;
}
#mainWrap {
	background: #1f2d63 url(../images/bkgds/containerbkgd.jpg) repeat-y left top;
	padding-bottom: 20px;
	border-bottom: 2px solid #24305f;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: transparent;
	padding: 15px 10px 15px 20px;
}

#sidebar1 a {
	color: #FFFFFF;
	text-decoration: underline;
}

#sidebar1 a:hover {
	color: #FF0000;
}

#mainContent {
	margin: 0 0 0 300px; /* the left margin on this div element creates the column down the left 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: 10px 20px 0;
} 
#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#202f65;
	border-top: 10px solid #33498d;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	width: 59%;
	float: left;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #dedede;
}

#byline {
	margin: 0 8px 0 100px;
	padding: 10px 0;
	text-align: right;
}

#byline 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;
}
#pagetitle {
	color: #101C47;
	float: right;
	margin-top: 106px;
	margin-right: 36px;
	font: bold normal 160% Georgia, "Times New Roman", Times, serif;
	display: inline;
}
.listclass1 {
	font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #FFFFFF;
	margin-top: 24px;
	margin-left: 24px;
}
.listclass1 li {
	padding: 2px;
}
.listclass1 a:hover {
	color: #FF0000;
}
.listclass1 a {
	text-decoration: underline;
	color: #FFFFFF;
}
#formtable {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
