@charset "utf-8";
body  {
	font: 100% Tahoma, Geneva, sans-serif;
	background: #000 url(img/_bg.jpg) no-repeat fixed left top;
}
.twoColFixRtHdr #container { 
 	background: url(img/_mc_bg.png) repeat-y center top;
	width: 900px;
	margin: auto;
} 
.twoColFixRtHdr #header { 
	border-style: none;
	text-align: center;
	padding: none;
	height: 285px;
	width: 900px;
} 
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 235px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 10px 20px 20px; /* padding keeps the content of the div away from the edges */
	color: #fff;
	text-align: center;
	background: url(img/_sb1_bgR.png) no-repeat left bottom;
}
.twoColFixRtHdr #mainContent {
	padding: 1px 285px 1px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: transparent;
	border: none;
	color: #f2f2f2;
} 
.twoColFixRtHdr #footer {
	padding: 0px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
	color: #CCC;
} 
.twoColFixRtHdr #footer p {
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 14px;
}
img {
	border:none;
	margin: 0px;
}
.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;
}
