/* the news box */
#news
{
	width:500px;
	height:35px;
}
#news a
{
	color:#000;
}
#news ul
{
	display:none;
	list-style:none;
	margin:0 .5em 0 1em;
	padding:0;
}
#news li{
	display:inline;
	float:left;
	margin-right:30px;
	line-height:2em;
}
/* the news box when JavaScript is available */
#news.hasJS
{
	height:30px;
	overflow:hidden;
	position:relative;
	margin:25px 0 0 50px;
	border:1px solid #000;
}
/* The nested UL when JavaScript is available */
#news.hasJS ul
{
	display:block;
	position:absolute;
	top:0;
	left:500px;
	margin:0 .5em 0 .5em;
	padding:0;
	width:2750px;
}
