/* 	File: donate.css
	Author: nicholas.defelice@gmail.com
	
	links on white pages are color: #63057A
	links of black pages are color: #FF9900

*/

/*	DEFINE DONATE BACKGROUND
----------------------------------------------------*/

#wrapper {
	background-image: url("../images/background.jpg");
	background-repeat: no-repeat;
	background-position: 53% 55%;
	
}

#content{						/* set font color and font type */
	color: white;
	font-family: Arial;
	

}


#donate_text{					
	text-transform: ;
	width: 400px; 				/* sets width of the text */
}

#donate_text span{
	color: red;					/* red font */
}

.donate_button_position {
	margin-top: 100px;			/* donate bar will be 350px down from last line of text. if adding more text change this to less */
	margin-left: -33px;			/* pushes the bar 46 px to the left to align with the background */
}

.donate_button{
	background: url(../images/donate_bar.png) top center no-repeat;  	/* background bar image */
	width: 874px;													/* width of donate bar */
	min-height: 57px;												/* height of donare bar */
	border: none;													/* no border around button */
	cursor:pointer;
}

.donate_button:hover {
	background-position: 50% 100%;									/* on hover show rollover image */
}

