/* the news box */
#news
{
	width:275px;
	background:#fff; background-image:	url(images/sfondo_newsticker.jpg); background-repeat:no-repeat;
	height:125px; /* new */
	overflow:hidden;
}

#news a{	color:#0B1760; text-decoration:none}
#news a:hover{	color:#000; text-decoration:underline}

#news ul
{	margin:10px;
	padding:0;}


#news li{	margin-bottom:10px; font-weight:bold;  font-size:12px; color:#0B1760}
#news li span{ font-weight:normal; font-size:11px;}

/* the news box when JavaScript is available */
#news.hasJS
{	height:125px;
	overflow:hidden;
	position:relative;
	}

/* The nested UL when JavaScript is available */
#news.hasJS ul
{
	position:relative; /* absolute */
	top:125px;
	left:0;
	margin:10px;
	padding:0;
}

