@charset "utf-8";
body  {
	background: #9A9575; /* 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: #46361f;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 100%;
	margin-top: 10;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#container {
	width: 970px;
	margin: 0 auto;
	text-align: left;
	background-color: #E8E8D8;
} 
#header {
	background-image: url(../images/logo-blank.jpg);
	height: 77px;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0;
} 
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #9c5825;
	font-family: Papyrus;
	font-size: 28px;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#container #slideshow {
	height: 125px;
	width: 970px;
	margin: 0px;
	padding: 0px;
	background-color: #212227;
	background-repeat: no-repeat;
	font-family: Papyrus;
	font-size: 16px;
	color: #E8E8D8;
	text-align: center;
	background-position: center;
	background-image: url(../images/DSC03845.jpg);
}

#navbar {
	background-color: 766345;
	height: 25px;
	background-image: url(../images/navbarLength.jpg);
}
#mainContent {
	margin-top: 0px;
	margin-right: 50px;
	margin-bottom: 0px;
	margin-left: 160px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
} 
#mainContent p {
	text-align: center;
}
#mainContent h1 {
	font-family: Papyrus;
	font-size: 20px;
	color: #46361f;
	text-align: center;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 0px;
	margin: 0px;
}
#footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#9A9575;
} 
#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: 2px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: left;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#container #navbar a {
	color: #E8E8D8;
	font-size: 16px;
	text-decoration: none;
	font-family: Papyrus;
	padding-right: 50px;
	margin-left: 35px;
}
#container #navbar a:hover {
	color: #C66F2F;
}
#container #navbar a:active {
	font-family: Papyrus;
	font-size: 16px;
	color: #C66F2F;
	text-decoration: none;
}
