@charset "utf-8";
* {
	padding : 10;
	margin : 0;
} 
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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #008000;
	font-family : Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.oneColLiqCtrHdr #container {
	width: 1000px;  /* this will create a container 80% of the browser width */
	text-align: left;
	margin: 0 auto;
	margin-top: 10px;
}
.oneColLiqCtrHdr #header {
	background: #c2e1c2;
	height: 51px;  /* 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 */
	font-size : 30px;
	color : #339933;
	
}

.oneColLiqCtrHdr #mainContent {
	background: #FFFFFF;
	margin-top: 10px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
.oneColLiqCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
	border-color: black;
	border-top-style: solid;
	border-top-width: thin;
} 
.oneColLiqCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	
	text-align:center;
}
.oneColLiqCtrHdr #container #mainContent p {
	padding-bottom: 12px;
}



/*????? image*/
img.floatTLT {
	float : left;
	margin-right : 0.3em;
	margin-top : 0;
} 
.oneColLiqCtrHdr #header img {
	padding : 0px;
	border : 0;
}
.wraptext {
	float:left;
	border: 0px solid #000000; 
	padding: 5px;
	margin:3px;
}

/*positions picutues right and allows text close to left edge of picture*/
.wraptextright {
float:right;
padding-left:15px;
padding-bottom:15px;
}
.oneColLiqCtrHdr #container #mainContent #news a {
	float: left;

}

