@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: #1F221D;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(images/body_bg.jpg);
	background-repeat: repeat-x;
	background-color: #78846E;
}
*
{
margin: 0;
padding: 0;
}
#container {
	width: 900px;
	text-align: justify; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(images/content_bg.jpg);
}
#header {
	padding: 0;
	height: 171px;
	background-image: url(images/header.jpg);
}
#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 */
}
#mainContent {
	margin-bottom: 15px;
	float: left;
	padding-top: 0;
	padding-right: 23px;
	padding-bottom: 15px;
	padding-left: 50px;
	width: 550px;
}
#rightsidebar {
	float: left;
	width: 235px;
	margin-bottom: 15px;
	padding: 0px;
}
#map {
}
#rightsidebar img {
	padding-bottom: 15px;
}
#footer {
	background-image: url(images/_footer_cap.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	background-color: #78846E;
	clear: both;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 14px;
	padding-right: 0;
	padding-left: 0;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 18px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #2A2D27;
}
p {
	font-size: 13px;
	padding-top: 5px;
	padding-bottom: 5px;
}
#navigationlist {
	list-style-type: none;
	padding-top: 138px;
	font-size: 14px;
	text-align: center;
}
#navigationlist li {
	display: inline;
	padding-right: 15px;
	padding-left: 15px;
}
#navigationlist .mid {
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	border-right-style: double;
	border-top-color: #9A6B47;
	border-right-color: #9A6B47;
	border-bottom-color: #9A6B47;
	border-left-color: #9A6B47;
}
#navigationlist a {
	color: #78846E;
	text-decoration: none;
}
a:link {
	color: #800026;
}
.center {
	text-align: center;
}
#navigationlist a:visited {
	color: #78846E;
	text-decoration: none;
}
#copyright p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #454640;
	text-align: center;
}
#copyright  a:link {
	color: #454640;
	text-decoration: none;
}
#copyright a:visited {
	color: #454640;
	text-decoration: none;
}

