@charset "UTF-8";
body  {
	font: 80% Georgia, "Times New Roman", Times, serif;
	background: #b3bccb;
	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: #433113;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
#container { 
	width: 730px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #b3bccb;
	margin: 20px 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 {
	padding: 0;
	margin: 0 0 20px 0;
	width: 100%;
	text-align: left;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	line-height: 1.7em;
}
#sidebar1 img {
text-decoration: none;
border: none;
}
#sidebar1 a {
	color: #336699;
}
#sidebar1 a:hover {
	color: #62459c;
	}
#wideNav {
	margin: 10px 0;
	border: 4px solid #513b18;
	background: #ffffff;
	text-align: center;
	font-size: 90%;	
	width: auto;
}
#wideNav a{
	color: #433113;
	text-decoration: none;
	}
#wideNav a:hover {
	color: #336699;
	}
.navWrap {
	border: 2px solid #513b18;
	background: #cfb991;
	margin: 2px;
	padding: 8px -4px;
	}
#mainContent { 
	margin-left: 265px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding-top: 1px;
} 
#mainContent p {
	line-height: 1.7em;
} 
#mainContent a {
	color: #433113;
	}
#mainContent a:hover {
	color: #62459c;
	}
#mainContent h1{
	font-size: 2.5em;
	font-family: 'EnglishRegular';
	}
#mainContent h2 {
	padding-left: 5px;
	margin-bottom: -3px;
	font-size: 1.35em;
	line-height: 1.4em;
	}
#mainContent h3 {
	padding-bottom: -6px;
	font-size: 1.2em;
	}
#mainContent li {
	list-style-type: disc;
	line-height: 1.5em;
	padding: 0 50px 5px 0;
	}
.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;
}
.marg_btm {
	margin-bottom: 12px;
}
.buttons {
padding: 0 10px;
font-size: 110%;
line-height: 2em;
}

