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

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

#menu_logos {
	width:750px;
	padding:0;
	margin:0;
	float:left;
}

#menu_logos img {
	padding:0;
	margin:0;
}

#home_link {
	width:604px;
	padding:0;
	margin:0;
	float:left;
}

#logo_link {
	width:146px;
	padding:38px 0 0 0;
	margin:0;
	float:left;
}

#menu { /*all other menu styles should be on the menu style sheet*/
	width:750px;
	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;
	color:#FFFFFF;
	font-size:13px;
}

#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;
	background-color:#EDDFB5;
	text-align:left;
}

#main_container {/*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-color:#EDDFB5;
}

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

#left_container {
	width:199px;
	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-color:#EDDFB5;
}

#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:551px;
	padding:0;/*Change for positioning. Remember to adjust width accordingly.*/
	margin:0;
	float:left;
	background-color:#EDDFB5;
	background-image:url(../images/bg_main.jpg);
	background-position:top left;
	background-repeat:repeat-y;
}

#content_bg {/*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:551px;
	padding:0;/*Change for positioning. Remember to adjust width accordingly.*/
	margin:0;
	float:left;
	background-color:#EDDFB5;
	background-image:url(../images/bg_main_body.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	min-height:367px;
}

#content_container {/*The width, padding, margin, and border should equal the width of the middle container div.*/
	width:531px;
	padding:15px 10px;/*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_container {
	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;
	height:75px;
	background-color:#808080;
	background-image:url(../images/bg_footer.jpg);
	background-position:top left;
	background-repeat:no-repeat;
}

#footer_logos {
	width:723px;
	padding:0 0 0 27px;
	margin:0;
	float:left;
}

#footer_logos img {
	padding:0;
	margin:0;
}

#footer_logos .pts_logo {
	margin-left:255px;
}

#footer {
	width:750px;
	padding:10px 0 0 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;
	text-align:center;
	color:#FFFFFF;
	font-size:11px;
}

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

p {
	padding:9px 0;
}

p.question{
	font-weight:bold;
	padding:20px 0 5px 0;

}

p.answer{
	padding:0 0 0 0;

}

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

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

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

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

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

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

a {
	color:#0000FF;
}

a:hover {
	color:#F80202;
}

img {
	padding:12px;
	margin:0;
}

#left_container img {
	padding:0px;
}

/*List Styles*/

#content_container ul {
	list-style-type:disc;
	margin-top:3px;
	padding-top:0;
}

#content_container li {
	float:none;
}

#content_container ul li a {
	PADDING:0;
	DISPLAY:inline;
	TEXT-DECORATION:underline;
}

#content_container ul li a:hover {
	background-image:none;
	color:#F80202;
}

ol.bullets {
	list-style-type:disc;
	margin-top:3px;
	padding-top:0;
}

ol.bullets ol {
	list-style-type:circle;
	margin-top:0px;
	padding-top:0;
}
