/*
For scrolling list of donors on donor page
*/

div.scroll_list_container {
    overflow:hidden;
    max-height: 30px;
}

ul.scroll_list {
    margin:0;
    padding:0;
		background-color: blue;
		border-top: solid;
		color: blue;
}

#donorList {
    margin:0;
    padding:0;
		background-color: ;
		color: grey;
		/*font-family: "comic sans ms";*/
		font-size: 12px;
		position: relative;
}

#donorParent #donorList ul, #donorParent #donorList ul li {
 list-style: none;
 margin: 0 2px;
 padding: 0;
}

#donorParent {
    height:400px;
		overflow:hidden;
		position:relative;
}

#scroll_right {
  float: right;
	width: 230px;
	margin-right: -40px;
}

#scroll_left {
  float: left;
	width: 330px;
}

/*
For Secret log at bottom of every page.  The logo is positioned higher 
than all the other logos.  So, I have to move the Secret logo down.
*/

#SecretLogo {
  position: relative;
  top: 15px;
	bottom: 0px;
}

