.thumbnails{
	margin-left: 15px;
	margin-right: auto;
	padding-bottom: 20px;
	text-align: center;
}

ul.thumb {
	float: left;
	list-style: none;
	margin: 0; padding: 10px;
	width: 100%;
}
ul.thumb li {
	margin: 0; padding: 0;
	float: left;
	position: relative;
	width: 160px;
	height: 119px;
	/* background: url(../images/pngs/thumb_bg.png) center center no-repeat; */
	cursor:pointer;
}

.bg {
	width: 140px; height: 100px;
	position: absolute;
	left: 0; top: 0;
	padding: 5px;
	margin: 20px 25px;
	-ms-interpolation-mode: bicubic; 
}

ul.thumb li .caption{
	width: 150px;
	height:auto;
	background:#000;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	text-align:center;
	text-transform: uppercase;
		
	/* fix it at the bottom */
	position:relative;
	bottom:-1px; /* fix IE issue */
	top: 40px;
		cursor:pointer;


	/* hide it by default */
	display:none;

	/* opacity setting */
	filter:alpha(opacity=70);    /* ie  */
	-moz-opacity:0.7;    /* old mozilla browser like netscape  */
	-khtml-opacity: 0.7;    /* for really really old safari */  
	opacity: 0.7;    /* css standard, currently it works in most modern browsers like firefox,  */

}

ul.thumb li .caption a {
	text-decoration:none;
	color:#fff;
	font-size:16px;	
	
	/* add spacing and make the whole row clickable*/
	padding:5px;
	display:block;
	text-align:center;
		cursor:pointer;
}

