@charset "UTF-8";
body  {
	font-family: Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #FFFFFF;
}

.twoColFixLtHdr #container { 
	width: 780px;
	background: #004149;
	margin: 0 auto;
	border: 0px solid #000000;
	text-align: left;
	background-image:url(images/background.gif);
	background-repeat:repeat-y;
} 
.twoColFixLtHdr #header { 
	background: #FFFFFF; 
} 
.twoColFixLtHdr #header {
	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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 350px; /* 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: #888888; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
}


.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 350px; /* 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer { 
	background:#FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.65em;
	color: #999999;
}
.twoColFixLtHdr #footerimage { 
    height:65;
    line-height: 0px;
}


a:link {color: #FFFFFF; text-decoration:none }
a:link img { border: none }
a:visited {color: #FFFFFF; text-decoration:none}
a:visited img { border: none }
a:hover {color: #FF9900; text-decoration:none}
a:active {color: #FF9900; text-decoration:none}


h1{font-size:1.6em; line-height:1em; font-weight: bold;} 
h2{font-size:1.2em; line-height:1em; font-weight: bold; margin-bottom: -0.6em;}

.introtext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight:normal;
	margin-top: -0.8em;
}

.bodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	font-weight: normal;
}

LI.list1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	font-weight: normal;
	list-style: square;
	margin-left: -15px;
}

.smalltext {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7em;
} 
.twoColFixLtHdr #footertext 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 */
}

.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;
	font-size: 0.7em;
	font-weight: normal;
}