*CSS
html {width:900px;margin:0px;padding:0px;background-color:white;}
body  {
	background-color:#006699;
	margin: 0px; /* 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: #0C2577;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}
#billboard{
	width:468px;
	height:60px;
	margin-left: 40px;
}
#container {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0 px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: auto;
	background-color: #006699;
	background-image:url(ukeacontainer.jpg)
}
#leftside {
	float: left; /* since this element is floated, a width must be given */
	width: 240px;
	height: 1300px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #EAEAEA;
	border: thin solid #006699;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 30px;
}
#lefttext{padding:10px;}
#leftside h3{color:#333333;font:Verdana, Arial, Helvetica, sans-serif;}
#mainContent {
	margin-top: 0px;
	margin-right: 10;
	margin-bottom: 20;
	margin-left: 275px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	height: 1250px;
	width: 550px;
	
} 
.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 */
	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:0;
    font-size: 1px;
    line-height: 0px;
}
#footer{
	color:#000000;
	width:800px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 30px;
	height: 50px;
	margin-left: 30px;
	clear:both;
}

[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixLt #leftside { width: 230px; }
</style>
<![endif][if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixLt #sidebar1 { padding-top: 30px; }
.twoColFixLt #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]
