@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: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	height: 100%;
	width: 100%;
	background-image: url(images/body_bg.jpg);
	background-repeat: repeat-x;
}
#container {
	border: 0px; /* this overrides the text-align: center on the body element. */
	color: #000;
	background-color: #000;
	width: 900px;
	margin: 0 auto;
	text-align: center;
	height: 100%;
}
#homenav ul li a:hover {
	font-weight: bold;
	color: #FFF;
}
#header {
	background-repeat: no-repeat;
	text-align: center;
	margin: 0px;
	padding-top: 10px;
}
#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 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#footer {
	padding-top: 20px;
	padding-bottom: 10px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	
}
#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 */
}
#maintop {
	width: 100%;
	background-color: #000;
	padding: 0px;
	text-align: center;
	color: #FFF;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 14px;
	font-weight: normal;
}
#homenav {
	color: #800000;
	width: 100%;
	text-align: center;
	height: 35px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#homenav ul {
	margin: 0px;
	list-style-type: none;
	background-image: url(images/navbar.jpg);
	background-repeat: no-repeat;
	color: #800000;
	width: 100%;
	text-align: center;
	background-position: center;
	height: 35px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#homenav ul li {
	display: inline;
	padding-right: 4px;
	padding-left: 4px;
	color: #FFF;
	height: 35px;
	text-align: center;
}
#homenav ul li a {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
}
#homenav ul li a:hover {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 14px;
	font-weight: bold;
	color: #6f1111;
}
#mainContent {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFF;
	padding-top: 20px;
}
.subpage {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 12px;
	font-weight: bold;
	color: #000;
	padding-top: 0px;
	padding-bottom: 5px;
	padding-right: 0px;
	padding-left: 0px;
}
.tour {
	padding-right: 0px;
	padding-left: 5px;
	text-align: left;
	font-weight: bold;
	color: #000;
}
.newsitems {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 0px;
	padding-left: 5px;
	text-align: left;
	font-weight: bold;
	color: #000;
}
.scroll {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: medium;
	font-weight: bold;
	color: #000;
	overflow: auto;
	width: 100%;
	height: 100%;
	text-align: left;
	padding: 0px;
}
.signup {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
	color: #FFF;
}