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

body  {
	color: #444;
	background: #cacac3 url(../images/bkgds/pagebkgd.jpg) repeat-x left top;
	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 */
	font: 11px/16px "Lucida Grande", Arial, sans-serif;
}
h1 {
	color: #b0b463;
	margin: 0px;
	font: normal 22px "Palatino Linotype", "Book Antiqua", Palatino, serif;
	padding: 4px 0px 2px;
	text-align: center;
	}

h2 {
	color: #83a1a9;
	margin: 0px;
	font: 14px "Lucida Grande", Arial, sans-serif;
	padding: 2px 0px 1px;
}

h3 {
	color: #83a1a9;
	margin: 0px;
	font: 14px "Lucida Grande", Arial, sans-serif;
	padding: 8px 0px 1px 6px;
}

a {
	color: #71969f;
}
a:link {
	color: #71969f;
}
a:visited {
	color: #71969f;
}
a:hover {
	color: #b0b463;
}
a:active {
	color: #b0b463;
}
a img {
	border-top: 0;
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
}
p {
	margin: 6px 0px;
	padding: 0px;
	text-indent: 24px;
	font-size: 12px;
	line-height: 19px;
}

#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #f4f4e8 url(../images/bkgds/container_bkgd.jpg) repeat-x left top;
	margin: 12px auto;
	text-align: left;
	border-top: 1px solid #bbb;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	border-left: 1px solid #bbb;
}
#header {
	margin: 20px 20px 0px;
	height: 200px;
	width: 740px;
	background-image: url(../images/bkgds/banner7.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

#navbar {
	background-color: #e2e3c3;
	margin: 8px 20px;
	height: 36px;
	width: 740px;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 260px; /* 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 */
	padding: 0px;
	margin-right: 20px;
	margin-bottom: 10px;
}

#donate {
	text-align: center;
	margin-bottom: 8px;
}

#donate a {
	text-align: center;
	color: #333;
	text-decoration: underline;
}

#membership {
	text-align: center;
}

#membership a {
	text-align: center;
	color: #333;
	text-decoration: underline;
}
#innersidebar {
	background-color: #92b3bc;
	width: 239px;
	padding: 10px;
	margin-bottom: 8px;
}
#mainContent {
	margin: 0px 300px 0px 20px; /* 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: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: transparent;
}
#gallery {
	background: url(../images/bkgds/gallerybkgd.jpg) repeat-x left top;
	margin: 0px 20px;
	height: auto;
	width: 700px;
	padding: 8px 20px;
}
#centergallery {
	margin: 0px auto;
	width: 640px;
}
#nlholder {
	width: 280px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 4px;
	margin-left: auto;
}
#footnote {
	margin: 0px auto 2px;
	width: 440px;
	color: #333;
	font-weight: bold;
	text-align: center;
}
#footer {
	background: transparent;
	margin: 0px 20px;
	padding: 10px 0px 20px;
	height: 20px;
	border-top: 6px solid #E1E4C0;
	text-align: center;
}
.simplelist {
	list-style: circle;
	margin: 4px 0px;
}


.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;
}

