.twoColFixLt #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	/** border: 1px solid #ded0bc; */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLt #sidebar1 {
	position: relative;
	float: left; /* since this element is floated, a width must be given */
	width: 301px; /* 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: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/** padding: 33px 0 0 0; */
	padding: 23px 0 23px 0;
	margin: 0;
	text-align: center;
}
.twoColFixLt #mainContent { 
	position: relative;
	width: 598px;
	height: auto;
	margin: 0 0 0 301px; 
	padding: 0;
	border-left: 1px solid #ded0bc;
}

