@charset "utf-8";
body  {
	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: justify; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFF00;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000000;
	white-space: normal;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}
.twoColFixLt #container {
	border: 0px solid #000000; /* this overrides the text-align: center on the body element. */
	background-color: #000000;
	padding: 0px;
	margin: 0;
	color: #FFFF00;
	clear: left;
}
.twoColFixLt #sidebar1 {
	float: left; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	color: #FFFF00;
	background-color: #000000;
	text-align: center;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	width: 160px;
	background-repeat: repeat-y;
}
.twoColFixLt #mainContent {
	margin: 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #FFFF00;
	background-color: #000000;
	text-align: left;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	float: right;
} 
.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: auto;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin: auto;
}
.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;
	color: #000000;
	background-color: #000000;
}

