@charset "utf-8";
/* CSS Document */

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	background-image: url(../img/dblue071.jpg);
	background-repeat: repeat;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #6C0000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	vertical-align: middle;
	padding: 0px 10px 0px 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background: #FFFFFF;
}
#header h1 {
	margin: 0px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#main   {
	background-color: #FFFFFF;
	background-image: url(../img/truck_left30trans.png);
	background-repeat: no-repeat;
	background-position: 35px 200px;
	height: 500px;
	overflow-y: scroll;
	width: 780px;
}
#right {
	width: 190px;
	float: right;
	clear: left;
	height: 250px;
	border-right: 1px dotted #CCCCCC;
	font-size:12px;
}
#content {
	padding: 0px 10px;
	float: left;
	width: 540px;
	clear: left;
}
#footer {
	margin-top: 10px;
	padding: 0 10px 3px;
	width: 760px;
	clear: left;
	text-align: center;
}

#footer p {
	margin: 0px;
	padding: 0px 0px 5px;
	font-size: 10px;
}
#footer a { color: #FFFFFF; }
h1 {
	text-transform: capitalize;
	margin: 0px;
	font: 24px Arial;
	border-bottom: 1px dotted #000000;
	}
h2 {
	line-height: 20px;
	margin: 10px 0px 2px;
	border-bottom: 1px dashed #000000;
	float: left;
	padding-right: 10px;
	padding-left: 2px;
	text-transform: capitalize;
	padding-bottom: 5px;
	}
h3 {
	font: italic bold 18px Arial;
	text-transform: capitalize;
	text-align: left;
	margin: 0px;
	}
h4 {
	line-height: 20px;
	margin: 5px 0px 2px;
	border-bottom: 1px dotted #000000;
	float: left;
	text-transform: capitalize;
	padding: 0px 0px 2px 2px;
	}
h5 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:bold;
	}