body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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 */
	padding-top:10px;
	background-image:url(../img/body.png);
		
}

.header {
	width: 1024px;  /* this will create a container 80% of the browser width */
	border: solid #660000;
	text-align: left;
	margin: 0 auto;
	border: 3px solid #660000;
	border-bottom:0px;
	
 

}
.container {
	width: 1024px;  /* this will create a container 80% of the browser width */
	background: #fefde8; /* the auto margins (in conjunction with a width) center the page */
	border: 3px solid #660000;
	text-align: left;
	margin: 0 auto;
} 

.sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 240px;
	background: #fefde8;
	padding: 15px 10px;
	text-align: center;
}

.mainContent {
	margin: 0 250px 0 0; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	padding: 0 20px;
	
} 

/* Miscellaneous classes for reuse */
.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. The floated element must precede the element it should be next to on the 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;
}
.footer {
	text-align: right;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	width:1024px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
		
} 
