/*--FROM http://flowplayer.org/tools/demos/scrollable/vertical.html--*/

/* root element for scrollable */
div.scrollable {  
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */	
	height: 450px;	 
	width: 170px;	
	/* decoration */
	margin:20px auto 0;
	padding:0;
	border:none;
	background:#ffffff;
	/*outline:2px dashed green;*/
}

/* 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:0px;
}

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable div.items div {
	text-align:center;
	width:160px;
	height:100px;
	padding:0;
	background:#ffffff;
	margin:0;
}

/* active item */
div.scrollable div.items div.active {
	border:none;
	background:#ffffff;
}
