.thumbnail-item { 
	/* position relative so that we can use position absolute for the tooltip */
	position: relative; 
	float: left;  
	margin: 0px 2px; 
}
.thumbnail{
    margin-bottom:0;
}

.thumbnail-item a { 
	display: block; 
}

.thumbnail-item img.thumbnail {
height:120px;
padding:1px;
width: 124px;
}
		
.tooltip { 
	/* by default, hide it */
	display: none; 
	/* allow us to move the tooltip */
	position: absolute; 
	/* align the image properly */
	padding: 8px 0 0 8px; 
	opacity:1 !important;
}

	.tooltip span.overlay { 
		/* the png image, need ie6 hack though */
	/*	background: url(../../images/overlay.png) no-repeat;  */
		/* put this overlay on the top of the tooltip image */
		border:3px solid #666;
		position: absolute; 
		top: 0px; 
		left: 0px; 
		display: block; 
		width: 350px; 
		height: 200px;
	}