/* ----------------------------------------------------- */
/* ------ Gallery - galeria obrazkov ------------------- */
/* ----------------------------------------------------- */
.gallery
{
	float: left;
	clear: none; /* set to left or right if needed */
	padding: 15px;

	cursor: pointer;
	cursor: hand;
}
.gallery a
{	/* small image */
	display:block;
	text-decoration: none;
	padding: 1px;
	border: 1px solid #666;
	cursor:default;
	-moz-box-shadow: 0px 0px 8px #888;
	-webkit-box-shadow: 0px 0px 8px #888;
	box-shadow: 0px 0px 8px #888;
}
.gallery a:hover
{
 	position: relative;
}
.gallery span img
{
	/*border: 10px solid #ffff00; /* adds a border around the image */
	margin-bottom: 0px; /* pushes the text down from the image */
}
.gallery a span
{  /* large image and text description parameters */
	position: absolute;
	display: none;
	color: #fff;
	text-decoration: none;
	text-align: center;	
	text-shadow: 2px 2px 2px #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	background-color: #fff;
	font-weight: bold;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 1px;
	border: 1px solid #666;
	-moz-box-shadow: 0px 0px 8px #888;
	-webkit-box-shadow: 0px 0px 8px #888;
	box-shadow: 0px 0px 8px #888;
}
.gallery img
{ /* leave or IE puts a border around links */
	border-width: 0;

	cursor: pointer;
	cursor: hand;
}
.gallery a:hover span
{ 
	display: block;
	bottom: 60px;
	left: -50px;
	/*top: 70px;
	left: 70px;*/
	z-index: 100;	
}
.gallery_small_pic
{
	width: 180px;
	/*height: auto;*/
}
.gallery_small_pic_2
{
	width: 200px;
	height: 150px;
}
.gallery_clear_left
{
	clear:left;
}
.gallery_clear_both
{
	clear: both;
}
