@charset "utf-8";
body  {
	background: #666666;
	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 */
	color: #000000;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10pt;
	font-weight: bold;
}
.twoColFixLtHdr #container {
	width: 950px; /* the auto margins (in conjunction with a width) center the page */
	border: thin solid #000000; /* this overrides the text-align: center on the body element. */
	background-color: #C00;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 9px;
	font-weight: normal;
	clear: none;
	float: none;
	height: 1000px;
} 
.twoColFixLtHdr #header {
	background: #DDDDDD;
	border: thin groove #999;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin: 1px;
	height: 163px;
	width: 927px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 9px;
	font-weight: normal;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 10pt;
	width: 944px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 127px;
	font-size: 9pt;
	background-color: #000;
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	border-top-style: groove;
	border-right-style: groove;
	border-bottom-style: groove;
	border-left-style: groove;
	margin-left: 0px;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: normal;
	margin-top: 2px;
	text-align: center;
	margin-right: 0px;
	margin-bottom: 0px;
	padding: 4px;
	clear: none;
}
.twoColFixLtHdr #mainContent {
	font-size: 9pt;
	background-color: #CCC;
	font-family: Tahoma, Geneva, sans-serif;
	color: #000;
	font-weight: normal;
	width: 788px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	border: thin solid #000;
	margin: 2px;
	float: left;
	clear: none;
	text-align: left;
} 
.twoColFixLtHdr #footer {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: x-small;
	color: #000;
	height: 60px;
	font-weight: bold;
	border: thin solid #000;
	width: 933px;
	padding: 5px;
	float: left;
	margin: 2px;
	background-color: #CCC;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: small;
	width: 937px;
	float: left;
	padding: 0px;
	background-color: #CCC;
}
.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;
}
.twoColFixLtHdr #container #mainContent table tr td p strong {
	color: #F00;
}
.red {
	color: #F00;
}
