#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;
}

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:Verdana, Geneva, Arial, sans-serif;
	font-size:12px;
	background-color:#463229;
	color:#2d2d39;
}

#header_container {
	width:975px;
	padding:0;
	margin:0;
	height:139px;
	background-image:url(../images/bg_header.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	float:left;
	z-index:10;
}

#header_top {
	width:975px;
	padding:0;
	margin:0;
}

#header_logo {
	width:975px;
	padding:0;
	margin:0;
	float:left;
}

#header_bottom {
	width:975px;
	padding:0;
	margin:0;
	float:left;
}

#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;
	float:left;
}

#menu_left {
	width:930px;
	padding:5px 0 0 45px;
	margin:0;
	z-index:20;
	float:left;
}

#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;
	line-height:140%;
	float:left;
	z-index:1;
}

#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-color:#ece8e6;
	background-image:url(../images/bg_body.jpg);
	background-position:top left;
	background-repeat:no-repeat;
}

#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:435px;
	padding:0;/*Change for positioning. Remember to adjust width accordingly.*/
	margin:0;
	float:left;
}

#content_container {/*The width, padding, margin, and border should equal the width of the middle container div.*/
	width:370px;
	padding:10px 25px 0 40px;/*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;
}

#main_right {
	width:540px;
	padding:0;
	margin:0;
	float:left;
}

#right_container {
	width:540px;
	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;
}

#main_bottom {
	width:975px;
	padding:0;
	margin:0;
}

#main_bottom_content {
	width:920px;
	padding:10px 15px 10px 40px;
	margin:0;
}

.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:29px;
	background-image:url(../images/bg_footer.jpg);
	background-position:bottom left;
	background-repeat:no-repeat;
}

#footer_content {
	width:970px;
	padding:1px 5px 0 0;
	margin:0;
	text-align:right;
	font-size:11px;
	color:#FFF;
}

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

p {
	padding:9px 0;
}

h1 {
	padding:0 0 12px 0;
	font-size:20px;
	font-weight:bold;
	color:#3d8ec8;
	line-height:120%
}

h2 {
	padding:12px 0 6px 0;
	font-size:14px;
	font-weight:bold;
	color:#2d2d39;
	line-height:120%;
	
}

h3 {
	padding:12px 0 6px 0;
	font-size:14px;
	font-weight:bold;
	color:#006bb7;
	
}

h4 {
	padding:12px 0 6px 0;
	font-size:14px;
	font-weight:bold;
	color:#2d2d39;
	
}

h5 {
	padding:12px 0 3px 0;
	font-size:12px;
	font-weight:bold;
	color:#006bb7;
	
}

h6 {
	padding:12px 0 0px 0;
	font-size:12px;
	font-weight:bold;
	color:#2d2d39;
	
}

a {
	color:#006bb7;
}

a:hover {
	color:#e63907;
}

ul {
	padding-top:0;
	margin-top:10px;
	padding-bottom:0;
	margin-bottom:20px;
}

li {
	padding-bottom:5px;
}

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

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

