@charset "utf-8";
/* CSS Document */

/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 156px;	 

}

/* root element for scrollable items */
.items {	
	position:absolute;
	/* this time we have very large space for height */	
	height: 600px;	
	margin: 0px;
}
.items ul { padding: 0; margin: 0;	

}
/* single scrollable item */
.item {
  font-size:11px;
  height:34px;
  line-height:16px;
  margin:0;
  padding:2px 0 3px 14px;
  width:500px;
}

/* elements inside single item */
.item { list-style: none; }

.item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions, #actions-2 {
	margin: 10px 0 10px 0;
	background: #999;
	padding: 0 10px;	
}
.front #info #actions a {
	font-size:11px;		
	cursor:pointer;
	color: #FFF;
}

.front #info #actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	

.showlist-sc { width: 515px; 

}
