@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;
	font-family: Helvetica, sans-serif, "Times New Roman";
}
.twoColFixLtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #container p a  {
	color: #000;
	text-decoration: none;
}
.twoColFixLtHdr #container p a:hover {
	color: #00F;
	text-decoration: underline;
}
.twoColFixLtHdr #header {
	padding: 0;  /* 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 #container #header a #banner {
	margin: 0px;
	padding: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.twoColFixLtHdr #container #hr #banner_hr {
	border-top-width: medium;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000;
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.twoColFixLtHdr #sidebar1 {
	float: left;
	font-size: 1.25em;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 190px;
}
.twoColFixLtHdr #container #sidebar1 hr {
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
}
.twoColFixLtHdr #mainContent {
	margin-top: 25px;
	margin-right: 0%;
	margin-bottom: 0%;
	margin-left: 190px;
	padding: 0px;
	text-align: left;
} 
.twoColFixLtHdr #container #mainContent table tr td a img {
	border: thin solid #000;
}
.twoColFixLtHdr #container #mainContent img {
}
.twoColFixLtHdr #container #mainContent h1 {
	font-size: 1.5em;
	text-decoration: underline;
}
.twoColFixLtHdr #container #mainContent h2 {
	font-size: 1.25em;
	text-align: center;
}
.twoColFixLtHdr #container #mainContent h3 {
	text-decoration: underline;
}
.twoColFixLtHdr #container #mainContent table {
	font-size: 1em;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.twoColFixLtHdr #container #mainContent td{
	vertical-align: top;
	padding: 5px;
}
.twoColFixLtHdr #container #mainContent hr {
	border-top-width: medium;
	border-top-style: solid;
	border-top-color: #000;
	margin: 0px;
	padding: 0px;
}
.twoColFixLtHdr #footer {
	text-align: center;
	padding-top: 5;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 5;
} 
.twoColFixLtHdr #container #footer #footer_hr hr {
	margin-bottom: 10px;
	padding: 0px;
	border-bottom-width: medium;
	border-bottom-style: solid;
	border-bottom-color: #000;
}
.text_standout {
	color: #00F;
	text-decoration: underline;
}
.text_standout_2 {
	color: #F00;
}
.text_bold_underline {
	font-weight: bold;
	text-decoration: underline;
}
a img {
	color: #000;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
}
.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;
	line-height: 0px;
}
