/* liScroll styles */
.tickercontainer { /* the outer div with the black border */
	width:1100px; height:32px;
	margin:0; padding:0;
	overflow:hidden; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left:10px; top:6px;
	width:1080px;
	overflow:hidden;
}
ul.newsticker { /* that's your list */
	position:relative;
	left:975px;
	list-style-type:none;
	margin:0; padding:0;
}
ul#ticker01 {
	color:#FFF;
}
ul.newsticker li {
	float:left; /* important: display inline gives incorrect results when you check for elem's width */
	font-size:120%;
	font-weight:bold;
	margin:0; padding:0 50px;
}
ul.newsticker a {
	white-space:nowrap;
	margin:0 50px 0 0; padding:0;
} 
ul.newsticker span.source {
	font-size:80%;
	font-style:italic;
	font-weight:normal;
	margin:0 10px;
} 