#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 0 20px 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:Arial, Helvetica, sans-serif;
	font-size:12px;
	background-color:#E1E3E6;
}

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

#menu { /*all other menu styles should be on the menu style sheet*/
	width:500px;
	padding:37px 0 0 475px;/*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;
}

#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_left {
	width:676px;
	padding:0;
	margin:0;
	float:left;
}

#left_container {
	width:259px;
	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;
	background-image:url(../images/bg_left.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	float:left;
}

#left_holder {
	width:259px;
	padding:370px 0 0 0;
	margin:0;
}

#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:676px;
	padding:0 0 10px 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:401px;
	padding:0 8px 8px 8px;/*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;
	background-image:url(../images/bg_main.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	float:left;
}

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

#right_content {
	width:275px;
	padding:0 12px 0 12px;
	margin:0;
	float:left;
}


.clr {
	clear:both;
}

#footer {
	width:965px;
	padding:5px;/*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;
	text-align:center;
	font-size:10px;
}

/*General Styles*/
h1,h2,h3,h4,h5,h6 {
	padding:0;
	margin:0;
	font-family:"Times New Roman", Times, serif;
}

p {
	padding:9px 0;
	margin:0;
}

h1 {
	font-size:32px;
	font-style:italic;
	font-weight:bold;
	color:#021E66;
	padding:0 0 30px 0;
	margin:0;
	letter-spacing:1px;
}

h2 {
	padding:12px 0 9px 0;
	font-size:24px;
	font-weight:bold;
	color:#000000;
	
}

h3 {
	padding:12px 0 9px 0;
	font-size:24px;
	font-weight:bold;
	color:#021756;
	
}

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

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

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

a {
	color:#021756;
}

a:hover {
	color:#CC0000;
}



/*LIST STYLES*/

#content_container ul {
	padding:0;
	margin:9px 0 0px 2px;
	/*list-style-image:url(../images/bullet_orange.jpg);*/
	list-style-type:none;
}

#content_container li {
	background-image: url(../images/bullet_orange.jpg);
	background-repeat: no-repeat;
	background-position:0px 4px;
	padding:0 0 6px 15px;
	line-height:150%;
}

#content_container ul li a {
	padding:0;
	color:#021756;
	text-decoration:underline;
}

#content_container ul ul {
	margin-left:5px;
}