#center { /*This is what makes the website center in the window*/
	width:750px; /*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, Arial, Helvetica, sans-serif;
	font-size:12px;
	background-color:#D2D1DF;/*#9D9BBF;/*#EFEBC2;/*#000068*/;
}

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

#top_menu {
	width:750px;
	padding:0;
	margin:0;
}

#menu { /*all other menu styles should be on the menu style sheet*/
	width:750px;
	padding:0 0 0 0;/*This positions the menu horizontally within the header div. This should not exceed the height of the div.*/
	margin:0;
	font-weight:bold;
	text-align:center;
}

#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:750px;
	padding:0;
	margin:0;
	text-align:left;
	background-color:#FFFFFF;
}

#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:750px;
	padding:0;
	margin:0;
	float:left;
	background-image:url(../images/bg_main.jpg);
	background-position:top left;
	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:750px;
	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:710px;
	padding:20px;/*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;
}

/*Column Pages*/
.left_col {
	width:340px;
	padding:0 15px 0 0;
	margin:0;
	float:left;
}

.right_col {
	width:340px;
	padding:0 0 0 15px;
	margin:0;
	float:left;
}

.right_col ul,
.left_col ul {
	margin-top:5px;
	margin-bottom:10px;
}

.clr {
	clear:both;
}

#footer {
	width:750px;
	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;
}

#footer_content {
	width:750px;
	padding:3px 0;
	margin:0;
	text-align:center;
	font-size:11px;
}

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

p {
	padding:9px 0;
}

h1,
.h1 {
	padding:0 0 12px 0;
	font-size:22px;
	font-weight:bold;
	color:#E77919;
}

h2,
.h2 {
	padding:12px 0 9px 0;
	font-size:18px;
	font-weight:bold;
	color:#000068;
	
}

h3,
.h3 {
	padding:12px 0 9px 0;
	font-size:18px;
	font-weight:bold;
	color:#E77919;
	
}

h4,
.h4 {
	padding:25px 0 6px 0;
	font-size:14px;
	font-weight:bold;
	color:#000068;
	
}

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

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

a {
	color:#000068;
}

a:hover {
	color:#E77919;
}

ul {
	list-style-type:disc;
}

li {
	padding-bottom:6px;
}

ul.long li {
	line-height:15px;
}


.left_pic {
	float:left;
	margin:0 25px 3px 0;
}

.right_pic {
	float:right;
	margin:0 0 3px 3px;
}