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;
}
a:link {
	text-decoration: none;
	color: #666666;
}
a:visited {
	text-decoration: none;
	color: #666666;
}
a:hover {
	text-decoration: none;
	color: #666666;
}
a:active {
	text-decoration: none;
	color: #666666;
}
a {
	font-family: Georgia;
	font-size: 14px;
}
.contact #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;
} 
.contact #header {
	background-color: #FFFFFF;
	height: 120px;
	margin: 0px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.contact #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.contact #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 340px;
	background-color: #eeeeee;
	margin-left: 20px;
	height: 514px;
	padding-top: 16px;
	padding-bottom: 20px;
	padding-right: 0px;
	padding-left: 0px;
}
.contact #container #sidebar1 h1 {
	margin-top: 18px;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-left: 18px;
}
.contact #container #sidebar1 p {
	margin-top: 18px;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-left: 18px;
}
.contact #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 570px;
	background-color: #FFFFFF;
	height: 550px;
}
#sidebar2 img {
}
.contact #mainContent {
	padding: 0;
	margin: 0;
} 
.contact #footer {
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #FFFFFF;
	margin: 0px;
} 
.contact #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;
}
