@charset "utf-8";
body  {
	/* font: Verdana, Arial, Helvetica, sans-serif; */
	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;
	background-color: #666666;
}
.twoColFixLtHdr3 #container {
	width: 780px; /* 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. */
	background-color: #FFFFFF !important;
	background-image: url(../images/fauxcolumn.png);
	background-repeat: repeat-y;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0px;
} 
.twoColFixLtHdr3 #header {
	padding: 0;  /* 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. */
	background-color: #FFFFFF;
	position: relative;
	margin: 0px;
	display: block;
} 
.twoColFixLtHdr3 #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 */
}

.twoColFixLtHdr3 h2 {
	font: Verdana, Arial, Helvetica, sans-serif;
	color: #454452;
	margin-top: 15px;
	margin-bottom: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	font-size: 18pt;
	font-weight: bolder;
}
.twoColFixLtHdr3 h3 {
	font: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	margin-bottom: 2px;
	padding-bottom: 0px;
	padding-top: 0px;
	margin-top: 15px;
}
.twoColFixLtHdr3 h4 {
	font: Verdana, Arial, Helvetica, sans-serif;
	color: #454452;
	margin-bottom: 2px;
	padding-bottom: 0px;
	padding-top: 0px;
	margin-top: 10px;
}
.twoColFixLtHdr3 h5 {
	font: Verdana, Arial, Helvetica, sans-serif;
	color: #454452;
}
.twoColFixLtHdr3 #sidebar1 {
	font-family: Arial, Helvetica, sans-serif;
	float: left; /* since this element is floated, a width must be given */
	width: 225px;
	background-color: #FFFFFF;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0px;
	margin-left: 25px;
	margin-top: 80px;
}

	#sidebar1 a:link { color: #000000 !important; text-decoration: none;} 
	#sidebar1 a:visited { color: #000000 !important; text-decoration: none;} 
	#sidebar1 a:hover { color: #900 !important; text-decoration: underline;} 
	#sidebar1 a:active { color: #000000 !important; text-decoration: none;} 

.twoColFixLtHdr3 #sidebar2 {
	font-family: Arial, Helvetica, sans-serif;
	float: left; /* since this element is floated, a width must be given */
	width: 225px;
	background-color: #FFFFFF;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0px;
	margin-left: 25px;
	margin-top: 5px;
}

	#sidebar2 a:link { color: #000000 !important; text-decoration: none;} 
	#sidebar2 a:visited { color: #000000 !important; text-decoration: none;} 
	#sidebar2 a:hover { color: #900 !important; text-decoration: underline;} 
	#sidebar2 a:active { color: #000000 !important; } 

.twoColFixLtHdr3 #mainContent3 {
	font-family: "Franklin Gothic Book";
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 39px;
	margin-left: 280px;
	background-color: #FFFFFF;
	border-left-width: thin;
	border-left-style: dotted;
	border-left-color: #CCCCCC;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
} 

.twoColFixLtHdr3 #mainContent5 {
	font-family: "Franklin Gothic Book";
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 39px;
	margin-left: 280px;
	background-color: #FFFFFF;
	border-left-width: thin;
	border-left-style: dotted;
	border-left-color: #CCCCCC;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
} 
	#mainContent5 a:link { color: #003300 !important; text-decoration: none;} 
	#mainContent5 a:visited { color: #000000 !important; text-decoration: none;} 
	#mainContent5 a:hover { color: #900 !important; text-decoration: underline;} 
	#mainContent5 a:active { color: #000000 !important; } 


.twoColFixLtHdr3 #footer {
	font: Verdana, Arial, Helvetica, sans-serif;
	background-color: #464652;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.twoColFixLtHdr3 #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 */
}
.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;
}
