@charset "UTF-8";
/* CSS Document */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	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;
}
#homepage {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	background-image:url(images/ghasp_loading.jpg);
}

#header {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	top:0px;
	z-index: 0;
}
.gallery #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/galleryPage_bkgd.jpg);
	background-repeat: no-repeat;
}
.riderInfo #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/rideInfoPage_bkgd.jpg);
	background-repeat: no-repeat;
}
.register #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/registerPage_bkgd.jpg);
	background-repeat: no-repeat;
}
.postRide #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/postridePage_bkgd.jpg);
	background-repeat: no-repeat;
}
.fundraising #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/fundPage_bkgd.jpg);
	background-repeat: no-repeat;
}
.preRide #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/preridePage_bkgd.jpg);
	background-repeat: no-repeat;
}
.faq #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/faqPage_bkgd.jpg);
	background-repeat: no-repeat;
}
.spectator #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/spectatorPage_bkgd.jpg);
	background-repeat: no-repeat;
}
.donateNow #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/donatePage_bkgd.jpg);
	background-repeat: no-repeat;
}
.volunteer #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/volunteerPage_bkgd.jpg);
	background-repeat: no-repeat;
}
.contact #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/contactPage_bkgd.jpg);
	background-repeat: no-repeat;
}
.news #header {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/newsPage_bkgd.jpg);
	background-repeat: no-repeat;
}
#wrap{
	width:1024px;
	background-image:url(images/main.jpg);
	background-repeat: repeat-y;
	margin:0 auto;	
}
#mainContent {
	width:650px;
	margin:-220px auto 0px auto;
	font-size:12px;
	z-index: 1020;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
h1{
	color:red;
	text-transform:uppercase;
    font-size:14px;
    line-height: 14px;
	font-weight:bold;
}
h2{
	color:#692422;
	text-transform:uppercase;
    font-size:18px;
    line-height: 20px;
	font-weight:bold;
	text-align: center;
}
a, a:link, a:visited{
	color:red;
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
}
#faq li{
	font-weight: bold;
	font-size:12px;
	line-height: 18px;
}
#faq li a, #faq li a:link, #faq li a:visited{
	color:#000;
}
#faq li a:hover{
	color:red;
}
#answer{
	margin-top:50px;
}
#pagenumber{
	float: right;
	font-size:12px;
	font-weight: normal;
}
#pagenumber a, #pagenumber a:link, #pagenumber a:visited{
	color:#FFC53B;
}
#pagenumber a:hover{
	color:#fff;
}
#option{	
}
.validation{
	color:#FF0000;
	font-size:11px;
}
#small{
	font-size:10px;
}
#sidebar {
	margin-left:15px;
	margin-top: 10px;
}
#sidebar h2{
	text-align: left;
}
#sidebar li{
	list-style: none;
}
#search_title{
	background-color:#692422;
	color:#fff;
	padding:5px;
	font-size:14px;
	font-weight: bold;
}
#search_subtitle{
	background-color:#FFC53B;
		padding:5px;
}
#footer {
	width: 1024px;
	background-image:url(images/footer.jpg);
	background-repeat: no-repeat;
	margin: 0 auto;
	height: 180px;
	top:0px;
}

--> 