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

	/* vertical scrollers have typically larger height than width */	
	height: 370px;	 
	width: 248px;
	border:1px solid #ddd;		
	/*background-image: url(../Images/news_back1.jpg);*/
		
}

/* root element for scrollable items */
.items_vefat {	
	position:relative;	
	/* this time we have very large space for height */	
	height:20000em;
	margin: 0px;	
}

/* single scrollable item */
.item_vefat 
{
	border-bottom:1px solid #ddd;
	overflow:hidden;
	margin:0;
	padding:5px;
	font-size:12px;
	height:82px;
}

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

.item_vefat h3 {
	margin:0 0 2px 0;
	font-size:11px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions_vefat {		
	width:250px;
	height:26px;
	margin:0px 0 0px 0;	
	font-size:12px;  
	background: url(../Images/col_header_bg_black.jpg);
}

#actions_vefat a 
{
	font-size:11px;		
	cursor:pointer;
	color:White;
}

#actions_vefat a:hover {
	text-decoration:underline;
	color:Yellow;
}

.disabled_vefat {
	visibility:hidden;		
}

