@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: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background: white;
	border: 0;
}
.twoColFixLtHdr #container { 
	width: 74%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: white;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding:0;
	float: none !important;
	border:0;
	text-align: justify; /* this overrides the text-align: center on the body element. */
}
.twoColFixLtHdr #mainContent {
	font:"Times New Roman", Times, serif;
	font-size:12pt;
	margin:0;
	padding:0;
}

.twoColFixLtHdr #header {
	display:none;   /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 


.twoColFixLtHdr #sidebar1 {
	display:none;
}

.twoColFixLtHdr #sidebar1 h3{
	display:none;
}


.twoColFixLtHdr #sidebar1 ul li{
	display:none;
}

.twoColFixLtHdr #sidebar1 ul li a{
display:none;
}


.twoColFixLtHdr #mainContent h1 {
	padding: 30px 0;
	text-align: center;
	font-size: 120%;
}
.twoColFixLtHdr #footer { 
	display:none; 
} 

.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. */
	display: none;
}
.fltlft { /* this class can be used to float an element left in your page */
	display: none;
}
.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 */
	display: none;
}
