
/* DEPRECATED FILE */




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

/* prev, next, prevPage and nextPage buttons */
div > a.next, div > a.prev  {
	position:absolute; top:170px; right:0px;
	display:block;
	width:23px;
	height:76px;
	background:url(../img/next1.png) no-repeat;
	float:right;
	margin:0px;
	cursor:pointer;
	font-size:1px;
	z-index:200;
}
div > a.prev { 
position:absolute; top:170px; left:0px;
background: url(../img/prev1.png) no-repeat;
z-index: 200;
}

/* mouseover state */
div > a.prev:hover, div > a.next:hover {
	background-position:0px -76px;		
}

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



/* the action buttons above the scrollable */
.actions {
	width:700px;
	margin:30px 0 10px 0;	
}

.actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

.actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	




/*********** navigator ***********/


/* position and dimensions of the navigator */
.navi {
	position:absolute;
	z-index: 300;
	top:20px; left:140px;
	width:251px;
	height:19px;
}


/* items inside navigator */
.navi a {
	width:251px;
	height:19px;
	float:left;
	margin:0px;
	background: url(../img/powrot_kategoria.png) scroll 0 0 no-repeat;
	display:block;
	font-size:1px;
}

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

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


