/********************************************************************
 *
 *	NASTAVENIE VZHLADU PRE JQUERY THUMBNAIL
 *
 ********************************************************************/

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

.thumbnail-item a 
{ 
	display: block; 
}

.thumbnail-item img.thumbnail 
{
	border: 3px solid #808080;	
}
		
.tooltip 
{ 
	/* by default, hide it */
	display: none; 
	/* allow us to move the tooltip */
	position: absolute; 
}

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