body  {
	font: 80% Georgia, "Times New Roman", Times, serif;
	background: #FFFFE8 url(../images/index07_bg.gif) top 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;
}
/* links */
a, a:visited {
	color: #FFFFE8;
	text-decoration: none;
}
a:hover {
	color: #574839;
	border-bottom: 0px solid #FFFFE8;
}
.twoColLiqRtHdr #container {
	width: 800px;  /* this will create a container 80% of the browser width */
	background: #A8937E;
	margin: 0 auto;
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColLiqRtHdr #header {
	position: relative;
	background: #FFFFE8 url(../images/index07_bg.gif) repeat-x top;
	padding: 0px;
	height: 95px;
}

.twoColLiqRtHdr #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 */
}

.twoColLiqRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: auto; /* the background color will be displayed for the length of the content in the column, but no further */
	margin:0;
	padding:0;
}
.twoColLiqRtHdr #sidebar1 h3, .twoColLiqRtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.twoColLiqRtHdr #mainContent {
	margin: 0 0 0 10px; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	min-height:365px;
} 
.twoColLiqRtHdr #mainContent h1, h2 {
	color: #FFFFE8;
	font: normal 1.6em Georgia, "Times New Roman", Times, serif;
	margin:0 0 0 5px;
} 
.twoColLiqRtHdr #mainContent a {
	color: #FFFFE8;
} 
/* Navigation */
.twoColLiqRtHdr #nav-wrap {
	position: relative;
	clear:both;
	background: #A8937E;
	padding: 0 10px;
	height:100px;
}
#nav-wrap h1#logo {
	position: absolute;
	margin: 0;
	padding: 0;
	color: #FFFFFF;
	top: 0px;
	left: 10px;
	font-size:90%;
	font-weight:normal;
	text-align:center;
}
#nav-columns {
	color: #888;
	margin: 0 auto;
	padding: 0;
	width: 780px;
}
#nav-columns ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#nav-columns li a {
	display: block;
	font-weight: normal;
	padding: 1px 0 5px 5px;
	width: 96%;
}
#nav-columns .col2 {
	float: right;
	width: 19%;
}
#nav-columns .col3 {
	float: right;
	width: 26%;
}
/* end Navigation */

/* 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. The floated element must precede the element it should be next to on the 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:20px;
	font-size: 1px;
	line-height: 0px;
}

