@charset "utf-8";
/* CSS Document */

body {
	font: 100% "Georgia", Times New Roman, Times, serif;
	background: #B0AD72;
	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: #333333;
}
.oneColFixCtr #container {
	width: 991px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(media/bkgrnd_kraft.jpg);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background:url(media/bkgrnd_cabin.jpg);
	background-repeat:no-repeat;
}
#header {
	width: 991px;
	margin-bottom: 0px;
}
#text {
	width: 736px;
	background-color:#fffbbf;
	margin-left: 5px;
	padding: 20px 20px 20px 20px;
	margin-bottom: 7px;
}
p {
	font-size: 14px;
	line-height: 160%;
	margin: 20px 0px 0px 0px;
}
h1 {
	font-size: 24px;
	margin: 30px 0px 0px 0px;
	padding: 0px;
}
h2 {
	font-size: 18px;
	margin: 30px 0px 0px 0px;
	padding: 0px;
}
h3 {
	font-size: 14px;
	margin: 30px 0px 0px 0px;
	padding: 0px;
}
#footer {
	width: 776px;
	margin-left: 5px;
	margin-bottom: 25px;
	text-align: right;
	font-size: 14px;
	color: #3b291c;
	padding-bottom: 10px;
}
#navbar {
	width: 736px;
	height: 30px;
	background-color:#fffbbf;
	margin-left: 5px;
	padding-left:20px;
	padding-right:20px;
}
ul {
	font-size: 14px;
	line-height: 160%;
}
#text a:link, #text a:visited {
	color:#f07e2e;
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}
#text a:hover {
	text-decoration: underline;
}
.borderbottom {
	border-bottom:1px #AFAD72 dotted;
}