
div.scrollable {   
     
    /* required settings */ 
    position:relative; 
    overflow:hidden;     
 
    /* vertical scrollers have typically larger height than width */     
    height: 100px;      
    width: 116px;     
} 
 

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:24px;
	background-color:#FFFFFF;
	height:19px;
background-image:url(../img/up.jpg);
background-repeat:no-repeat;
	float:right;
	cursor:pointer;
	font-size:1px;
	margin-right:23px;
	z-index:100;
	margin-top:2px;
	
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px 0px;		
}
/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../img/dwn.jpg);
	margin-top:0px;
	width:24px;
	height:19px;
	clear:right;	
}

/* root element for scrollable */
div.scrollable.vertical {  
	overflow:hidden;	
	height: 35px;	 
	width: 110px;
text-align:center;
margin-top:20px;
}

/* 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;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	color:#000000;
	text-align:center;
    width: 110px;
	height: 35px;
    font-size:9px;
    cursor:pointer;
	margin-top:0px;
}
div.scrollable div.items div a{
	color:#000000;
}

/* mouseover state */
div.scrollable div.items div:hover {	
	background-position:-178px 0px;
}

/* clicked state */
div.scrollable div.items div:active {	
	background-position:-356px 0;
}

/* active item */
div.scrollable div.items div.active {	
	background-position:-534px 0;
	cursor:default;
}


