/* root element for scrollable */
div.scrollable.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 430px;	 
	width: 180px;	
	margin-bottom: 5px;
}

/* root element for scrollable items */
div.scrollable.vertical div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* override item style defined in scrollable.css */
div.scrollable div.items div {
	float:none;
	margin:5px 0px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* background image */
	/*background: #000 url(../img/scrollable/white.jpg) no-repeat 0 0;*/
	
	
	/* text/font settings */
	/*color:#999;
	text-align:center;
	width:178px;
	height:86px;
	padding:25px 0px;
	font-size:11px;
	margin-right: 10px;	
	cursor:pointer;*/
}



/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/left.png) no-repeat;
	float:left;
	/*margin:43px 10px;*/
	cursor:pointer;
	font-size:10px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/right.png);
	clear:right;
	float: right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi 
{
    text-align: center;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:5px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	



