@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	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: #000000;
}
.contentPage #border {
	width: 812px;
	margin: 0 auto;
	background-image:url(backgroundDarkBlue.gif);
}
#borderBottom {
	background-image:url(backgroundBaseBlue.gif);
}
.contentPage #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
} 





/*******************/
/*     HEADER      */
/*******************/

.contentPage #header { 
	background: #234352; 
	padding: 0 10px 0 20px;
	height:150px;
} 
.contentPage #header h1 {
	margin: 0; 
	padding: 10px 0;
	color:#FFFFFF;
	text-indent: -9000px;
	position:relative;
	top:15px;
	font-size:100px;
}



/*******************/
/* LEFT NAVIGATION */
/*******************/

.contentPage #leftNav {
	float: left; 
	width: 190px;
	height:400px;
	padding: 15px 0 0 28px;
}

#leftNav ul li {
	border-bottom:1px #000000 solid;
	list-style-type:none;
	padding-bottom:3px;
	padding-top:2px;
	position:relative;
	left:-50px;
	width:auto;
}

#leftNav ul li ul li {
	
	list-style-type:none;
	border-bottom:1px #FFFFFF solid;
	position:relative;
	left:-25px;
	width:auto;
	margin-top:-1px;
	margin-bottom:-1px;
	font-size:small;
	
}


#leftNav a:link.currentPage, a:visited.currentPage {
	color:#CC6600;
	font-weight:bold;
}

#leftNav a:link, a:visited, a:active {
	font-weight:bold;
	color:#116185;
	text-decoration:none;
}

#leftNav a:hover {
	font-weight:bold;
	color:#FF0000;
	text-decoration:underline;
}







/******************/
/*  MAIN CONTENT  */
/******************/

.contentPage #mainContent { 
	margin: 0 0 0 200px; /* 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: 0 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.contentPage #mainContent p{
	text-align:justify;
}
.contentPage #mainContent H1, H2, H3, H4 {
	color:#067aae;
}
.contentPage #mainContent H1 {
	font-size:x-large;
}
.contentPage #mainContent H2 {
	font-size:large;
	margin-bottom:-15px;
}
.contentPage #mainContent H3 {
	font-size:small;
	color:#48758d;
	margin-bottom:-15px;
}
.contentPage #mainContent H4 {
	font-size:10px;
	font-style: italic;
	color:#48758d;
	margin-bottom:-11px;
}

.contentPage #mainContent a:link, a:active {
	font-weight:bold;
	color:#CC6600;
	text-decoration:none;
}

.contentPage #mainContent a:visited {
	font-weight:bold;
	color:#619bb5;
	text-decoration:none;
}

.contentPage #mainContent a:hover {
	font-weight:bold;
	color:#FF0000;
	text-decoration:underline;
}

.contentPage #mainContent img {
	border:0;
}
table tr th {
	color:#067aae;
	text-align:center;
	vertical-align:bottom;
	border-bottom:1px solid #333333;
}
table tr td {
	border-bottom:1px solid #CCCCCC;
}


/*******************/
/*      FOOTER     */
/*******************/

.contentPage #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#234352; 
} 
.contentPage #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 */
}


.contentPage #footer2 { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff; 
	position:relative;
	left:-15px;
	width: 784px;
	margin: 0 auto;
	background-repeat:no-repeat;
	background-image:url(backgroundBaseDarkBlue.gif);
} 
.contentPage #footer2 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 */
}




/*******************/
/*     CLASSES     */
/*******************/

.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;
}
.dateLine{
	color:#6f96a8;
	position:relative;
}
.dateLineCalendar{
	color:#6f96a8;
}
.floatRight{
	float:right;
	margin-left:15px;
}
.floatLeft{
	float:left;
	margin-right:15px;
}
.blurb{
	margin-top:-15px;
}

