#center { /*This is what makes the website center in the window*/
	width:614px; /*This needs to be the maximum width of the website. This is determined by the graphic.*/
	margin:0 auto;
	padding:0;
}

body {
	margin:10px 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:#A4615B;
	color:#8B4854;
}

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

#head_container {
	width:614px;
	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;
	height:165px;/*Will be determined by the graphic*/
	background-image:url(../images/bg_header.jpg);
	background-position:top left;
	background-repeat:no-repeat;
}

#header_flash {
	width:614px;
	padding:0;
	margin:0;
	height:108px;
}

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

#menu { /*all other menu styles should be on the menu style sheet*/
	width:451px;
	padding:19px 0 0 0;/*130px 0 0 70px;This positions the menu horizontally within the header div. This should not exceed the height of the div.*/
	margin:0;
	float:left;
	text-align:center;
	font-size:11px;
}

#content_container {
	width:614px;
	padding:0;
	margin:0;
}

#left_container {
	width:163px;
	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;
	float:left;
}


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

#content {/*The width, padding, margin, and border should equal the width of the middle container div.*/
	width:427px;
	padding:10px 12px 0 12px;/*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 0 0px 0 !important;
	margin:0;
	text-align:left;	
}

.clr {
	clear:both;
}

#footer {
	width:614px;
	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;
	height:146px;
	background-color:#A4615B;
	background-image:url(../images/bg_footer.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	color:#FFFFFF;
	font-size:10px;
}

#footer_subsidaries {
	width:163px;
	padding:0;
	margin:0;
}

#footer_oshkosh {
	width:163px;
	padding:0;
	margin:0;
}

#footer_derby {
	width:163px;
	padding:0;
	margin:0;
}

#footer_text {
	width:614px;
	padding:30px 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;	
}

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

p {
	padding:0 0 18px 0;
}

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

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

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

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

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

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

a {
	color:#8B4854;
}

a:hover {
	color:#822F2F;
}

ul{
padding-top:0;
margin-top:0;
padding-bottom:0;
margin-bottom:0;
}

li {
	padding-bottom:3px;
}
img.left {
	float:left;
	padding-right:5px;
	padding-bottom:5px;

}

img.right {
	float:right;
	padding-left:14px;
	padding-bottom:5px;

}

span.highlight {
font-weight:bold;
color:#732434;
}