/* the news box */
#news
{
position:relative;
	background:#fff;
}
#news a
{
	color:#000;
}
#news ul
{
	margin:0;
	padding:0;
	list-style-image: none;
}
#news li{
	line-height:2em;
	list-style-image: none;
}
/* the news box when JavaScript is available */
#news.hasJS
{
	height:150px;
	overflow:hidden;
	position:relative;

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

/* the events box */
#events
{
	width:210px;
	background:#fff;
}
#events a
{
	color:#000;
}
#events ul
{
	margin:0;
	padding:0;
	list-style-image: none;
}
#events li{
	line-height:2em;
	list-style-image: none;
}
/* the news box when JavaScript is available */
#events.hasJS
{
	height:150px;
	overflow:hidden;
	position:relative;	
}
/* The nested UL when JavaScript is available */
#events.hasJS ul
{
	position:absolute;
	top:60px;
	left:0;
	margin:0;
	padding:0;
}
