body {
	font: 100% Georgia, "Times New Roman", Times, serif;
	background: #000000;
	background-image:url(images/bgimage.jpg);
	background-repeat:repeat-x;
	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: #fff;
}
.main #container {
	width: 900px;  /* this will create a container 80% of the browser width */
	background: #554C29;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.main #navigator {
	background: #222313;
	height: 30px;
	padding-top: 5px;
}
.main #header {
	background: #222313;
	padding: 0px 0px 0px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0px;
}
.main #menubar {
	background: #222313;
	padding: 0px 0px 0px 0px;
	height: 35px;
}
.main #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* 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: #554C29; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
}
.main #mainContent {
	padding: 0px 0px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0 250px 0 0; 
	background: #222313;
	border-style: solid;
	border-bottom-width: 1px;
	border-top-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
	border-color: #FFFFFF;
}
.main #footer {
	padding: 0px 0px 0px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#B3A363;
} 
.main #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 0px 10px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	background: #B3A363;
	text-align: center;
}
img {
border:none;
}
