/* the news box */
#news
{
	height:105px;
	overflow:hidden;
    visibility:hidden;

}
#news a
{
	color: #333333;
	padding:0;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
}
#news ul
{
	/*color:#333333;*/
	/*margin:0 .5em 0 .5em;*/
	padding:0;    
}
#news li{
	color:#333333;
	line-height:1.3em;
    width:140px;
}
/* the news box when JavaScript is available */
#news.hasJS
{
	height:105px;
	overflow:hidden;
	position:relative;
}
/* The nested UL when JavaScript is available */
#news.hasJS ul
{
	position:absolute;
	top:120px;
	left:0;
	margin:0 .5em 0 .5em;
	padding:0;
}
