@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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #363F29;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #EDE6CE;
	background-image: url(images/body_bg.jpg);
	background-repeat: repeat-x;
}
*
{
margin: 0;
padding: 0;
}
 #container {
	width: 1024px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
} 
 #header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 190px;
} 
 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	padding-left: 62px;
	background-image: url(images/sidebar_bg.jpg);
	background-repeat: repeat-y;
	background-position: right;
	background-color: #EDE6CE;
	color: #DAD6C0;
}
#nav {
	padding-left: 20px;
}
#nav ul {
	list-style-type: none;
}
#nav li {
	padding-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
}
#nav a {
	text-decoration: none;
	color: #DAD6C0;
}
#sidebar1   h1, h2, h3 {
	padding-left: 20px;
	padding-right: 20px;
	font-size: 16px;
	padding-top: 5px;
	padding-bottom: 5px;
}
#sidebar1 p {
	font-size: 12px;
	padding-right: 20px;
	padding-left: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
}
 #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 276px;
	padding-top: 0;
	padding-bottom: 0;
	background-image: url(images/content_bg.jpg);
	background-repeat: repeat-y;
	background-color: #EDE6CE;
} 
#mainContent  h1, h2, h3 {
	padding-right: 90px;
	padding-left: 40px;
	font-size: 18px;
	padding-bottom: 5px;
	padding-top: 5px;
}
#mainContent p {
	padding-right: 90px;
	padding-left: 40px;
	font-size: 13px;
	padding-bottom: 5px;
	line-height: 1.25em;
	text-align: justify;
}
#donationtable {
	border: medium solid #889D7F;
	margin-left: 50px;
	margin-top: 20px;
	margin-bottom: 10px;
}
#donationtable td {
	font-size: 14px;
	text-align: center;
	font-weight: bold;
	border: thin solid #889D7F;
	padding-top: 6px;
	padding-right: 4px;
	padding-bottom: 6px;
	padding-left: 4px;
}
#mainContent ul {
	padding-left: 60px;
	font-size: 13px;
	padding-right: 90px;
}
#taxlist li {
	list-style-type: none;
}
#mainContent li {
	padding-bottom: 5px;
}
 #footer {
	background-color: #EDE6CE;
	padding-top: 0;
	padding-bottom: 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;
	text-align: center;
}
a:link {
	color: #363F29;
}
a:visited {
	color: #363F29;
}
.bold {
	font-weight: bold;
}
.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;
	padding-left: 10px;
}
.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;
}
#copyright p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #999999;
}
#copyright  a:link {
	color: #999999;
	text-decoration: none;
}
#copyright a:visited {
	color: #CCCCCC;
	text-decoration: none;
}
