/* root element for scrollable */
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollables have typically larger height than width but not now */
	height: 450px;
	width: 190px;
}

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

/* root element for scrollable items */
.scrollable .items {
	position:absolute;
	width:190px;
	/* this time we have very large space for the height */
	height:20000em;
}
.prev {
	float: left;
	cursor: pointer;
}


.next {
	cursor: pointer;
}

/* the action buttons above the scrollable */
#actions {
	width:190px;
	margin:0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#6c3900;

}

#actions a:hover {
	text-decoration:none;
	color:#fff;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	
 

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollableh {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 725px;
	height:94px;
margin-top: 1px;
	/* custom decorations */
	border:5px solid #ddcf88;
	background:#e9da8e;
	float:left;	
}

/*
	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.
*/
.scrollableh .itemsh {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.itemsh div {
	float:left;

}

/* single scrollable item */
.scrollableh img {
	float:left;
	margin:5px 5px 0px 5px;
	background-color:#fff;
	padding:0px;
	border:5px solid #fef1bb;
	width:85px;
	height:55px;
	
}

.scrollableh  a:hover img{

	border:5px solid #ffffff;
	
	
}
/* active item */
.scrollableh .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

  
// Tlačítka
/* this makes it possible to add next button beside scrollable */
.scrollableh {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {

		display:block;
	width:13px;
	height:104px;
	float:left;
	margin:1px 0;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right				{ background: url(images/nahledy-right.png) no-repeat ; } 
a.right:hover				{ background: url(images/nahledy-right-hover.png) no-repeat ; } 


/* left */
a.left				{ background: url(images/nahledy-left.png) no-repeat ; } 
a.left:hover				{ background: url(images/nahledy-left-hover.png) no-repeat ; }




