@charset "utf-8";
body {
	background: #ffffff;
	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: #5b5b5b;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10pt;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left;
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border: 1px solid #888888;
}
.oneColFixCtrHdr #header {
	background: #FFFFFF;
	padding: 10px 10px 0 20px;  /* 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: 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#mainContent p {
	margin: 0px;
	padding: 0px;
}
#mainContent table tr th {
	text-align: left;
}
#mainContent table tr td {
	vertical-align: top;
}


.oneColFixCtrHdr #footer {
	padding: 6px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#dee7ec;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10pt;
	text-align: center;
}
.oneColFixCtrHdr #footer p {
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#hbar {
	background-color: #dee7ec;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #8cacbb;
	border-right-color: #8cacbb;
	border-bottom-color: #8cacbb;
	border-left-color: #8cacbb;
	padding-top: 0em;
	padding-right: 2em;
	padding-bottom: 0.1em;
	padding-left: 0em;
	line-height: normal;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#hbar ul {
	padding: 0px 20px;
	margin: 0;
}
#hbar li {
	font-size: 11pt;
	font-family: Tahoma, Geneva, sans-serif;
	display: inline;
	margin-right: 2em;
}
h1 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 18pt;
	color: #103a77;
	font-weight: normal;
}
h2 {
	font-weight: normal;
	font-size: 15pt;
	color: #103a77;
}
h3 {
	color: #103a77;
	font-size: 13pt;
	font-weight: normal;
}
table h3 {
	margin: 0px;
	padding: 0px;
}



a {
	text-decoration: none;
	color: #103a77;
	background-color: transparent;
}

a:hover {
	text-decoration: underline;
}
