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

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

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

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

.item_news_img_container {
	
	float:left;
	font-size:12px;
	width:150px;
	height:145px;
	overflow:hidden;
	margin:0 8px 0 0;
}

.item_news_img_container img
{	
	border:1px solid #ddd;
	padding:2px;
	width:150px;	
}

.item_news_text_container 
{
	margin:	0;
	padding:0; 	
	text-align:left;
	overflow:hidden;
	height : 125px;
}

.item_news_text_footer
{
	margin: 5px 0 0 0;
	text-align:left;
}

.item_news h3 {
	margin:0 0 5px 0;
	font-size:12px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions_news {		
	width:417px;
	height:26px;
	margin: 0px 0 0px 0;	
}

#actions_news a 
{
	font-size:11px;		
	cursor:pointer;
	color:Gray;
}

#actions_news a:hover {
	text-decoration:underline;
	color:#8f091f;
}

.disabled_news {
	visibility:hidden;		
}

