/* root element for scrollable */
.scrollable_vert {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 220px;	 
	/* width: 200px; */
	border-top:1px solid #ddd;	
}

/* root element for scrollable items */
.scrollable_vert .items_vert {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
	overflow:auto;
}

/* rasul - added */
.scrollable_vert .items_vert .item_set {
	/*
	background-image:url(../../../../images/transparent-pixel-10.png);
	background-repeat: repeat;
	*/
}

.items_vert .last {
	border-bottom: thin solid #666;
}

/* single scrollable item */
.items_vert .item {
	margin:10px 0;
	padding:15px;
	font-size:10px;
}

/* elements inside single item */
.items_vert .item img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.items_vert .item h3 {
	margin:0 0 5px 0;
	font-size:12px;
	color:#cecfdb;
	font-weight:normal;
}

.items_vert .item h2 {
	text-align:left;
	font-size:10px;
	color:#FFF;
	font-weight: bold;
	font-style:italic;
}

.items_vert .item h1 {
	font-size:5px;
	color:#FFF;
	text-align:center;
	margin:5px 0;
}

/* the action buttons above the scrollable */
#actions {
	width:200px;
	margin:10px 0 10px 0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}
	
.prev {
	float:right;
}	
