@charset "utf-8";

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: auto; /* 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: #CC66FF;
	background-image: url(assets/Background.gif);
	clip: rect(auto,auto,auto,auto);
}
.oneColFixCtrHdr #container {
	width: 780px; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #000000;
	margin-top: 50px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	clip: rect(auto,auto,auto,auto);
	background-color: #FFCCFF;
	padding: 0px;
}
.oneColFixCtrHdr #header {
	padding: 0 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. */
	background-color: #DDDDDD;
	background-image: url(assets/Stucco.jpg);
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}
.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: 0 20px;

}
.oneColFixCtrHdr #footer {
	background-color: #DDDDDD;
	background-image: url(assets/Stucco.jpg);
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #000000;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}

.oneColFixCtrHdr #footer p {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 50;
	margin-left: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
hr {
	color: #333333;
	text-align: center;
}
a:link {
	color: #FF66FF;
	font-size: 24px;
	font-weight: bold;
}
a:visited {
	font-size: 24px;
	color: #FF0066;
	font-weight: bold;
}
a:hover {
	font-size: 24px;
	font-weight: bold;
	color: #FF0000;
}
.header {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
}
.title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
}
.text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: normal;
}
.subheader {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
}
.subtext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: normal;
}
.footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
}

