span.image {
	position:relative; 
	display:inline-block;
	}
span.image .image-count {
	display:none; /* delete or comment this line to make the counter visible always (not only on hover)  */
	position:absolute;
	top:0; /* change this line to bottom:0; if you want the counter to appear in the bottom of the image  */
	left:0; /* change this line to right:0; if you want the counter to appear on the right side of the image  */
	margin:10px;
	padding:3px 8px;
	background-color:white;
	color:black;
	font-size: 0.8em;
	font-weight: bold;	
	border-radius: 5px;
	box-shadow: 1px 1px 2px black;
	moz-border-radius: 5px;
	moz-box-shadow: 1px 1px 2px black;
	webkit-border-radius: 5px;
	webkit-box-shadow: 1px 1px 2px black;
	filter: alpha(opacity=70);
	ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	opacity: 0.70;}
span.image:hover .image-count {
	display:block;
	}
