.twoColFixRtHdr #container {
	width: 940px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 15px;
	margin-left: auto;
} 
.twoColFixRtHdr #header {
	height: 150px;
	padding-top: 12px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	} 
	
.twoColFixRtHdr #header .logo {
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 15px;
	} 
	
.twoColFixRtHdr #header .nav {
	height: 33px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 20;
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px;
	padding-top: 0;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 10px;
}
.twoColFixRtHdr #mainContent {
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 15px;
	padding-right: 20;
	padding-bottom: 10px;
	padding-left: 40px;
} 

.twoColFixRtHdr #footer { 
	padding: 20px 0 10px 55px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 

.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;
}
