@charset "utf-8";
body  {
	background: #FFFFFF;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #C60;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}

h1 {
	text-size: 20px;
	font-size: 18px;
	color: #000000;
	font-family: "Lucida Sans Unicode", Arial, sans-serif;
	font-weight: 300;
}

.twoColFixRtHdr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* this overrides the text-align: center on the body element. */
	font-size: 10px;
	border-top: none #000000;
	border-right: none #000000;
	border-bottom: none #000000;
	border-left: none #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.twoColFixRtHdr #header {
	background: #FFFFFF;
	padding: 0 10px 0 20px;
	clear: both;
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0;
}



.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 100px; /* 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;
	margin-top: 25px;
	clear: both;
	color: #C60;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
}
.twoColFixRtHdr #mainContent {
	margin-right: 0px;
	font-size: 12px;
	color: #000;
	margin-top: 30px;
	word-spacing: 3px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	font-style: normal;
	height: 700px;
	overflow: auto;
	width: 660px;
} 
.twoColFixRtHdr #footer {
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	color: #666666;
	padding-top: 30px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	width: 600px;
	line-height: 14px;
} 
.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;
}

#menu {
	float: right;
	margin-top: 3px;
	margin-right: 5px;
}

#logo {
	float: none;
}

#h1 {
	text-size: 12px;
}
