/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	float:none;
	/* vertical scrollers have typically larger height than width */	
	/*height: 665px;	 
	width: 700px;
	border:1px solid #666;
	background:url(/mod/bcs/jquery_slideshow/images/v300.png) repeat-y;*/
	clear:both;

}

/* root element for scrollable items */
.vertical .items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
	width:auto;
}

/* single scrollable item */
/*.vertical .item {
	padding:15px;
	font-size:12px;
	height:100px;
}*/

/* elements inside single item */
/*.vertical .item img {
	float:left;
	height:100px;
	width:100px;
	margin: 0px auto;
	background-color: #CCC;
	padding: 3px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}*/
/* the action buttons above the scrollable */

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}