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

body  {
	font: 100% Arial, Helvetica, sans-serif;
	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 */
	
	background-image: url(../images/bg_content.jpg);
}

#container {
	width: 80%;  /* this will create a container 80% of the browser width */
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
	
	
	/*border: 1px solid #5e3807;	/*background-image: url(../images/content_body.jpg);
	background-repeat: repeat;*/
	
} 

#header {
	clear:both;
	background-color:#ffffff;
	padding:0;  /* 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. */
} 
 #header p {
	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 */
	font-size:12px;
	
}
#leftCol{
	float:left;
	width:21%;
	padding-top:20px;
	padding-bottom:20px;
	padding-right:1%;
	
}

#rightCol{
	float:left;
	width:20%;
	padding-top:20px;
	padding-bottom:20px;
	padding-left:2%;
	
	
}
#middleCol{
	width:55%;
	float:left;
	padding-top:20px;
	
	padding-bottom:20px;
}

#main p{
	font-size:14px;
	
	line-height:20px;
}

#main ul, main li{
	font-size:14px;
	
	line-height:20px;
}
 #main h3{
	 
	font-weight:100;
	line-height:20px;
	 
 }

 #main h1{
	 font-size:20px;
	 font-weight:100;
	 line-height:30px;
 }
 
 

#leftCol p{
	padding-left:20px;
	padding-right:20px;
}

#rightCol p{
	padding-left:10px;
	padding-right:10px;
	text-align:center;
	text-decoration:underline;
	
}

#rightCol h3{
	text-align:center;
	text-decoration:underline;
}

#main{
	width:96%;
	padding-bottom:20px;
	padding-left:2%;
	padding-right:2%;
	border:#bfa37f;
	border:solid;
	border:2px solid #bfa37f;
}


#footer1{
	clear:both;
	
	
	
}

#footer{
	clear:both;
	background-color:#ffffff;
	text-align:center;
	padding-top:10px;
	padding-bottom:10px;
	
	
}

#footer p {
	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:0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size:12px;
	
}
