/* root element for scrollable */
div.scrollable {  
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 180px;	 
	width: 200px;	
	
	/* decoration */
	padding: 0px;
	margin: 0px 0px 0px 4px;
	border:0px solid #000;
  border-bottom: 1px solid #e3e3e3;
	background-color:#fff;
}

/* root element for scrollable items */
div.scrollable div.items {	
	position:absolute;
	/* this time we have very large space for height */	
	height:20000em;	
	/* decoration */
	margin-top:10px;
}

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
div.scrollable {
	text-align:left;
	width:185px;
	padding:0px 0px;
	border:1px solid #000;
	background-color: #ddd;
	margin-bottom:10px;
}
*/

div.items {
	text-align:left;
	width:200px;
	padding:0px 0px;
	border:0px solid #666;
	background-color: #fff;
	margin-bottom:10px;
}

/* active item */
div.scrollable div.items div.active {
	border:0px inset #e3e3e3;		
	background-color:#fff;
}
/* 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/arrow/left.gif) no-repeat;
	float: left;
  margin: 0px;
	cursor:pointer;
  border: 0px solid #000; 
  margin: 0px 0px 0px 0px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/arrow/right.gif);
	clear:right;	
}



/*********** navigator ***********/
/* position and dimensions of the navigator */
div.navi { margin-left:328px; width:200px; height:20px; border: 1px solid #000; }
div.navi a { width:8px; height:8px; float:left; margin:3px; background:url(../images/navigator.png) 0 0 no-repeat; cursor:pointer;}
l/* items inside navigator */
/* mouseover state */
div.navi a:hover { background-position:0 -8px; }
/* active state (current page state) */
div.navi a.active { background-position:0 -16px; } 
