/* single scrollable item */
.scrollable img {
	background-color: #fff;
	padding: 2px;
	margin: 2px 0 2px 0;
	border: 1px solid #ccc;
	cursor: pointer;
	width: 120px;
	height: 89px;
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

/* root element for scrollable */ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 398px; 
    width: 130px;
	
	margin: 0 auto;
	margin-top: 6px;
	margin-bottom: 2px; 
} 
 
/* root element for scrollable items */ 
div.scrollable div.items { 
    position:absolute; 
 
    /* this time we have very large space for the height */ 
    /*height:20000em;*/ 
}



