@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 */
	color: #000000;
	background-color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
}
.twoColFixLtHdr #container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	overflow: hidden;
} 
.twoColFixLtHdr #header {
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	height: 145px;
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 125px;
	background-color: #FFFFFF;
	background-image: url(images/left_bg.jpg);
	background-repeat: repeat-y;
	background-position: top;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: -10000px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10000px;
	padding-left: 0px;
}
.twoColFixLtHdr #mainContent {
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 145px;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	float: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	width: 800px;
	line-height: 1.2em;
} 
.twoColFixLtHdr #mainContent p {
	font-size: 0.9em;
}
.twoColFixLtHdr #mainContent td {
	font-size: 0.9em;
}
.twoColFixLtHdr #mainContent h1 {
	color: #46A8A7;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	padding-top: 15px;
	margin: 0px;
}
.twoColFixLtHdr #mainContent h2 {
	color: #46A8A7;
	font-size: 1.2em;
}
.twoColFixLtHdr #footer {
	background-color: #FFFFFF;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0;
	margin-left: 145px;
	padding-left: 0px;
} 
.twoColFixLtHdr #footer a {
	color: #46A8A7;
}
.twoColFixLtHdr #footer p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #46A8A7;
	text-align: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
.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: 35px;
	margin-bottom: 35px;
	border-right-width: 2px;
	border-right-style: none;
	border-right-color: #46A8A7;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.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;
}
.greenText {
	color: #46A8A7
}

