@charset "utf-8";
body  {
	background: #FFFFFF url(images/darkwash.jpg) repeat-x;
	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: justify; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	/*I added this*/
	position: absolute;
	min-height:100%;
	height:100%;
	width: 100%;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: normal;
}

html>body {
	height:auto;
}

.sea #container {
	width: 960px;  /* this will create a container 80% of the browser width */
	background: url(images/waterdamagemenu8.jpg) no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #FF0000;
}
.sea #menubar {
	width: 960px;
	height: 45px;
	margin: 0 auto;
}
.sea #header {
	background: #FFFFFF url(images/worn-border.jpg) repeat-x;
	padding: 0 10px;
} 
.sea #header h1 {
	margin: 0; /* 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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.sea #mainContent {
	margin: 145px 45px 0 255px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
	width: 660px;
	padding-bottom: 0px;
	height: 470px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: 133%;
}
.sea #mainContentimage {
	margin: 125px 0 0 225px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
	width: 735px;
	padding-bottom: 10px;
	height: 460px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: 133%;
} 
.sea #footer {
	padding: 3px 10px 120px;
} 
.sea #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 80%;
}
.sea #contactform {
	margin: 145px 75px 0px 0px;
	width: 660px
}
/* Miscellaneous classes for reuse */
.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;
}
#bodybg  {
	background: url(images/planks12a.jpg) repeat-x;
	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;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#logo{
	display: block;
	margin: 0 auto;
	padding-bottom: 30px;
	border: 0;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
	#content{
	float:left;
	width:680px;
}
.sea #bottom{
	margin: auto;
	background-position: center bottom;
	display: block;
	vertical-align: bottom;
	background-repeat: repeat-x;
	background-image: url(images/bottomfeeder.jpg);
	/*I added this*/
	position: absolute;
	bottom: 0px;
	left:0px;
	width:100%;
	padding-top: 10px;
	height: 139px;	
	}
	#dweller /* This is whatever box you want to pin to the bottom of the screen. */
{
	position:absolute; /* Allows you to set the exact position of the element */
	bottom:0; /* Sets the absolute position of the element 0 pixels from the bottom of the parent, which should be the body */
	width:100%; /* Absolutely positioned things shrink as slim as they can get, so you need to explicitly set the width to whatever you want it to be */
	height: 139px; /* You don't have to set an explicit height, but you need to know how tall this box will get */
}
.sea h1 {
	font-size: 150%;
	font-family: Georgia, "Times New Roman", Times, serif;
}
.sea h2 {
	font-size: 21px;
	color: #000099;
}
.sea h3 {
	font-size: 33px;
	color: #000099;
	text-align: center;
}	
.sea h4 {
	font-size: 16px;
	color: #FFFFFF;
	text-align: left;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.sea h5 {
	font-size: 24px;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 29px;
	margin: 0;
}
.sea h6 {
	font-size: 180%;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 90%;
	margin: 0;
}
