@charset "UTF-8";
body {
	
	background: #3f250a;
	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;
	background-image:url(images/background_home.jpg);
	background-position:center top;
	background-repeat:no-repeat;
}

a {
color:#663300;
}

#container {
	width:910px;
	background: #FFFFFF;
	margin: 74px auto 0px 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. */
}
#header {
background:#DDDDDD url(images/header.jpg) no-repeat scroll 0 0;
font-family:Georgia,"Times New Roman",Times,serif;
font-size:18px;
height:146px;
padding:20px 0 0;
width:910px;
	}
	
h2 {
font-family:Georgia,"Times New Roman",Times,serif;
font-size:18px;
font-weight:bold;
color:#4d3311;
	}
	
	p {
font-family:"Times New Roman", Times, serif;
font-size:16px;
color:#4d3311;
line-height:20px;
	}
#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: 230px 300px 0px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	background-image:url(images/home_content_background.jpg);
	background-repeat:no-repeat;
	
}

#contactContent {
	padding: 360px 300px 0px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	background-image:url(images/contact_content_background.jpg);
	background-repeat:no-repeat;
	
}

#aboutContent {
	padding: 15px 40px 20px 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	
	
}

#aboutContent p {
font-family:"Times New Roman", Times, serif;
font-size:14px;
color:#4d3311;
line-height:20px;
	}
#footer {
width:910px;
margin:0px auto;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:right;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:16px;
	
}
#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 */
}


#header ul {
padding:0px 0px 0px 190px;
}
#header li {
float:left;
font-size:18px;
list-style-type:none;
padding:0 10px;
}
#header li a {
8
}
#header li a:link, #header li a:visited {
color:#4d3311;
text-decoration:none;
}
#header li a:hover {
color:#4d3311;
text-decoration:underline;
}

h3 {
color:#990000;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:bold;
}

h4 {
color:#4d3311;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:16px;
font-weight:bold;
}
