body  {
	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: #666666;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	background-color: #CCCCCC;
}
.index #container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
} 
.index #header {
	background-color: #FFFFFF;
	height: 120px;
	margin: 0px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.index #header h1 {
	margin: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.index #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 910px;
	background-color: #FFFFFF;
	margin-left: 20px;
	height: 550px;
	margin-right: 20px;
}
#sidebar1 img {
}
.index #top_image {
	margin: 0px 20px;
	height: 350px;
	width: auto;
	background: #FFFFFF url(../img/main_home_top.jpg);
}
.index #mainContent {
	margin: 0px 20px;
	padding: 0px;
	height: 200px;
	width: auto;
	background: #FFFFFF url(../img/main_home_bot.jpg);
} 
.index #mainContent p {
	margin: 0px;
}
.index  #mainContent h5   {
	font-family: Georgia;
	font-size: 27px;
	font-style: normal;
	line-height: 33px;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
	padding-left: 30px;
	padding-right: 320px;
	margin: 0px;
}
.h5_italic {
	font-family: Georgia;
	font-size: 27px;
	font-style: italic;
	line-height: 33px;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px;
}
.index #mainContent img {
	margin: 0px;
}
.index #footer {
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #FFFFFF;
	margin: 0px;
} 
.index #footer p {
	margin: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#header img {
	margin: 0px;
}
#footer img {
	margin: 0px;
}
.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;
}
