/* **********************************
    2 Column Layout   
********************************** */
.twoColFixLt #container { 
	 position:relative;
	 margin:0px auto;
	 _width:100%; /* IE 6 sucks. */
	 max-width:898px;
}
.twoColFixLt #sidebar1 {
	float: left; 
	width: 159px;
	min-height:600px;
}
.twoColFixLt #maincontent { 
	float:right; 
	width:718px;
	min-height:600px;
	background-color:#FFFFFF;
	padding-right:10px;
	padding-left:10px;
	padding-bottom:5px;
	border-left:1px solid #999999;
}

/* **** Front Page Columns **** */
.twoColFixLt #fp_container { 
	 position:relative;
	 margin:0px auto;
	 _width:100%; /* IE 6 sucks. */
	 max-width:898px;
	 padding-top:5px;
}
.twoColFixLt #fp_sidebar1 {
	 float:left;
	 display:inline;
	 width:64%;
	 _width:63%;
	 margin:0px 0.5% 0px 0.5%;
}
.twoColFixLt #fp_content { 
	float:right; 
	width:35%;
	_width:34%;
	min-height:450px;
} 

/* **********************************
		3 Column Layout
********************************** */

.thrColLiq #container {
  width: 898px;  
  margin: 0 auto; 
  text-align: left;
}
.thrColLiq #sidebar1 {
  float: left;
  width: 159px;
  min-height:600px;
}
.thrColLiq #sidebar2 {
  float: right; 
  width: 240px;
  min-height:600px;
}
.thrColLiq #maincontent {
	float:left;
	width:470px;
	min-height:600px;
	background-color:#FFFFFF;
	border-left:1px solid #999999;
	border-right:1px solid #999999;
	padding-bottom:5px;
	padding-left:5px;
	padding-right:5px;
	padding-top:5px;
}

/* ******** Miscellaneous classes for reuse ******** */
/* 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. */
.fltrt { 
  float: right;
}
/* 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. */
.fltlft { 
  float: left;
}
/* 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 its child floats */
.clearfloat { 
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}