#center { /*This is what makes the website center in the window*/
	width:800px; /*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:"Trebuchet MS", Verdana, Arial, sans-serif;
	font-size:12px;
	background-color:#4D4D4D;
	background-image:url(../images/bg_body.gif);
	background-position:top left;
	background-repeat:repeat-x;
	color:#02171D;
}

#header_container {
	width:800px;
	padding:0;
	margin:0;
	height:210px;
	background-image:url(../images/bg_header.jpg);
	background-position:top left;
	background-repeat:no-repeat;
}

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

#menu { /*all other menu styles should be on the menu style sheet*/
	width:800px;
	padding:0;/*This positions the menu horizontally within the header div. This should not exceed the height of the div.*/
	margin:0;
	color:#4D4D4D;
}

#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:800px;
	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:800px;
	padding:0;
	margin:0;
	float:left;
	background-image:url(../images/bg_main.jpg);
	background-position:top right;
	background-repeat:repeat-y;
}

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

#content_container {/*The width, padding, margin, and border should equal the width of the middle container div.*/
	width:538px;
	padding:0 8px 0 24px;/*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:230px;
	padding:0;
	margin:0;
	float:left;
}

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

.clr {
	clear:both;
}

#footer {
	width:800px;
	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:184px;
	background-image:url(../images/bg_footer.jpg);
	background-position:top left;
	background-repeat:no-repeat;
}

#footer_content {
	width:800px;
	padding:50px 0 0 0;
	margin:0;
	text-align:center;
	font-size:11px;
	color:#FFFFFF;
}

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

p {
	padding:9px 5px 9px 7px;
}

h1 {
	padding-top:12px;
	padding-bottom:6px;
	margin-top:10px;
	margin-bottom:10px;
	font-size:20px;
	font-weight:bold;
	color:#044D8B;
	background-image:url(../images/bg_title.jpg);
	background-position:top left;
	background-repeat:no-repeat;
}

h2 {
	padding-top:12px;
	padding-bottom:9px;
	font-size:18px;
	font-weight:bold;
	color:#000000;
	
}

h3 {
	padding-top:12px;
	padding-bottom:9px;
	font-size:18px;
	font-weight:bold;
	color:#666666;
	
}

h4 {
	padding-top:12px;
	padding-bottom:6px;
	font-size:14px;
	font-weight:bold;
	color:#666666;
	
}

h5 {
	padding-top:12px;
	padding-bottom:3px;
	font-size:13px;
	font-weight:bold;
	color:#000000;
	
}

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

a {
	color:#044D8B;
}

a:hover {
	color:#CC0000;
}


ul {
	list-style-type:disc;
	margin-top:9px;
	margin-bottom:15px;
}

li {
	padding-top:0px;
	margin-top:0;
	padding-bottom:5px;
	margin-bottom:0;
}

ol li {
	padding-top:0;
	margin-top:0;
	padding-bottom:10px;
	margin-bottom:0;
}