.spotlightListHolder{
	margin-bottom:30px;
}

.spotlight{
	width:280px;
	height:280px;
	float:left;
	margin:0 8px 8px 8px;
	
	/* Giving the spotlight div a relative positioning: */
	position:relative;
	cursor:pointer;
}

.spotlightFlip{
	/*  The spotlight div will be positioned absolutely with respect
		to its parent .spotlight div and fill it in entirely */

	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border:1px solid #ddd;	
	background:url(http://www.ipsocbijscholing.be/images/indekijker/background-spotlights.jpg) no-repeat center center #f9f9f9;
}

.spotlightFlip: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;
}

.spotlightFlip img{
	/* Centering the logo image in the middle of the spotlightFlip div */
	
	position:absolute;
	top:50%;
	left:50%;
	margin:-140px 0 0 -140px;
}

.spotlightData{
	/* Hiding the .spotlightData div */
	display:none;
}

.spotlightDescription{
	font-size:1em;
	padding:50px 10px 20px 20px;
	font-style:italic;
}

.spotlightURL{
	font-size:1em;
	font-weight:bold;
	padding-left:20px;
}
