@charset "utf-8";
body {
	background-color: #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 */
	background-image: url(images/bgUp.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	font-family: Arial, Helvetica, sans-serif;
}

.oneColFixCtrHdr #container {
	text-align: center;
	margin: auto; /* the auto margins (in conjunction with a width) center the page */
	width: 780px;
}
.oneColFixCtrHdr #header {
	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: 0px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.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: 0px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.oneColFixCtrHdr #footer {
	padding: 0px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
.oneColFixCtrHdr #footerText {
	position:relative;
	bottom: 80px;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 9px;
	text-align: center;
}
#nav1{
	position:relative;
	top: 70px;
	float: right;
	right: 18px;
	margin-top: 5px;
	margin-bottom: 5px;
}

#nav1 ul {
	text-align: center;
	margin-left: 0;
	padding-left: 0;
	background-color: #E0DFE3;
	
}

#nav1 li {
	list-style-type: none;
	display: inline;
	border-left-style: dotted;
	border-color: #FF6600;
	border-width: 1px;
	padding: 2px 5px;
	font-size: 12px;
	font-weight: bold;
}
#nav1 li a{
	text-decoration: none;
	color: #666666;
}
#nav1 li a:hover{
	text-decoration: none;
	color: #FF6600;
}
#nav1 li:first-child {
	border: none;
}

