@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: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000;
}
#container  {
	border: medium groove #E7B66A;
	text-align: left; /* this overrides the text-align: center on the body element. */
	width: 600px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(images/parchmentTile.jpg);
	background-repeat: repeat;
	background-position: center top;
}
a {
	text-decoration: none;
	font-weight: bold;
	color: #F00;
}
a:hover {
	color: #FFF;
}


.header  {
	border-bottom-style: solid;
	text-align: center;
	border-bottom-width: 4px;
	border-bottom-color: #F00;
}
h3 {
	text-align: center;
}


#mainContent  {
	padding: 0 20px;
}
#footer  {
	padding: 0 10px;
}
#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 */
	text-align: center;
	font-size: small;
	color: #000;
	border-top-style: solid;
	border-top-width: 4px;
	border-top-color: #F00;
}
