/*default CSS for SAG scroller*/

.newsscroller{
	width: 175px;  /*default width of scroller*/
	height: 172px;
	overflow: hidden;
	position: relative;
	/*border-radius: 8px; css3 round corners*/
	/*-moz-border-radius: 8px; css3 round corners*/
	/*-webkit-border-radius: 8px; css3 round corners*/
}

.newsscroller a{
	font-weight: bold;
}

.newsscroller ul{
	position: absolute;
	margin: 0;
	padding: 0;
	background: white;
	list-style: none;
	width: 100%;
}

.newsscroller ul li{
	display: block;
	background: #7c7c7e;
	color: black;
	padding: 5px;
	margin-bottom: 5px; /*bottom spacing between each LI*/
}

.newsscroller ul li .rsscontent{ /*div containing body of each RSS entry*/
	font-size: 90%;
}

.newsscroller ul li .rsslabel{ /*div containing label of each RSS entry*/
	margin-top: 5px;
	background: #eee;
	font-size: 12px;
	clear: both;
}