/* root element for scrollable */
.scrollable_sube {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 294px;	 
	width: 250px;
	border:1px solid #ddd;			
	/*background-image: url(../Images/news_back1.jpg);*/
		
}

/* root element for scrollable items */
.items_sube {	
	position:relative;	
	/* this time we have very large space for height */	
	height:20000em;
	margin:0;
}

/* single scrollable item */
.item_sube {
	border-bottom:1px solid #ddd;
	margin:2px 0 2px 0;
	overflow:hidden;
	padding:0 0 0 5px;
	font-size:12px;
	height:24px;	
}

/* elements inside single item */
.item_sube img {
	float:left;
	margin-right:20px;
	height:20px;
	width:240px;
}

.item_sube h3 {
	margin:0;
	font-size:12px;
	font-weight:normal;
}


.item_sube p
{
    margin: 0px;
}

.item_sube a
{
    color:#696969;
    text-decoration: none;
    font-style:normal;
    font-weight:normal;
}


/* the action buttons above the scrollable */
#actions_sube {		
	width:250px;
	height:26px;
	margin:2px 0 0px 0;	
	font-size:12px;  
	background: url(../Images/col_header_bg_black.jpg);
}

#actions_sube a 
{
	font-size:11px;		
	cursor:pointer;
	color:White;
}

#actions_sube a:hover {
	text-decoration:underline;
	color:Yellow;
}

.disabled_sube {
	visibility:hidden;		
}

