@charset "utf-8";
body {
	background-image:url(../images/nature011.jpg);
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#container {
	width: 770px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #bd343c;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	padding: 0 10px 0 20px;
	height: 200px;
	background-image: url(../images/bgimage.jpg);
	color: #ffffff;
}
#header img {
	padding: 10px 30px 10px 10px;
	float: left;
}
#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 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
	font-size: 1.5em;
	font-family: "Times New Roman", Times, serif;
}
#header h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
}
#header h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
}
#mainContent {
	padding: 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	margin: 20px 0 0 0;
}
#mainContent h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	font-weight: bold;
	color: #3c51a4;
}
#mainContent p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #000000;
}
#mainContent h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	font-weight: bold;
	color: #3c51a4;
}
#mainContent h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	color: #3c51a4;
}
#mainContent h4 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: normal;
}
#mainContent a:link, #mainContent a:visited {
	color: #3c51a4;
	text-decoration: underline;
}
#mainContent a:hover {
	color: #FFFFFF;
	background-color: #3c51a4;
	text-decoration: none;
}

#footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: url(../images/bgimage.jpg);
	color: #ffffff;
}
#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 20px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.7em;
}
#footer a:link, #footer a:visited {
	color: #FFFFFF;
}
#footer a:hover {
	font-weight: bold;
}
