@charset "UTF-8";
/* CSS Document */

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 */
	font-family: Arial, Helvetica, sans-serif;
	color: #371500;
	font-size: 85%;
	line-height: 150%;
	background-color: #B14918;
	background-image: url(images/bodyBack.png);
	background-repeat: repeat;
}


img {
	border: thin solid #371500;
	float: right;
	width: 200px;
	height: 150px;
	margin: 10px;
}

ul {


	margin: 0;
	padding:0;
	}

li {
	list-style-type: none;
	}
	
h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 110%;
	line-height: 110%;
	color: #B14918;
	letter-spacing: .1em;
	padding:0;
	margin:0;
}

body a {
	font-family: Arial, Helvetica, sans-serif;
	color: #B14918;
	font-weight: bold;
	padding: 5px;
	font-size: 85%;
	line-height: 150%;
}

body a:link, a:visited, a:active {
	text-decoration: underline;
	color: #B14918;
}


body a:hover {
	text-decoration: none;
	color: #E4BDA4;
	background-color:#B14918;
}


table {
margin: 10px;
border: medium solid #371500;
}

#contact {
height: 300px;
margin-left: 150px;
}

#container {
	width: 80%;  /* this will create a container 80% of the browser width */
	min-width: 600px;
	border: thick solid #371500;
	margin: 15px 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. */
	background-color: #F7EAD5;
	background-image: url(images/backRight.png);
	background-repeat: repeat-y;
	background-position: right top;
}
#header {
	padding: 0 160px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(images/head.png);
	background-repeat: no-repeat;
	background-position: right top;
	height: 130px;
}
#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 {
	padding: 0 180px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

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

#navigation {
	margin: 0 20px 10px 0;
	padding: 40px 10px 10px 0;
	background-image: url(images/threads.png);
	float: left;
	border-bottom: thin dashed #B14918;
	border-right: thin dashed #B14918;
	background-repeat: no-repeat;
	background-position: left top;
}

.formText {
color: #B14918;
}
