/* root element for scrollable */ 
div.flash-news { 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    /* vertical scrollers have typically larger height than width */ 
    height: 163px;
    width: auto; 
} 
 
/* root element for scrollable items */ 
div.flash-news div.items { 
    position:absolute; 
 
    /* this time we have very large space for the height */ 
    height:200px; 
}

/* News Action Buttons */
a.prevPage {
    float:right;
	height: 18px;
	width: 18px;
	background: url("../images/news_up.png") 0 0 no-repeat;
}
a:hover.prevPage { 
	background-position: 0 -18px;
	color: #049;
}
a.nextPage {
	float:right;
	height: 18px;
	width: 18px;
	background: url("../images/news_down.png") 0 0 no-repeat;
}
a:hover.nextPage { 
	background-position: 0 -18px;
	color: #049;
}
#actions {
	height: 100%;
	overflow: auto;
	margin-right: 35px;
}

/* Lastest Article */
.lastest-article {
	padding: 5px; 
	border-bottom: 1px solid #D9D9D9; 
	height: 107px;
    clear:both;
}