/*
Document   : sponso-flip-wall
Created on : 16/05/2011, 12:39:15
Author     : Samuel Ramon samuelrbo@gmail.com
*/

/* New and edit form */
div.sponsor-flip div.fl, div.img { width: 350px; float: left; }
div.sponsor-flip div.img div { height: 75px; width: 220px; padding: 10px; margin: 25px 0 5px; }
div.sponsor-flip div.img span { margin-left: 10px; }
div.sponsor-flip label { display: block; margin: 20px 0 0; }
div.sponsor-flip textarea { width: 300px; height: 150px; background: white;}
div.sponsor-flip input[type=text], select { width: 300px; }
div.sponsor-flip input#submit { width: 285px; }


/* Sponsor Flip Wall */
.sponsorListHolder{background: white;
margin-bottom:30px;
}

.sponsor{
width:220px;
height:75px;
float:left;
margin:4px;
background: white;
/* Giving the sponsor div a relative positioning: */
position:relative;
cursor:pointer;
}

.sponsorFlip{
/*  The sponsor div will be positioned absolutely with respect
to its parent .sponsor div and fill it in entirely */
background: white;
position:absolute;
left:0;
top:0;
width:100%;
height:100%;

}

.sponsorFlip:hover{

background: white;
}

.sponsorFlip img{background: white;
	/* Centering the logo image in the middle of the .sponsorFlip div */

	
}

.sponsorData{background: white;
	/* Hiding the .sponsorData div */
	display:none;
}

.sponsorDescription{background: white;
	font-size:14px;
	padding:12px 10px 20px 20px;
	font-style:italic;
	word-wrap: break-word;
}

.sponsorURL{background: white;
	font-size:14px;
	font-weight:bold;
	padding: 0 10px;
	word-wrap: break-word;
}

.clear{background: white;
	/* This class clears the floats */
	clear:both;
}