body {
	font-family: "Lucida Grande", Geneva, Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	background-color: #666666;
	background-image: url(../images/background.png);
	background-repeat: repeat-x;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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 */
}
.oneColFixCtrHdr #container {
	background-image: url(../images/bg_content.png);
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background-image: url(../images/header.png);
	height: 85px;
	padding-top: 0px;  /* 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 #navigation {
	height: 57px;
}
.oneColFixCtrHdr #breadcrumb {
	font-size: 90%;
	background-image: url(../images/navpath.png);
	height: 35px;
	text-align: left;
	text-indent: 125px;
	vertical-align: middle;
}
.oneColFixCtrHdr #mainContent {
	margin-left: 30px;
	margin-right: 30px;
	min-height:350px;
	height: auto !important;
	height: 350px;
}
.oneColFixCtrHdr #footer {
	background-image: url(../images/footer.png);
	background-repeat: no-repeat;
	height: 86px;
	color: #ffffff;
	font-size: 75%;
	text-align: center;
}
.oneColFixCtrHdr #footer p {
	padding-top: 15px;
}
a:link {
	color: #0e00e9;
	text-decoration: none;
}
a:visited {
	color: #0e00e9;
	text-decoration: none;
}
a:hover {
	color: #E13A3E;
	text-decoration: underline;
}
.pagetitle {
	font-size: 170%;
	font-weight: bold;
	color: #324690;
	font-variant: small-caps;
}
.form_label {
	font-size: 90%;
	font-weight: bold;
}
.body_table_row {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	padding: 4px;
}
.body_table_row_header {
	font-size: 90%;
	background-color: #324690;
	color: #ffffff;
	padding: 5px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-weight: bold;
}
.content_small {
	font-size: 95%;
}
.big_name {
	font-size: 130%;
	font-weight: bold;
}
.alternate_row_header {
	font-size: 90%;
	background-color: #324690;
	color: #ffffff;
	padding: 5px;
	font-weight: bold;
}
.alternate_row_footer {
	color: #ffffff;
	font-size: 90%;
	text-align:right;
	background-color: #3e6bb3;
	padding: 5px;
}
.alternate_row_footer a:link {
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
}
.alternate_row_footer a:visited {
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
}
.alternate_row_footer a:hover {
	color: #ffffff;
	text-decoration: underline;
	font-weight: bold;
}
.alternate_row_1 {
	background-color: #f2f2ff;
	padding: 4px;
}
.alternate_row_2 {
	background-color: #dbe4ff;
	padding: 4px;
}
.section_divider {
	font-size: 120%;
	color: #333333;
	border-bottom-style: dotted;
	border-bottom-color: #006600;
	width: 99%;
	border-bottom-width: thin;
	font-weight: bold;
}
.validation_error {
	background-color: #FFFFD5;
	text-align: left;
	width: 400px;
	border: thin solid #DD9988;
	color: #990000;
	padding: 10px;
	margin-left: 1px;
}
.expired_class {
	background-color: #FFFFD5;
	text-align: left;
	width: 225px;
	border: thin solid #DD9988;
	color: #990000;
	padding: 10px;
	margin-left: 1px;
}
.box_header_550 {
	background: url(../images/background_box.gif);
	border: 1px #a1a5a9 solid;
	font-size: 95%;
	font-weight: bold;
	padding: 5px;
	width: 550px;
}
.box_content_550 {
	background-color: #f4f4f4;
	font-size: 95%;
	padding: 5px;
	width: 550px;
	border-left-color: #a1a5a9;
	border-right-color: #a1a5a9;
	border-bottom-color: #a1a5a9;
	border-left-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
}
.google_results iframe
{
	width:99%;
}

/* Miscellaneous classes for reuse */
.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. The floated element must precede the element it should be next to on the 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;
}