@charset "utf-8";
/* CSS Document */
body  {
	font: "Times New Roman", Times, serif;
	background: #BFD4FF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
	font-size:12pt;
}
#printHeader {
	background-color: #FFF;
}
#container { 
	background: #FFFFFF;
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	width: 100%;
} 
#header img {
	display: none;
}
#nav {
	display: none;
}

#sidebar1 {
	display: none;
}

#mainContent {
	width: 100%;
	margin: 0;
	padding: 0;
} 
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #80AAFF; 
} 
.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;
	padding: 0 0 10px 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	padding: 0 10px 10px 0;
}
.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;
}
