/* root element for scrollable */
div.scrollable {  
	
	/* required settings */
	position:relative;
  overflow:hidden;

	/* vertical scrollers have typically larger height than width */	
	height: 320px;
	width: 118px;
	
	/* decoration */
	padding:0px 6px;
  background-color:#02101b;
}

/* root element for scrollable items */
div.scrollable div.items {	
	position:absolute;
 /* this time we have very large space for height */
	height:20000em;	
}


/* контейнер для элементов, которые мы будет скролить */
div.items {
height:80px;
margin-left:0px;
float:left;
width:120px !important;
}

/* стиль элемента */
div.items a {
display:block;
height:80px;
cursor:pointer;
}

div.items a.active {
cursor:default;
}


/* кнопки вперед и назад */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:125px;
	height:50px;
	margin:0px 0px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}

/* next button uses another background image */
a.next, a.nextPage {

}

