@charset "utf-8";
/* CSS Document */

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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #663;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #FFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: lighter;
	color: #660;
	background-color: #FFF;
	text-align: left;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 75px;
}
.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 */
	font-weight: lighter;
	color: 663;
}
.oneColFixCtrHdr #navigation {
	font-family: Tahoma, Geneva, sans-serif;
	color: #663;
	background-color: #FFF;
	text-align: left;
	padding-left: 75px;
}
.oneColFixCtrHdr #mainContent {
	background-color: #FFFFFF;
	background-image: url(images/homepage_background.jpg);
	padding-right: 75px;
	padding-bottom: 0;
	padding-left: 75px;
	color: #000;
	font-size: 90%;
}
#signuplink a:link {
	color:#FFF
}
#signuplink a:visited {
	color:#FFF
}
#signuplink a:hover {
	color:#000
}
#signuplink a:active {
	color:#FFF
}
.oneColFixCtrHdr #footer {
	background-color: #FFF;
	text-align: center;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 75px;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Tahoma, Geneva, sans-serif;
	font-size: x-small;
	color: #660;
	text-align: center;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 75;
}
a:link {
	color: 663;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: 663;
}
a:hover {
	text-decoration: underline;
	color: 663;
}
a:active {
	text-decoration: none;
	color: 663;
}
#navigation a:link {
	color:#663
}
#navigation a:visited {
	color:#663
}
#navigation a:hover {
	color:#663
}
#navigation a:active {
	color:#663
}

a.nav:link {
	color:#000
}
a.nav:visited {
	color:#000
}
a.nav:hover {
	color:#663;
	text-decoration: underline;
}
a.nav:active {
	color:#000
}
