.flipwallListHolder:after{
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	}

div.flipwall-tile{

	width:180px;
	height:180px;
	float:left;
	margin:4px;
	
	/* Giving the sponsor div a relative positioning: */
	position:relative;
	cursor:pointer;
}

div.flipwall-tile div.flip {
	/*  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;
	text-align:center;
	vertical-align:center;
}

div.flipwall-tile div.flip: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;
}

div.flipwall-tile div.flip  img{
	/* Centering the logo image in the middle of the sponsorFlip div */
	/*
	position:absolute;
	top:50%;
	left:50%;
	margin:-70px 0 0 -70px;
	*/
	margin:auto;
	height:100%;
	width:100%;
}

div.flipwall-tile .title {
	position:absolute; top:0px; left:50%; margin-left:-25%;
}

div.flipwall-tile .entry-meta {
	/* Hiding the .sponsorData div */
	display:none;
}

div.flipwall-tile .description{
	font-size:11px;
	padding:50px 10px 20px 20px;
	font-style:italic;
}

div.flipwall-tile .url{
	font-size:10px;
	font-weight:bold;
	padding-left:20px;
}

.flipwallListHolder .clear{
	/* This class clears the floats */
	clear:both;
}