/* root element for scrollable */
.vertical {  
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */	
	height:256px;		 
	width: 280px;
}
/* root element for scrollable items */
.items {	
	position:absolute;
	/* this time we have very large space for height */	
	height:256px;	
	margin: 0px;
	left:0;
}
/* single scrollable item */
.item {
	display:block;
	width:260px;
	height:52px;
	margin-bottom:12px;
	background-color:#7b3534;
	border:1px solid #a47466;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	font-family:Helvetica, Arial, sans-serif;
	font-size:12px;
	color:#eae1b5;
}
.item:hover	{
	background-color:#a44644;	
}
/* the action buttons above the scrollable */
.actions_top {
	width:260px;
	height:15px;
	margin:0 0 10px -18px;
}
.actions_bot {
	width:260px;
	height:15px;
	margin:10px 0 0 -18px;
}
.actions_top.news, .actions_bot.news	{
	margin-left:0;	
}
.actions_top a, .actions_bot a {
	cursor:pointer;
}

.disabled {
	visibility:hidden;		
}



