@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;  /* Comment_1 this sets the background outside the center box - originally #666666*/ 
	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-image: ; /* Comment_6: if you remove the comment around background-iamge, you can set the background using image.  It is not necessary to commment out line Comment_1 above as this superceedes that line */
	
}
.oneColFixCtrHdr #container {
	width: 785px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #5c707c; /* Comment_5 this sets the color of the region between the bottom of the header and the top of the container - also sets the color between the bottom of the container and the top of the footer - if you want to, you could make it came color as teh container - see Comment_2 -  orginally #FFFFFF */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 0 auto;
}
.oneColFixCtrHdr #header {
	background: #FFFFFF;  /* Comment_4  this sets the color of the header - orgianlly #DDDDDD */
	padding: 0 10px 0 20px;  /* 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. */
	text-align: left;
}
.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 */
	font-family: Verdana, Geneva, sans-serif;
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF; /* Comment_2 this sets the color of the container - orginally #FFFFFF */
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	height: 0 auto;
	vertical-align: none;
	margin-top: 20px;
}
.oneColFixCtrHdr #footer {
	background:#FFFFFF;  /* Comment_3 - this sets the color of the footer - orginally #DDDDDD */
	margin-top: 20px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
.oneColFixCtrHdr #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 */
	font-weight: bold;
}
.largefonts {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #3a4e5a;
	font-weight: bolder;
}
.smallfonts {
	font-size: 14px;
	color: #5c707c;
	text-align:justify;
}
.footerfont {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	color: #5c707c;
}
.image_left {
	clear: none;
	float: left;
	margin-top: auto;
	margin-right: 10px;
	margin-bottom: auto;
	margin-left: auto;
}
.ImageRight {
	clear: both;
	float: right;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: 10px;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
}
