body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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 */
}
.twoColLiqLtHdr #container {
	width: 88%;
	margin: 0 auto;
	text-align: left;
	height: 135px;
} 

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqLtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.twoColLiqLtHdr #leftbar {
	float: left;
	width: 33%; /* top and bottom padding create visual space within this div  */
	font-family: Candara;
	font-size: 20px;
	margin-left: 80px;
}
.twoColLiqLtHdr #leftbar h3, .twoColLiqLtHdr #sidebar1 p {
}

/*mainContent:
to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.twoColLiqLtHdr #rightbar {
	float: right;
	width: 35%; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	font-family: Candara;
	font-size: 20px;
	margin-right: 125px;
	text-align: 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;
}
#container #leftbar h3 {
	font-size: 32px;
	font-family: "Tw Cen MT";
	font-weight: lighter;
}
#mainContent .main.title {
	font-family: "Tw Cen MT";
	font-size: 32px;
	font-weight: lighter;
	padding-top: 11px;
}
.title {
	font-family: "Tw Cen MT";
	font-size: 32px;
	font-weight: lighter;
	text-align: center;
}
 
[if IE]>
/* place css fixes for all versions of IE in this conditional comment */
.twoColLiqLtHdr #sidebar1 { padding-top: 30px; }
.twoColLiqLtHdr #mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
	
div.scroll {
}

a:link {
	text-decoration: none;
	color: #36F;
}
a:visited {
	text-decoration: none;
	color: #F93;
}
a:hover {
	text-decoration: none;
	color: #F36;
}
a:active {
	text-decoration: none;
	color: #F03;
}
