/* CSS Document */



/* SCROLL HOME */

/* root element for scrollable */ 
div.scrollable {
	
	/* required settings */
	position:relative;
	left:0px;
	overflow:hidden;
	
	/* vertical scrollers have typically larger height than width */
/*	height: 380px;*/
	width: 290px;}

/* root element for scrollable items */ 

div.scrollable div.items {
	position:relative;
	/* this time we have very large space for the height */
	/*height:20000em; */
	}
	

div.botons{
	position:absolute;
	right:-10px;
	top:0px;
}


