/*zdjecia top*/

#slideshow {
    position:relative;
    height:290px;
}

#slideshow img {
    position:absolute;
    top:0;
    left:0;
    z-index:0;
    opacity:0.0;
}

#slideshow img.active {
    z-index:10;
    opacity:1.0;
}

#slideshow img.last-active {
    z-index:0;
}


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 402px;
	height:190px;
	/* custom decorations 
	border:0px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;*/
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
div.scrollable div.items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:1px;
	padding: 0 2px 0 2px;
	cursor:pointer;
}

div.scrollable div.items div { 
  float:left; 
  z-index: 0;
}


div.items{
margin-top:10px;
margin-bottom:10px;

} 

div.items img {
margin-left: 0px;
border:0px inset #ccc;
}

div.items a {
	display: block;
}
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
  border:0px inset #ccc; 
}



/* active item */
.scrollable .active {
	
	z-index:0;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../gfx/scroll.png) no-repeat;
	display:block;
	width:42px;
	height:45px;
	float:left;
	margin:62px 5px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 0; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:0 0; }
a.right:active 	{ background-position:0 0; } 


/* left */
a.left				{ margin-left: 0px; background-position:0 -45px;} 
a.left:hover  		{ background-position:0 -45px; }
a.left:active  	{ background-position:0 -45px; }


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


