@charset "utf-8";
/* CSS Document */
body  {
	background: #F3F3F3;
	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 */
}
.container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #F3F3F3;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 12px; /* 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: #F3F3F3; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	margin: 0px;
}
.sidebar2 img {
	margin: 0px;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 11px; /* 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: #F3F3F3; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	margin: 0px;
}
.mainContent {
	width: 751px;
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	BACKGROUND: #FFFFFF;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 12px;
}
.header img {
	margin: 0px;
	padding: 0px;
	border: 0px;
}
.nav img {
	border: 0px;
}
.footer img {
	border: 0px;
}
.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;
}
.content {
	text-align: left;
	margin: 0px;
	padding: 16px;
	width: 719px;
}

