@charset "UTF-8";
#container  {
	width: 387px;
	margin: 50px auto 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#sidebar1  {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB;
	display: inline;
}
#mainContent  {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 387px;
	margin: 0;
	display: inline;
	float: left;
} 
#header {
}
#footer {
}
.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;
}
