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




body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.0em;  /* sets size globally!! */
	background: #fff;
	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: #000; /* font color */
	height:100%;
}


#container {
	width: 960px;  /* using 64px less than a full 1024px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 100px 0 100px; /* the auto margins (in conjunction with a width) center the page */
	/* border: 1px solid #999; /* positional only */
	text-align: left; /* this overrides the text-align: center on the body element. */
min-height:100%;
   } 



#mainContent {
	max-width: 70%;
	margin: 0 auto;
} 

#mainContent img {
display:block;
margin: 0 auto;
} 


#header {
	background: #fff;
	margin: 0 10% 30px 10%;
	text-align: center;	
} 
#header h1 {
	margin-top: 30px; /* 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 */
}

.central	{
text-align:center;
margin-top:40px;
}

h1 		{
		font-size: 1.5em;
  color: rgba(0,0,0,0.3);
}

p		{
    color: rgba(0,0,0,0.7);
		font-size: 0.90em;
		line-height:1.8;
}

a:link, a:visited 	{
color: rgba(112,60,4,0.8);
}

a:hover
		{
color: rgba(53,32,9,0.9);
}



#footer {
	background:#fff;
	bottom:0;   /* Height of the footer */
	clear: both;
	text-align: center;
	margin-top: 250px;
} 
#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 */
}
