@charset "UTF-8";
/* CSS Document */

html, body
{
  height: 100%;
}

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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	font-family: "Times New Roman", Times, serif;
}

.twoColLiqLtHdr #container {
	width: 770px;  /* this will create a container 80% of the browser width */
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	background-image: url(images/body.gif);
	background-repeat:repeat-y;
	text-align: left;
}

.twoColLiqLtHdr #header { 
	background: #ffffff; 
	padding: 0 0px;  /* 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. */
} 
.twoColLiqLtHdr #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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColLiqLtHdr #content {
	background-image:url(images/body.gif);
	background-repeat:repeat-y;
}

.twoColLiqLtHdr #sidebar1 {
	float: left;
	min-height: 100%;
	zoom: 1; /* ie fix */
	position: relative;
	width: 200px; /* top and bottom padding create visual space within this div  */
	background-image: url(images/sidebarbg.gif);
}
.twoColLiqLtHdr #sidebar1 h3, .twoColLiqLtHdr #sidebar1 p {
	width:100%;
	height:100%;
	margin-left: 0px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0px;
}

.twoColLiqLtHdr #mainContent {
	width: 570px;
	float: right;
	height: 100%;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	background-image: url(images/bodybg.gif);
} 


.twoColLiqLtHdr #footer {
	padding: 0 0 0 0;
	background: #663333;
	width:770px;
	bottom: 0px;
	position: absolute;
} 

#footer p {
 margin: 0;
 padding: 0 0 0 0;
 color: #5c5a99;
 font-family: Georgia, "Times New Roman", Times, serif;
}

#footer ul {
 float: right;
}

#footer li {
 float: left;
}

#footer li a {
 display: block;
 padding: 10px;
 color: #5c5a99;
 text-decoration: none;
}

#footer li a:hover, #footer li a:active, #footer li
a:focus {
 color: #333333;
}

/* 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;
	
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	
}
.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;
}

.bodytext {
	font-family:"Times New Roman", Times, serif;
	font-size: 13px;
	color: #000000;
		}
		
.bodycontact {
		font-family:"Times New Roman", Times, serif;
		font-size: 16px;
		font-weight: bold;
		font-style: italic;
		color: #663333;
		}
		
.bodylist {
		font-family:"Times New Roman", Times, serif;
		font-size: 14px;
		color: #663333;
		}
		
li {
		font-family: "Times New Roman", Times, serif;
		font-size: 12px;
		color: #463636;
		}
		
ul {
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	color: #463636;
		}
		
a:link, a:visited {text-decoration: none; color: #463636;}

a:hover, a:active {
	text-decoration: underline;
	color: #CCC;
	position: relative;
	top: 1px;
}
