@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #f1f3cb;
	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;
}
.oneColFixCtrHdr #container {
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #C3C6A7;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	width: 750px;
	background: #f1f3cb;
	height: 100px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.oneColFixCtrHdr #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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */

}
.oneColFixCtrHdr #footer {
	padding: 0 10px;
	background-color: #ACAC53;
}
.oneColFixCtrHdr #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 */
}


/*-------------------------------------
 	Menu
---------------------------------------*/

a.home {
	display: block;
	position: relative;
	width: 52px;
	height: 31px;
	background: url(images/home.gif) 0 0 no-repeat;
	float:right;
	text-decoration: none;
	top: 69px;
}

a:hover.home {
background-position: -52px 0;
}


a.join {
	display: block;
	position: relative;
	width: 35px;
	height: 31px;
	background: url(images/join.gif) 0 0 no-repeat;
	float:right;
	text-decoration: none;
	top: 69px;
}

a:hover.join {
background-position: -35px 0;
}


a.donate {
	display: block;
	position: relative;
	width: 51px;
	height: 31px;
	background: url(images/donate.gif) 0 0 no-repeat;
	float:right;
	text-decoration: none;
	top: 69px;
}

a:hover.donate {
background-position: -51px 0;
}

a.volunteer {
	display: block;
	position: relative;
	width: 68px;
	height: 31px;
	background: url(images/volunteer.gif) 0 0 no-repeat;
	float:right;
	text-decoration: none;
	top: 69px;
}

a:hover.volunteer {
background-position: -68px 0;
}

a.coalition {
	display: block;
	position: relative;
	width: 112px;
	height: 31px;
	background: url(images/coalition.gif) 0 0 no-repeat;
	float:right;
	text-decoration: none;
	top: 69px;
}

a:hover.coalition {
background-position: -112px 0;
}

a.legislation {
	display: block;
	position: relative;
	width: 139px;
	height: 31px;
	background: url(images/legislation.gif) 0 0 no-repeat;
	float:right;
	text-decoration: none;
	top: 69px;
}

a:hover.legislation {
background-position: -139px 0;
}


a.links {
	display: block;
	position: relative;
	width: 56px;
	height: 31px;
	background: url(images/links.gif) 0 0 no-repeat;
	float:right;
	text-decoration: none;
	top: 69px;
	
}

a:hover.links {
background-position: -56px 0;
}
		


/*-------------------------------------
 	Copyright
---------------------------------------*/


#copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 18px;
	text-align:	center;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 25px;
	margin-left: 0;
}


#copyright a:link, #copyright a:visited {
	color:					#43554b;
}
