/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.stunicholls/gallery/left_right_click.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in&nbsp;any 
way to fit your requirements.
=================================================================== */

#gallery {
	width:390px;
	position:relative;
	height:60px;
	padding-top:480px; /*musi byc wielkości takiej jak ramka na zdjęcie*/
	margin:0;
}

#gallery img.left { /* bakraund dla lewej strzałki*/
	width:40px;
	height:44px;
	float:left;
	cursor:pointer;
	background-color: #00FF00;
}
#gallery img.right { /* bakraund dla prawej strzałki*/
	width:40px;
	height:44px;
	float:left;
	cursor:pointer;
}

#gallery ul { /*tlo miniaturek*/
	list-style:none;
	padding:0;
	margin:0;
	float:left;
	display: block;
	width: 310px;
}
#gallery ul li { /*miniaturki  (wielkość i border)*/
	display:inline;
	width:45px;
	height:45px;
	float:left;
	margin:0 4px;
	cursor:pointer;
	border: 1px solid #4D44E9;
}

#gallery ul li.hide {display:none;}





/* remove visibility:hidden; if you want to use the original images as thumbnails */
#gallery ul li img {
	visibility:hidden;
	display:block;
	width:45px;
	height:45px;
}



#gallery ul li span { /*podpis i font i rozmiar okna*/
	display:none;
	position:absolute;
	left:4px;
	top:465px;
	width:350px;
	line-height:15px;
	text-align:center;
	color: #B4B6FE;
}

#gallery ul li.chosen { /*kolor borderu wybranej miniaturki*/
	border-color:#9E010C;
	cursor:default;
}
#gallery ul li.chosen div { /*kontener na zdjęcia*/
	position:absolute;
	left:3px;
	top:4px;
	width:382px;
	height:470px;
		
}
#gallery ul li.chosen div i {
	width:470px;
	height:470px;
	display:table-cell;
	vertical-align:middle;
	text-align:center;
	
} 
#gallery ul li.chosen div i img { /*kolor borderu zdjęcia*/
	visibility:visible;
	width:auto;
	height:auto;
	border:1px solid #4D44E9;
	padding: 1px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#gallery ul li.chosen span {display:block;}
