@charset "UTF-8";/* CSS Document */* { margin:0; padding: 0; }body  {	font: 100% Verdana, Arial, Helvetica, sans-serif;	background: #660000;	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */	color: #000000;}#containtop {	width: 730px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */	background: url(images/wrapper_top.jpg) no-repeat top;	height: 18px;}#container {	width: 730px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */	background: #FFFFFF url(images/wrapper_mid.jpg) repeat-y;	margin: 0 auto;	text-align: left; /* this overrides the text-align: center on the body element. */} #header {	padding: 0 0px;	background-image: url(images/header_top.jpg);	background-repeat: no-repeat;	background-position: top;	margin-left: 30px;	height: 80px;	margin-top: 12px;	margin-bottom: 0px;	background-color: #F0ECCF;	margin-right: 0px;	width: 670px;} #header h1 {	padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */	background-image: url(images/MorganBros_nameplate_marooned.jpg);	background-repeat: no-repeat;	background-position: left top;	color: #860000;	height: 73px;	width: 237px;	margin-top: 3px;	text-indent: -1000px;	float: left;	margin-left: 10px;}#header p {	text-align: right;	font-family: Verdana, Arial, Tahoma, "Trebuchet MS", Helvetica, sans-serif;	font-size: 12px;	padding-right: 20px;	padding-top: 4px;	background-image: url(images/header_bot.jpg);	background-repeat: no-repeat;	background-position: bottom;	height: 76px;	line-height: 24px;}#header p .descrip {	font-size: 12px;	font-family: Arial, Helvetica, sans-serif;}#sidebar1 {	float: left; /* since this element is floated, a width must be given */	width: 350px; /* the background color will be displayed for the length of the content in the column, but no further */	margin: 15px 10px 5px 30px;	height: 500px;}#mainContent {	margin: 15px 0 0 375px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	color: #F2EBD0;	font-family: Verdana, Arial, Tahoma, "Trebuchet MS", Helvetica, sans-serif;	font-size: 14px;}#mainContent p {	padding-bottom: 1em;	line-height: 1.5em;}#mainContent p a {	color: #B1995F;	}#mainContent p a:hover {	color: #660000;	text-decoration:none;}#homebox {	background-image: url(images/homebox_mid.jpg);	background-repeat: repeat-y;	font-family: Verdana, Arial, Tahoma, "Trebuchet MS", Helvetica, sans-serif;	font-size: 12px;	color: #262626;	padding: 0px;	width: 304px;	margin: 0px;}#homebox h2 {	background-image: url(images/homebox_top.jpg);	background-repeat: no-repeat;	background-position: top;	padding-top: 15px;	padding-right: 15px;	padding-left: 15px;}#homebox p {	background-image: url(images/homebox_bot.jpg);	background-repeat: no-repeat;	background-position: bottom;	padding-top: 10px;	padding-right: 30px;	padding-bottom: 15px;	padding-left: 30px;}#footer {	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */	background:url(images/wrapper_bot.jpg) no-repeat bottom;	text-align: center;} #footer p {	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */	padding-top: 5px;	padding-bottom: 5px;	padding-left: 0;}.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */	float: right;	margin-left: 8px;}.fltlft { /* this class can be used to float an element left in your page */	float: left;	margin-right: 8px;}.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */	clear:both;    height:0;    font-size: 1px;    line-height: 0px;}
