@charset "UTF-8";

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #FFFFFF;
	background-image: url(images/headstripe.gif);
}

.style1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 16px;
	font-weight: bold;
}

.style4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
}

.oneColFixCtrHdr #container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 100%;
	background: #d5e6f1;
	background: url(images/headstripeblu.gif);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left;
	min-height: 100%;
	vertical-align: middle;
	}

.oneColFixCtrHdr #header {
	margin: 0;
	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. */
	height: 11.25em;
	width: 760px;
	border-left: #a3a3a5 1px solid;
	border-right: #a3a3a5 1px solid;
	background-image: url(images/header.gif);
	background-repeat: no-repeat;
}

.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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.oneColFixCtrHdr #navtab {
	padding: 0;
	vertical-align: text-bottom;
	text-decoration: none;
	text-align: right;
	text-decoration: none;
	color: #808285;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}

.oneColFixCtrHdr #navtab a:link {
	text-decoration: none;
	color: #808285;
	font-family:  Verdana, Arial, Helvetica, sans-serif;
}

.oneColFixCtrHdr #navtab a:hover {
	text-decoration: none;
	color: #808285;
	font-family:  Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}

.oneColFixCtrHdr #navtab a:active {
	text-decoration: none;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.oneColFixCtrHdr #navtab a:visited {
	text-decoration: none;
	color: #808285;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}	

.oneColFixCtrHdr #mainContent {
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #D5E6F1;
	overflow: auto;
	width: 740px;
	margin: 0;
	border-left: #a3a3a5 1px solid;
	border-right: #a3a3a5 1px solid;
	font-size: 16px;
	font-weight: bold;
}

.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	height: 18.75em;
	background-image: url(images/footerbgd.gif);
	width: 742px;
}

.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 */
}

.oneColFixCtrHdr #ftcontain {
	width: 762px;
	min-height: 100%;
	background-image: url(images/ftbf.gif);
}

#icontent {
	border: none;
	width: 760px;
	min-height: 300px;
	background: #FF0000;
	overflow: hidden;
}


