@charset "utf-8";
body {
	font: 90%/1.5em Verdana, Arial, Helvetica, sans-serif;
	background: #B69869 url(images/background.gif);
	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;
}
#container {
	width: 90%;  /* this will create a container 80% of the browser width */
	background: #F5F6E6;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #F3F3E4 url(images/top-background.jpg) repeat-x;
	height: 148px;
}

#mainContent {
	padding: 0 20px;
}

#products {
	background-image: url(images/bg-ram.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

#service {
	background-image: url(images/bg-deer.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

#contact {
	background-image: url(images/bg-elk.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

#about {
	background-image: url(images/bg-hunter.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

#locator {
	background-image: url(images/bg-fisherman.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

#terms {
	background-image: url(images/bg-boat.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

#thankyou {
	background-image: url(images/bg-hooks.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

#text {
	padding-right: 35px;
	padding-left: 40px;
	padding-top: 30px;
	padding-bottom: 30px;
}

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DCC9A3;
	text-align: center;
	font-size: 80%;
} 
#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 */
}

#footer a:link {
	color: #663300;
}
#footer a:hover {
	color: #663300;
}
#footer a:visited {
	color: #663300;
}
h1 {
	font-size: 140%;
	color: #473729;
	text-align: center;
	padding-bottom: 20px;
}
h2 {
	font-size: 125%;
	color: #644E39;
}

a:link {
	color: #C45736;
}
a:hover {
	color: #C45736;
}

a:visited {
	color: #C45736;
}

.date {
	text-align: right;
}

.important {
	font-weight: bold;
	color: #507942;
}

.small {
	font-size: 80%;
	line-height: 1.3em;
}

.picright {
	margin-bottom: 5px;
	margin-left: 15px;
}

hr {
	border-top: 1px dashed #997857;/*the border*/
	width: 100%;
	height: 1px;/*whatever the total width of the border-top and border-bottom equal*/
	border-right: 0 none;
	border-bottom: 0 none;
	border-left: 0 none;
	padding-top: 5px;
	padding-bottom: 5px;
