@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: #000099;
	background-image: url(images/bgdark.png);
	font-family: Trebuchet, "Trebuchet MS" , Kartika, "Lucida Sans";
	font-size: 14px;
}
.oneColFixCtrHdr #container {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #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. */
}
.oneColFixCtrHdr #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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 30px;
	background-color: #FFFFFF;
	background-image: url(images/rgtbg.png);
	background-repeat: repeat-y;
	margin: 0px;
}
.oneColFixCtrHdr #mainContent h1{
	color: #990000;
}
.oneColFixCtrHdr #mainContent h2{
	color: #990000;
}
.oneColFixCtrHdr #mainContent h3{
	color: #990000;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.oneColFixCtrHdr #mainContent p{
	margin-top: 0px;
}
.oneColFixCtrHdr #container #mainContent .bottomTxt {
	margin-bottom: 0px;
	font-size: 80%;
	letter-spacing: .25em;
	text-align: center;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px 0 20px;
	color: #FFFFFF;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	color: #FFFFFF;
	text-align: center;
}
.oneColFixCtrHdr #footer a:link {
	color: #FFFFFF;
	text-decoration: none;
}
.oneColFixCtrHdr #footer a:visited {
	text-decoration: none;
	color: #CCCCCC;
}
.oneColFixCtrHdr #footer a:hover {
	text-decoration: none;
}
.oneColFixCtrHdr #footer a:active {
	text-decoration: none;
}
.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;
	margin-top: 5px;
	margin-bottom: 5px;
	border: 1px solid #0000FF;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-top: 5px;
	margin-bottom: 5px;
	
}
.oneColFixCtrHdr form div {
	margin: 0 0 0.25ex 1em;
	clear: left;
}
.oneColFixCtrHdr label {
	width: 6em;
	display: block;
	float: left;
	font-weight: bold;
	padding-right: 1.5em;
}
.oneColFixCtrHdr div.actions {
	margin-left: 6em;
	padding-left: 2.5em;
}
.oneColFixCtrHdr fieldset {
	width: 25em;
}
.textBold {
	font-weight: bold;
	color: #990000;
}
