ul.gallery {
	width: 150px; /*--Adjust width according to your scenario--*/
	list-style: none;
	margin: 0; padding: 0;
}
ul.gallery li {
	float: left;
	margin: 0; padding: 0;
	text-align: center;
	display: inline; /*--Gimp Fix aka IE6 Fix - Fixes double margin bug--*/
}
ul.gallery li a.thumb {
	width: 150px; /*--Width of image--*/
	/*height: 132px; /* QUELLA VECCHIA */
	height: 75px; /*--Height of image--*/
	cursor: pointer;
}
ul.gallery li span { /*--Used to crop image--*/
	width: 150px;
	/*height: 132px; /* QUELLA VECCHIA */	
	height: 75px;
	overflow: hidden;
	display: block;
}
ul.gallery li a.thumb:hover {
	background: #333; /*--Hover effect for browser with js turned off--*/
}
ul.gallery li h2 {
	font-size: 1em;
	font-weight: normal;
	text-transform: uppercase;
	margin: 0; padding: 10px;
	background: #f0f0f0;
	border-top: 1px solid #fff; /*--Subtle bevel effect--*/
}
ul.gallery li a {text-decoration: none; color: #777; display: block;}




ul.gallerySmall {
	width: 100px; /*--Adjust width according to your scenario--*/
	list-style: none;
	margin: 0; padding: 0;
}
ul.gallerySmall li {
	float: left;
	margin: 0; padding: 0;
	text-align: center;
	display: inline; /*--Gimp Fix aka IE6 Fix - Fixes double margin bug--*/
}
ul.gallerySmall li a.thumb {
	width: 100px; /*--Width of image--*/
	/*height: 132px; /* QUELLA VECCHIA */
	height: 50px; /*--Height of image--*/
	cursor: pointer;
}
ul.gallerySmall li span { /*--Used to crop image--*/
	width: 100px;
	/*height: 132px; /* QUELLA VECCHIA */	
	height: 50px;
	overflow: hidden;
	display: block;
}
ul.gallerySmall li a.thumb:hover {
	background: #333; /*--Hover effect for browser with js turned off--*/
}
ul.gallerySmall li h2 {
	font-size: 1em;
	font-weight: normal;
	text-transform: uppercase;
	margin: 0; padding: 10px;
	background: #f0f0f0;
	border-top: 1px solid #fff; /*--Subtle bevel effect--*/
}
ul.gallerySmall li a {text-decoration: none; color: #777; display: block;}
