@charset "UTF-8";
div,h1,h2,h3,h4,h5,h6,p,pre,address,blockquote,span,ul,ol,li,dl,dd,dt,img {
	margin: 0;
	padding: 0;
}
body  {
	background: #E4E4C9;
	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: Georgia, "Times New Roman", Times, serif;
	font-size: 90%;
	line-height: 1.4em;
}
a {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: underline;
}
a img {
	border: 0;
	text-decoration: underline;
}
#container  {
	width: 757px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header  {
	margin: 0;
	padding: 0;
	background: #E4E4C9;
} 
#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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#navbar {
	background: #ffffff;
	padding: 0px 10px 0 10px;
	margin: 0 0 25px 0;
}
#navbar ul, #navbar li {
	display: inline;
	list-style-type: none;
	float: left;
}

#navbar a:link, #navbar a:visited
{
	float: left;
	line-height: 14px;
	margin: 0 10px 4px 10px;
	color: #583a22;
	font-size: 11px;
	text-decoration: none;
	font-weight: bold;
}

/* #navbar a:link#current, #navbar a:visited#current, #navbar a:hover
{
	border-bottom: 2px solid 583a22;
} */
#navbar a:link#current, #navbar a:visited#current, #navbar a:hover
{
	border-bottom: 2px solid #583a22;
	padding-bottom: 2px;
	background: transparent;
	color: #583a22;
	text-decoration: none;
}
#navbar a:hover {
	color: #583a22;
	text-decoration: none;
}
#centercontainer {
	clear: both;
	background: #fff;
}
#sidebar1  {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */
	background: #f4f2e4; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 20px;
}
#sidebar1 h3 {
	padding: 0 0 5px 0;
	font-size: 95%;
}
#sidebar1 p {
	font-size: 80%;
	margin: 0 0 5px 0;
}
#mainContent  {
	margin: 0 30px 0 0; /* the right margin on this div element creates the column down the right 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: 0 20px;
	float: left;
	width: 440px;
} 
#mainContent h1 {
	font-size: 160%;
	padding: 12px 0 7px 0;
	color: #583a22;
}
#mainContent h2 {
	font-size: 140%;
	padding: 16px 0 10px 0;
	line-height: 1.2em;
}
#mainContent h3 {
	font-size: 90%;
}
#mainContent p {
	padding-bottom: 10px;
	font-size: 90%;
}
#mainContent .imgleft {
	float: left;
	border: 1px solid #000;
	margin: 0 10px 5px 0;
}
#mainContent .imgright {
	float: right;
	border: 1px solid #000;
	margin: 0 0 5px 10px;
}
#mainContent li {
	margin-left: 20px;
	font-size: 90%;
}
#mainContent h4 {
	font-size: 90%;
	font-weight: normal;
}
#mainContent h5 {
	font-size: 110%;
	margin: 0 0 5px 0;
}
#mainContent p.top {
	font-size: 80%;
	text-align: right;
}
#mainContent blockquote {
	font-size: 80%;
}
#footer  {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#f4f2e4;
} 
#sidebar1 .imgcenter {
	text-align: center;
	border: 1px solid #000;
}
.imagecenter {
	border: 1px solid #000;
	text-align: center;
	margin: 20px 0 0 0;
}
#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 */
	font-size: 70%;
}
.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;
}
#mainContent img.wenwild {
	margin: 30px 40px;
}
#mainContent img.aalogonews {
	margin: 10px 0;
}
