@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: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	background-color: #FFFFFF;
}
p {
	margin-top: 0;
}
a {
	color: #000066;
}
a:hover {
	color: blue;  
	text-decoration: none; 
}
a:active { 
	color: green; 
}
img {
	margin-right: 10px;
	margin-left: 10px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

.oneColFixCtrHdr #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;
	text-align: left;
	border: 1px none #000000;
}
.oneColFixCtrHdr #header {
	padding: 0;
	text-align: center;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColFixCtrHdr #mainContent h1 {
	margin: 0;
	font-style: italic;
	color: #1B20BB;
	font-size: 200%;
	text-align: center;
	font-weight: bolder;
}
.oneColFixCtrHdr #mainContent h2 {
	margin: 0;
	color: #1B20BB;
	font-size: 150%;
	text-align: center;
	font-weight: bolder;
}
.oneColFixCtrHdr #mainContent h3 {
	margin: 0; 
	color: #000066;
	font-size: 125%;
	font-weight: bolder;
	text-align: center;
	margin-bottom: 10px;
}
.oneColFixCtrHdr #mainContent h4 {
	margin: 0; 
	margin-bottom: 0;
	font-weight: bolder;
	color: #000066;
}
.oneColFixCtrHdr #footer {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000066;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin-top: 10px;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	text-align: center;
	font-size: 80%;
}

.oneColFixCtrHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 300px;
	text-align: center;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
.oneColFixCtrHdr #secondContent {
	margin-top: 0;
	margin-right: 350px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
} 
.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;
}
.bluetext { 
	color: #006 
}
.redtext {
	color: #FF0000
}

.smallText {
	font-size: 85%;
}
