.sponsorListHolder{margin-bottom:30px;}

.sponsor{
	width:160px;
	height:60px;
	float:left;
	margin:4px;
	
	/* 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("pubblicita/background.jpg") no-repeat center center #fff;
}

.sponsorFlip:hover{
	border:1px solid #a21835;
	
	/* 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:-25px 0 0 -75px;
}

.sponsorData{
	/* Hiding the .sponsorData div */
	display:none;
}

.sponsorDescription{height: 37px; background: #fff; font-size:12px; padding:5px 5px 5px 5px; font-style:italic; color: #000;}
.sponsorURL{background: #e6e6e6; font-size:11px; font-weight:bold; padding-right:5px; text-align: right;}
.clear{
	/* This class clears the floats */
	clear:both;
}


/* The styles below are only necessary for the styling of the demo page: */

#main{position:relative; margin:0 auto;	width:680px;}

a, a:visited {color:#cc0000; text-decoration:none; outline:none;}
a:hover{text-decoration:underline;}
a img{border:none;}
