
/* container for slides */
.images {
	position: relative;	
	height:351px;
	
	width:856px;
	float:left;	
	cursor:pointer;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	font-size:12px;
}


/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	margin-left:330px;
}

/* single tab */
.slidetabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/tools/img/scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;		
}

/* mouseover state */
.slidetabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.slidetabs a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.forward, .backward {
	position:absolute;
	margin-top:0px;
	background:url(./przyciski.png) no-repeat;
	width:49px;
	height:400px;
	cursor:pointer;
	z-index:50;
	left:0px;
	
}

/* next */
.forward 				{ background-position: 7px 0px; clear:right; margin-left:806px;}
.forward:active 	 	{ background-position:15px -0px; } 


/* prev */
.backward 		{ background-position: -42px 0px; clear:right; margin-left:0px; }
.backward:active  	{ background-position:-50px 0px; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

