* {
	/* Resetting the default styles of the page */
	margin:0;
	padding:0;
}

#flip{
	/* Setting default text color, background and a font stack */
	font-size:0.825em;
	color:#666;
	background-color:#fff;
	font-family:Arial, Helvetica, sans-serif;
}

.sponsorListHolder{
	margin-bottom:30px;
}

.sponsor{
	width:130px;
	height:130px;
	float:left;
	margin:0 15px 15px 0;
	padding:5px;
	
	/* 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 */

	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border:1px solid #ddd;	
	background:url("/img/elements/flip/background.jpg") no-repeat center center #f9f9f9; /* couleur fond dessus */
}

.sponsorFlip:hover{
	border:1px solid #999;
	
	/* CSS3 inset shadow: */
	-moz-box-shadow:0 0 30px #999 inset;
	-webkit-box-shadow:0 0 30px #999 inset;
	box-shadow:0 0 30px #999 inset;
}

.sponsorFlip img{
	/* Centering the logo image in the middle of the sponsorFlip div */
	position:absolute;
	top:50%;
	left:50%;
	margin:-45px 0 0 -35px;
} 
.sponsorFlip p{
	position:absolute;
	bottom:20px;
	margin:0;padding:0;
	text-align:center;
	width:100%;
}

.sponsorData{
	/* Hiding the .sponsorData div */
	display:none;
}

.sponsorDescription{
	font-size:11px;
	padding:35px 10px 0px 10px;
	font-style:italic;
	position:relative;
	text-align:center;
}

.sponsorURL{
	font-size:13px;
	font-weight:bold;
	padding:20px 10px 0px 10px;
	text-align:center;
	position:relative;
}

.URLs{
	font-size:13px;
	font-weight:bold;
	text-align:center;
}

.clear{
	/* This class clears the floats */
	clear:both;
}


