﻿@charset "utf-8";
html, body {
	background: #666666;
	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;
	height:100%; /* NEW code to make the footer stay at the bottom */
	font-size: 10pt;
	font-family: Verdana, Geneva, sans-serif;
}
.oneColLiqCtrHdr #container {
	width: 100%;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-height:100%; /* NEW code to make the footer stay at the bottom */
    position:relative; /* NEW code to make the footer stay at the bottom */
}
.oneColLiqCtrHdr #header {
	background: #63B047;
	background-image:url(green_gradient.jpg);
	background-position:left;
	background-repeat:repeat-y;
	height:110px;
	padding: 0 0px 0px 10%;  /* 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. */
}
.oneColLiqCtrHdr #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 */
}

.oneColLiqCtrHdr #mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	padding-bottom:17px;   /* NEW code for footer - Height of the footer */
}

#window {
	width:80%;
	height:100%;
	margin-left: 10%;
	margin-top: 40px;
}

.textcontainer {
	left: 0;
	right: 0;
	}

#imagewindow{
	width: 500px;
	float: right; 
}

#image1{padding: 0 20px 20px;
clear:right;}

#image2{padding: 0 20px 20px;
clear:right;}

.line{
	width: 100%;
	height: 6px;
	background: #63b047;
	background-image:url(line.jpg);
	background-position:center;
	background-repeat:repeat-y;
	float: left;
	padding: 0px 0px 0px 0px;
	font-size: 4pt;
}

.oneColLiqCtrHdr #footer { 
	

	float:left;
	padding: 0px 0px 0px 0px; 
	background: #63b047;
		
   position:absolute;/* NEW Code to make footer stay at bottom */
   bottom:0; /* NEW  */
   width:100%; /* NEW  */
   height:17px;   /* NEW Height of the footer */
   clear:left;
background-image:url(line.jpg);
	background-position:center;
	background-repeat:repeat-y;
	
	
}
#logobox{
	float:left;
	width:260px;
	height:106px;
	margin:0px 0px 0px 0px;
	background-image: url(eastern_waste_disposal_logo.jpg);
	background-position:left;
	background-repeat:no-repeat;
}

#footertext{
	float:left;
	padding: 0px 0px 0px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size: 8pt;
	color: #FFF;
	}
	
a:link {text-decoration: none;color: #63b047;}
a:visited {text-decoration: none;color: #63b047;}
a:hover {text-decoration: none;	color: #a3d395;}
a:active {text-decoration: none;color: #a3d395;}
