/* the news box */
#scroller
{
	width:200px;
	background:#666;
}

#scroller ul
{
	margin:0px;
	padding:0px;
}

#scroller ul li {
	width:200px; 
	overflow:hidden;
	border-bottom:1px solid #FFFFFF;
}

/* the news box when JavaScript is available */
#scroller.hasJS
{
	height: 507px;
	overflow:hidden;
	position:relative;
}
/* The nested UL when JavaScript is available */
#scroller.hasJS ul
{
	position:absolute;
	top:0px;
	left:0px;
	margin:0px;
	padding:0px;
}

