/* CSS Document */
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 450px;
	height:40px;
	padding:0;
	margin:0px;
}
div.scrollable ul#news {
	margin:0;
	padding:15px 0 0 10px
}
.latest {
	float:left;
	padding:15px 0px;
	margin-left:22px;
	color:#ec5b03;
	font-size:.9em;
	font-weight:bold;
	text-decoration:none;
}
/* Estilos para el scroll parecido a la BBC */


#news li {
	list-style:none;
	color:#333;
	font-size:1em;
	padding:0;
	margin:0;
	color:#333;
	font-weight:bold;
}
#news li a {
	color:#333;
	text-decoration:none
}
