 
 
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
}
 #container { 
	width: 1050px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #CCCCCC;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
 #header {
	background: #FEF478 url(none);
	padding: 0;
	height: 150px;
	width: 1050px;
	margin-top: 0px;
	border: thin solid #333333;
	position: relative;
} 
 #sidebar1 {
	float: left;
	width: 150px;
	background: #CCCCCC url(images/sidebar.gif);
	padding: 10px;
	border: thin solid #000000;
	height: 600px;
}
 #mainContent {
	float: left;
	width: 850px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	padding-top: 10;
	padding-bottom: 0;
	padding-right: 10px;
	padding-left: 10px;
	text-align: center;
	background-color: #CCCCCC;
} 
 #footer {
	background:#DDDDDD;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 20px;
	padding-left: 20px;
} 
 #footer p {
	margin: 0 0 0 160;
	padding: 10px;
	font-size: 80%;
}
.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;
}
#title {
	width: 550px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	float: right;
	margin-top: 10px;
}
#logo {
	float: left;
	height: 75px;
	padding-top: 15px;
}
#sidebar1 p {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-bottom: 5px;
}
#sidebar1 a:link, #sidebar1 a:visited {
	color: #313B56;
	text-decoration: none;
	background-color: #DEDFF1;
	display: block;
	padding: 5px;
	border: 1px solid #313B56;
}
#sidebar1 a:hover, #sidebar1 a:focus, #sidebar1 a:active {
	color: #FFFFFF;
	background-color: #313B56;
}
.style1 {font-size: 18px}
 
