@charset "utf-8";
/* CSS Document */
/* Association for the Blind & Visually Impaired */
/* Original CSS by Jacob Russell, Delivered April 18, 2008. */

/*When an html tag is used in a CSS document without a '.' or '*' before it, it is used to change the default formatting of these items.*/
body {
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, Times, serif;
}

h1 {
	font-size: large;
	font-weight: bold;
	color: #2c2f7c;
}

/*.center is used in place of centering text in the html.  This is done because you cannot achieve full validation using centering in the text.*/
.center {
	text-align: center;
}

/*Sets up the header*/
#header {
	background: #0033cc;
	background-image: url(images/header-bg.jpg);
	background-position: left;
	background-repeat: repeat-x;
	width: 100%;
	height: 120px;
	margin: 0px;
}

#logo-main {
	float: left;
}

/*The nav is set up as an unordered list in the html and then styled here.*/
#nav {
	margin: 0px;
	padding: 0px;
	width: 100%;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
}

#nav ul {
	margin: 0px;
	width: 100%;
	float: left;
	list-style: none;
	background: #000000;
	padding-top: .5em;
	padding-bottom: .5em;
	padding-left: 0;
	padding-right: 0;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
}

#nav li {
	margin: 0px;
	padding: 0px;
	display: block;
	width: 16%;
	float: left;
	font-size: 1em;
	font-weight: bold;
	color: white;
	text-align: center;
	background: #000000;
}

#nav li a {
	text-decoration: none;
	color: #fff;
}

/*Divider between the header/nav and the main section of each page.*/
#divider-top {
	margin: 0;
	padding: 0;
	margin-bottom: 5px;
	clear: both;
	width: 100%;
	height: 10px;
	float: left;
	background: url(images/fade-down.gif) top left repeat-x;
}


/*Content is where the body of each page lies.*/
#content {
	float: left;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 5px;
	margin-left: 2%;
	margin-right: 2%;
	width: 96%;
	clear: both;
}

/*Divider between the main section of each page and the footer.*/
#divider-bottom {
	margin: 0;
	padding: 0;
	display: block;
	clear: both;
	width: 100%;
	height: 10px;
	background: url(images/fade-up.gif) bottom left repeat-x;
}

/*These styles are used in the footer.*/
#footer {
	padding: 0px;
	margin: 0px;
	padding-top: 5px;
	text-align: center;
	width: 100%;
	clear: both;
	background-color: #0033cc;
	padding-bottom: 5px;
	color: #fff;
}

/*Lists are used here in much the same way as the nav bar, so that things flow well with no style applied.*/
#footer ul {
	padding: 0px;
	margin: 0px;
	width: 100%;
	float: left;
	clear: both;
	list-style: none;
	background-color: #0033cc;
}

#footer li {
	margin: 0px;
	padding-top: .5em;
	width: 32%;
	display: block;
	float: left;
	font-size: 50%;
	font-weight: bold;
	color: white;
	text-align: center;
	height: auto;
}

#footer a {
	color: #fff;
}

#footer img {
	border: none;
}

#footer p {
	clear: both;
}

/*The following two styles are used to space out the pictures on the 'Causes' page.*/
.rightpad {
	padding-right: 20px;
}

.leftpad {
	padding-left: 20px;
}