@charset "utf-8";
body  {
	font: small/115% Verdana, Arial, Helvetica, sans-serif;
	background: #343434;
	margin: 0 0 0 50px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #CCCCCC;
}
.bd_08 #container {
	width: 900px;
	margin: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
}

.bd_08 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 262px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 20px 0px 0px;
	margin: 0px;
}
.bd_08 #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 */
	border-left: 20px solid #343434;
} 
.main {
	padding: 10px 20px;
	font-size: small;
	background: #000000;
	border-left: 20px solid #343434;
}

.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;
}
a:link {
	color: #2776BC;
	text-decoration: none;
}
a:visited {
	color: #2776BC;
	text-decoration: none;
}
a:hover {
	color: #343434;
}
h1 {
	font-size: 12px;
	font-weight: bold;
}
#copyright a {
	color: #666666;
}
#copyright a:hover {
	color: #999999;
}
#copyright {
	font-size: x-small;
	color: #666666;
	clear: both;
	float: left;
	width: 100%;
	text-align: right;
	padding: 10px;
}

