.schedaListHolder{
	margin-bottom:30px;
}

.scheda{
	width:164px;
	height:164px;
	float:left;
	margin:1px;
	
	/* Giving the scheda div a relative positioning: */
	position:relative;
	cursor:pointer;
}

.scheda-alt{
	width:164px;
	height:164px;
	float:left;
	margin:1px;
	
	/* Giving the scheda div a relative positioning: */
	position:relative;
}

.schedaFlip, .schedaNoFlip{
	/*  The scheda div will be positioned absolutely with respect
		to its parent .scheda div and fill it in entirely */
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border:1px solid #ddd;		
}

.schedaNoFlip{
	border:1px solid transparent;
}

.schedaFlip: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;
}

.schedaFlip img{
	/* Centering the logo image in the middle of the schedaFlip div */	
	position:absolute;
	top:50%;
	left:50%;
	margin:0px 0 0 -84px;	
}

.schedaNoFlip img{
	/* Centering the logo image in the middle of the schedaFlip div */	
	position:absolute;
	top:50%;
	left:50%;
	margin:-6px 0 0 -83px;
}

.schedaData{
	/* Hiding the .schedaData div */
	display:none;
}

.schedaDescription{
	font-size:11px;
	padding:20px;
	line-height:14px;
	text-align:left;
}

.schedaURL{
	font-size:10px;
	font-weight:bold;
	padding-left:20px;
}
