@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: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.3;
	background-color: #FFF;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #F90;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 500px;
	margin-left: auto;
}
.oneColFixCtrHdr #header {
	background: #FFFFFF;  /* 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. */
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 20px;
	padding-bottom: 30px;
	font-weight: bold;
}
.imglogo {
	float: left;
	padding-right: 60px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.oneColFixCtrHdr #header p {
	font-weight: bold;
}
.phonemail {
	float: right;
	margin-right: 10px;
	width: 240px;
	display:inline; /* correct double float bug in ie */
	text-align: right;
}
.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 #navbar  {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-left: 20px;
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
	margin: 0px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
.oneColFixCtrHdr #mainContent h1 {
	font-size: 1.3em;
}
.imgtube {
	float: right;
	margin: 5px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
}
.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: 10px;
}
a:link {
	font-weight: bold;
	color: #003399;
	text-decoration: none;
	background-color: #FFFFFF;
}
a:hover {
	font-weight: bold;
	color: #FF0000;
	text-decoration: underline;
	background-color: #FFFFFF;
}
a:visited {
	font-weight: bold;
	color: #003399;
	text-decoration: none;
	background-color: #FFFFFF;
}

a:active {
	font-weight: bold;
	color: #006600;
	text-decoration: none;
	background-color: #FFFFFF;
}
fieldset {
	float: right;
	width: 350px;
	margin-right: 100px;
	text-align: right;
	padding: 25px;
}
textarea {
	vertical-align: text-top;
}
legend {
	font-weight: bold;
}
