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

	/* vertical scrollers have typically larger height than width */	
	height: 293px;	 
	width:240px;	
	
	/* decoration */
	padding:0px 10px;
	border:1px outset #e1e4d3;
	background-color:#f1f4e8;	
	float:left;
}

/* 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:9px;
	margin-left: 7px;
	left: 2px;
	top: 0px;
}

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable div.items div {
	text-align:center;
	width:240px;
	height:86px;
	padding:0px 0px;
	font-size:30px;
	border:1px outset #e1e4d3;
	background-color: #ddd;
	margin-bottom:9px;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #e1e4d3;		
	background-color:#fff;
}

.miboton {
    color:transparent; 
    background: transparent; 
    width:240px; 
    height:86px; 
    border:0px; 	
    padding:0px 0px;
    margin-bottom:9px; 
    cursor:pointer; 
} 
