@charset "UTF-8";
body {
	font: 90% Papyrus;
	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;
	background-color: #000;
}
.oneColFixCtrHdr #container {
	width: 780px;
	margin: 0 auto;
	text-align: center;
}
.oneColFixCtrHdr #header {
	padding: 10px 0 20px 0;
	background-color: #000;
}
.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: 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Papyrus;
	color: #6666ff;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 30px;
	font-family: Papyrus;
	font-size: 100%;
	color: #330033;
	background-color: #999fff;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
a:link {
	color: #0033FF;
	text-decoration: none;
}
a:hover {
	color: #99FFCC;
}
a:visited {
	color: #66F;
	text-decoration: none;
}

.boxlft {
	float: left;
	margin: 2px 10px 2px 2px;
	border: 3px;
	color: #000;
	}
