﻿div.scrollable {   
     
    /* required settings */ 
    position:relative; 
    overflow:hidden;     
 
    height: 610px;      
    width: 300px; 
} 
 
/* root element for scrollable items */ 
div.scrollable div.items {     
    position:absolute;  
}

a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:45px;
	height:45px;
	background:url(../images/arrow/up.png) no-repeat;
	float:left;
	cursor:pointer;
	margin-top:10px;
}
a.prev
{
    margin-left:80px;
}
a.next
{
    margin-left:20px;
}

a.disabled {
	visibility:hidden !important;		
}

a.next, a.nextPage {
	background-image:url(../images/arrow/down.png);
	clear:right;	
}
