@charset "UTF-8";
/* CSS Document */
#container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width:1000px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	visibility: visible;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	height: 1700px;
	background-color: #AC9D4F;
	z-index: 1;
}
#main {
	position:absolute;
	left:0px;
	top:229px;
	width:1000px;
	background-color: #AC9D4F;
	z-index:3;
	visibility: visible;
	height: 1260px;
}
#foot {
	width:1000px;
	background-color: #567CC3;
	left: 0px;
	top: 1500px;
	position: absolute;
	visibility: visible;
}

