#center { /*This is what makes the website center in the window*/
	width:760px; /*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:#878787;
}

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

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

#header_menu {
	width:351px;
	padding:0;
	margin:0;
	float:left;
}

#menu_top {
	padding:0;
	margin:0;
	color:#FFFFFF;
}

#header_content { 
	width:351px;
	padding:0;
	margin:0;
}

#header_phone { 
	width:326px;
	padding:13px 25px 0 0;
	margin:0;
	font-size:19px;
	color:#FFFFFF;
	text-align:right;
}

#header_address {
	padding:4px 18px 0 0;
	margin:0;
	font-size:10px;
	font-weight:bold;
	color:#000000;
	text-align:right;
	white-space:nowrap;
}

#menu_bottom {
	padding:0;
	margin:5px 0 0 0;
	color:#FFFFFF;
}


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

#bg_corner {
	width:760px;
	padding:0;
	margin:0;
	float:left;
	background-image:url(../images/bg_corner.jpg);
	background-position:bottom right;
	background-repeat:no-repeat;
}

#main_left {
	width:175px;
	padding:0;
	margin:0;
	float:left;
}

#left_container {
	width:175px;
	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_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:585px;
	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:545px;
	padding:15px 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;
	line-height:130%;
}

.clr {
	clear:both;
}

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

#footer_content {
	width:760px;
	padding:0px;
	margin:0;
}

.iso_text {
	width:175px;
	padding:10px 0px 15px 0;
	margin:0;
	float:left;
	text-align:center;
	font-weight:bold;
	font-size:12px;
	color:#FFFFFF;
}

.copy_text {
	width:555px;
	padding:10px 30px 15px 0;
	margin:0;
	float:left;
	font-size:10px;
	text-align:right;
	
}

/*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:24px;
	font-weight:bold;
	color:#390B86;
}

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

h3 {
	padding:12px 0 9px 0;
	font-size:16px;
	font-weight:bold;
	color:#390B86;
	
}

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

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

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

a {
	color:#390B86;
}

a:hover {
	color:#FF6633;
}
