body  {	font: 12px Arial, Helvetica, sans-serif;	background: #FFF;	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */	color: #666;}a:link {	color: #D2232A;	text-decoration: none;}a:visited {	color: #D2232A;	text-decoration: none;}a:hover {	color: #00a0d3;	text-decoration: underline;}a:active {	color: #00a0d3;	text-decoration: none;}/*div boxes*/#wrap {	width: 900px;	margin-top: 0px;	margin-right: auto;	margin-bottom: 0px;	margin-left: auto;	background-image: url(images/bg-shadow.gif);	background-repeat: repeat-y;}#container {	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */	background: #FFF;	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */	border: 1px solid #CCC;	text-align: center; /* this overrides the text-align: center on the body element. */} #header {	background: #FFF;} #sidebar1 {	float: left; /* since this element is floated, a width must be given */	width: 175px; /* 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: #fff; /* the background color will be displayed for the length of the content in the column, but no further */	padding: 32px 10px 15px 0px;}#mainContent {	margin: 0 30px 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: 25px 0px 0 20px;	text-align: left;} #footer {	padding: 0 10px 0 20px;	margin-left: 200px;	text-align: left;} /*headers*/h1 {	font-size: 14px;	color: #666;	line-height: 1.4em;}h2 {	font-size: 14px;	color: #00a0d3;	line-height: 1.4em;}h3 {	font-size: 13px;	color: #666;}h4 {	font-size: 12px;	display: inline;	padding-left: 20px;	padding-right: 20px;	padding-top: 10px;	padding-bottom: 11px;	border: 1px solid #999;	color: #369;}/*line adjustments*/#mainContent p {	line-height: 1.5em;}#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-size: 10px;	line-height: 1.5em;	color: #999;}#mainContent p img {	margin-top: 5px;	margin-right: 15px;	margin-bottom: 0px;	margin-left: 0px;}/*classes*/.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;}.smallprint {	font-size: 10px;}.line {	border-bottom-width: 1px;	border-bottom-style: solid;	border-bottom-color: #CCC;	margin-top: 10px;	margin-bottom: 20px;	padding-bottom: 8px;}.blue_text {	color: #369;}.lightBlue {	color: #00a0d3;}.redText {	color: #D2232A;}