@charset "UTF-8";
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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #FFF;
}
#container {
	width: 1700px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 400px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	float: left;
} 
#header {
	height: 233px;
	width: 800px;
	position: relative;
	background-color: #FFF;
	left: 150px;
} 
#headerSubpages {
	height: 15px;
	width: 800px;
	position: relative;
	background-color: #4B403B;
	left: 150px;
}
#nav {
	width: 175px; /* padding keeps the content of the div away from the edges */
	position: absolute;
	left: 178px;
	height: 229px;
	top: 364px;
	font-size: 21px;
}
#content {
	position: relative;
	width: 750px;
	left: 150px;
	background-color: #FFF;
	margin-left: 25px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: .9em;
	line-height: 1.4em;
	color: #4E403A;
} 
#contentSubpages {
	position: relative;
	width: 750px;
	left: 150px;
	background-color: #FFF;
	margin-left: 25px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.9em;
	line-height: 1.4em;
	color: #4E403A;
	height: 325px;
}

#logo {
	position: relative;
	left: 575px;
	width: 350px;
}
#footer {
	background-color: #9C977B;
} 
#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 */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
a {
	font-family: "Century Schoolbook";
	font-color: #D6873B;
	color: #C60;
	text-decoration: none;
}

a:hover{
	font-family: "Century Schoolbook";
	font-color: #4C4338;
	color: #4C4338;
	text-decoration: none;
}
#largeLinks {
	font-color: #D6873B;
	font-size: 21px;
	text-decoration: none;
}
