@charset "UTF-8";
/* CSS Document */

<html>
<head>
	<title>CSS Example</title>
	
	<link rel="stylesheet" type="text/css" href="web.css" />

body  {
	background: #ffffff;
	margin: 0px; 
	padding: 0;
	text-align: center; 
	
}
.twoColLiqLt #container {
	width: 88%;
	min-width: 900px;
	max-width: 1250px;
    width:expression(document.body.clientWidth < 900? "900px" : document.body.clientWidth > 1250? "1250px" : "auto");
	height: 100%;
	background: #FFFFFF;
	border: 1px none #000000;
	text-align: left; 
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

.twoColLiqLt #sidebar1 {
	float: left;
	width: 90px;
	height: 700px;
	background: #ffffff;
	padding-top: 30px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	margin-left: 5px;
	font-family: "Times New Roman", Times, serif;
	font-size: 10px;
	text-decoration: none;	
}

.twoColLiqLt #mainContent {
	width: 900px;
	height: 110%;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0;
	margin-left: 15%;
	zoom: 1;
	padding-top: 15px;
	
} 
	
.clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
a {
	font-size: 10px;
	color: #000000;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #000000;
}
a:hover {
	text-decoration: none;
	color: #000000;
}
a:active {
	text-decoration: none;
	color: #000000;
}
--> 
</style>
<!--[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.twoColLiqLt #sidebar1 { padding-top: 30px; }
.twoColLiqLt #mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->