*{
	/* Resetting the default styles of the page */
	margin:0;
	padding:0;
}



/* CLEARFIX */
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
.clearfix{display:inline-block;}
* html .clearfix{height:1%;}
.clearfix{display:block;}



.sponsorListHolder{
	margin-bottom:30px;
}

.sponsor{
	width:180px;
	height:180px;
	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("img/background.jpg") no-repeat center center #f9f9f9;
	filter: alpha(opacity=70); /* internet explorer */
						-khtml-opacity: 0.7; /* khtml, old safari */
						-moz-opacity: 0.7; /* mozilla, netscape */
						opacity: 0.7; /* fx, safari, opera */
}

.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;
	filter: alpha(opacity=100); /* internet explorer */
						-khtml-opacity: 1; /* khtml, old safari */
						-moz-opacity: 1; /* mozilla, netscape */
						opacity: 1; /* fx, safari, opera */
}


.opacidad { 
 filter: alpha(opacity=100); /* internet explorer */
						-khtml-opacity: 1; /* khtml, old safari */
						-moz-opacity: 1; /* mozilla, netscape */
						opacity: 1; /* fx, safari, opera */

}



.sponsorFlip img{
	/* Centering the logo image in the middle of the sponsorFlip div */
	
	position:absolute;
	top:50%;
	left:50%;
	margin:-70px 0 0 -70px;
}

.sponsorData{
	/* Hiding the .sponsorData div */
	display:none;
}

.sponsorDescription{
	font-size:11px;
	padding:20px 10px 12px 15px;
	font-style:italic;
	color: #808080;
}

.sponsorURL{
	font-size:10px;
	font-weight:bold;
	padding-left:15px;
}

.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:960px;
}


.note{
	font-size:12px;
	font-style:italic;
	padding-bottom:20px;
	text-align:center;
}

.sponsorURL a, .sponsorURL a:visited {
	color:#0196e3;
	text-decoration:none;
	outline:none;
}

.sponsorURL a:hover{
	text-decoration:underline;
}

a img{
	border:none;
}