/* liScroll style declarations */
.tickercontainer { /* the outer div with the black border */
	margin-top:.15em;
	overflow: hidden; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left: 1.5em;
	top: 0;
	overflow: hidden;
	width:65em;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 67em;
}
ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
}
ul.newsticker a {
	margin-right:5em;
	white-space:nowrap;
} 
