#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:"Trebuchet MS", Verdana, Arial, sans-serif;
	font-size:12px;
	background-color:#BAB7DB;
	color:#404648;
}

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

#menu { /*all other menu styles should be on the menu style sheet*/
	width:750px;
	padding:168px 0 0 0;/*This positions the menu horizontally within the header div. This should not exceed the height of the div.*/
	margin:0;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#51575B;
	font-size:14px;
}

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

#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:605px;
	padding:0;/*Change for positioning. Remember to adjust width accordingly.*/
	margin:0;
	float:left;
	background-color:#FFFFFF;
}

#content_container {/*The width, padding, margin, and border should equal the width of the middle container div.*/
	width:575px;
	padding:5px 10px 20px 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;
}

#main_right {
	width:145px;
	padding:26px 0 0 0;
	margin:0;
	height:100px;
	background-color:#FFFFFF;
	background-image:url(../images/bg_right.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	float:left;
}

#right_button {
	width:145px;
	padding:0;
	margin:0;
	visibility:hidden;
	display:none;
}

#right_container {
	width:145px;
	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;
	font-weight:bold;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:13px;
	text-align:center;
}

/*#right_container p {
	padding:75px 0;
}*/

.clr {
	clear:both;
}

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

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

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

#footer p {
	padding:5px 0;
}

/*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:#4C4B9C;
	font-family:Georgia, "Times New Roman", Times, serif;
}

h2 {
	padding:0;
	font-size:18px;
	font-weight:bold;
	color:#4C4B9C;
	font-family:Georgia, "Times New Roman", Times, serif;
	
}

h3 {
	padding:12px 0 9px 0;
	font-size:16px;
	font-weight:bold;
	color:#4C4B9C;
	font-family:Georgia, "Times New Roman", Times, serif;
	
}

h4 {
	padding:12px 0 6px 0;
	font-size:12px;
	font-weight:bold;
	color:#4C4B9C;
	font-family:Georgia, "Times New Roman", Times, serif;
	
}

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

h6 {
	padding:0;
	font-style:italic;
	font-size:11px;
	font-weight:bold;
	color:#4C4B9C;
	
}

h1.special {
	font-style:italic;
}

a {
	color:#0000FF;
}

a:hover {
	color:#FF0000;
}

ol {
	padding-top:0;
	margin-top:3px;
	padding-bottom:0;
	margin-bottom:9px;
}

.financial_list {
	font-weight:bold;
}


/*LIST STYLES*/

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

#content_container li {
	float:none;
	padding:0 0 0 0;
	margin:0 0 2px 0;
}
#content_container ul li ul {
	display:block;
}

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