#center { /*This is what makes the website center in the window*/
	width:975px; /*This needs to be the maximum width of the website. This is determined by the graphic.*/
	margin:0 auto;
	padding:0;
}

a {
	color:#603814;
}

a:hover {
	color:#A54316;
}

body {
	margin:0;/*This adds spacing around the entire website. If the design calls for there to be no spacing above the website the margin can be set at 0 */
	font-family:"Times New Roman", Times, serif;
	font-size:14px;
	background-color:#3D3D3D;
}

#header_container {
	width:975px;
	padding:0;
	margin:0;
	height:283px;
	background:url(../images/header.jpg) #ffffff top left;
}

#logo {
	float:left;
	width:214px;
	height:253px;
	padding:0px;
	margin:0px;
	cursor:pointer;
}

#address {
	float:left;
	width:461px;
	padding:30px 0px 0px 300px;
	margin:0px;
	color:#e0c18c;
	font-family:"Times New Roman", Times, serif;
	font-size:15px;
}

#menu { /*all other menu styles should be on the menu style sheet*/
	width:975px;
	padding:0;/*This positions the menu horizontally within the header div. This should not exceed the height of the div.*/
	margin:0;
	font-weight:bold;
	font-size:15px;
	color:#ffffff;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}

#menu a {
	font-size:15px;
	color:#59350f;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}

#main {/*To add an expanding background for the whole site, even if it is just solid colors, add a repeating image to this div*/
	width:975px;
	padding:0;
	margin:0;
	background-color:#FFFFFF;
	text-align:left;
}

#main_bg {/*To add an expanding background for the whole site, even if it is just solid colors, add a repeating image to this div*/
	width:975px;
	padding:0;
	margin:0;
	float:left;
	background:#cdce96;
}

#main_left {
	background:#e9d3ae url(../images/left_column.jpg) no-repeat top left;
	width:214px;
	padding:0;
	margin:0;
	float:left;
}

#left_container {
	width:214px;
	padding:0;/*If you need to have more padding on the left or right remember to adjust the the width accordingly. (Subtract both left and right padding from width.*/
	margin:0;
}

#left_menu { /** Remaining styling in _stylesheet_menu.css **/
	float:left;
	padding:20px 15px 20px 15px;
}

#main_content {/*This is the container that holds the left and middle divs. I used this to make positioning easier. If this were a two column layout we wouldn't need this.*/
	width:761px;
	padding:0;/*Change for positioning. Remember to adjust width accordingly.*/
	margin:0;
	float:left;
	background:#cdce96;
}

#content_container {/*The width, padding, margin, and border should equal the width of the middle container div.*/
	width:761px;
	padding:0;/*If you need to have more padding on the left or right remember to adjust the the width accordingly. (Subtract both left and right padding from width.*/
	margin:0;
}

#content_header {
	background:#91a63e;
	padding:15px 28px;
}

#content_body {
	background:#cdce96;
	padding:20px 28px;
	line-height:140%;
	font-size:18px;
}

.clr {
	clear:both;
}

#footer {
	width:975px;
	padding:0px;/*If you need to have more padding on the left or right remember to adjust the the width accordingly. (Subtract both left and right padding from width.*/
	margin:0;
	height:55px;
	background-color:#a54214;
}

#footer_content {
	width:965px;
	padding:35px 10px 0px 0px;
	margin:0;
	text-align:right;
	font-size:12px;
	color:#E7CEA6;
}

#footer_content a, #footer_content a:hover {
	color:#E7CEA6;
}

/*General Styles*/
h1,h2,h3,h4,h5,h6,p {
	padding:0;
	margin:0;
}

p {
	padding:6px 0;
}

h1 {
	padding:0 0 0px 0;
	margin:0px;
	font-size:40px;
	font-weight:bold;
	font-family:"Times New Roman", Times, serif;
	color:#FFFFFF;
}

h2 {
	padding:8px 0px;
	font-size:22px;
	font-weight:bold;
	font-style:italic;
	color:#000000;
	letter-spacing:1px;
	
}

h3 {
	padding:8px 0px;
	font-size:18px;
	font-weight:bold;
	font-style:italic;
	color:#666666;
	
}

h4 {
	padding:6px 0px;
	font-size:18px;
	font-weight:bold;
	color:#603814;
	
}

h5 {
	padding:12px 0 6px 0;
	font-size:14px;
	font-weight:bold;
	color:#000000;
	
}

h6 {
	padding:12px 0 3px 0;
	font-style:italic;
	font-size:12px;
	font-weight:bold;
	color:#000000;
	
}

/* This makes PNG's work in IE6 */

/*img, div { 
	behavior: url(png/iepngfix.htc);
} */


