/* CSS Document */
/*powiekszanie */
.thumbnail{
position: static;
float:left;margin:2px;
z-index: 0;
text-decoration:none;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
text-decoration:none;
}

.thumbnail span{ /*CSS for enlarged image*/
position:absolute;
/*background-color: white;*/
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
tect-align:center;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
left: 200px; /*position where enlarged image should offset horizontally */
top: 0px;
}

/*powiekszanie */
.thumbnail_pol{
position: static;
float:left;margin:2px;
z-index: 0;
text-decoration:none;
}

.thumbnail_pol:hover{
background-color: transparent;
z-index: 50;
text-decoration:none;
}

.thumbnail_pol span{ /*CSS for enlarged image*/
	/*background-color: white;*/
position:absolute;
	background-color: lightyellow;
	padding: 5px;
	left: -1000px;
border: 1px dashed gray;
	/*visibility: hidden;*/
color: black;
	text-decoration: none;
	text-align:center;
	top: -100px;
}

.thumbnail_pol span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail_pol:hover span{ /*CSS for enlarged image on hover*/
position:absolute;
visibility: visible;
left: 280px; /*position where enlarged image should offset horizontally */
top: 20px;
}


