.sponsorListHolder{
	margin-bottom:30px;
}

.sponsor{
	width:166px;
	height:170px;
	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 #3b3d50;	
	background:#111111;
}

.sponsorFlip:hover{
	border:1px solid #999;
	
	/* CSS3 inset shadow: */
	-moz-box-shadow:0 0 30px #353535 inset;
	-webkit-box-shadow:0 0 30px #353535 inset;
	box-shadow:0 0 30px #353535 inset;
}

.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{
	
	padding:10px 0 5px 10px;
	margin-bottom:5px;
	color:#000;
	font:14px/18px "Trebuchet MS", Arial, Helvetica, sans-serif;
	border-bottom:2px solid #333;
}

.sponsorURL{
	font:11px/18px "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-left:23px;
}

.sponsorURL a:link, .sponsorURL a:visited 
{
	color:#000;
	display:block;
}

.sponsorURL a:link, .sponsorURL a:visited 
{

}

.sponsorURL small
{
	font-size:5px;	
}


.sponsorURL li
{
	list-style:outside;
}
.clear{
	/* This class clears the floats */
	clear:both;
}

