﻿
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/

div.scrollable {
	
	/* required settings */
	overflow:scroll;	 	
	width: 200px;	
	height: 437px;
	/* custom decorations */
	border:1px;
	/*background-color:#efefef;	*/
	background-color:White;
	float:left;	
}


div.scrollable div.items {	
	/* this cannot be too large */
	width: 145px;

	/* decoration */
	z-index:1;	

}




/* single scrollable item */
div.scrollable div.items div
{
	width: 145px;
	text-align:center;
	height:125px;
	font-family: Calibri;
	font-size: 10px;
	display:inline;
	cursor:hand;
	
}






