/* liScroll style declarations */

.tickercontainer { /* the outer div with the black border */
width: 440px; 
height: 16px; 
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: 0px;
width: 420px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 440px;
font: 9px Verdana;
list-style-type: none;
white-space: nowrap;
margin: 0;
padding: 0;
}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
display: inline;
margin: 0;
padding: 0;
}
ul.newsticker a {
text-decoration: underline;
white-space: nowrap;
font: bold 9px Verdana;
} 
ul.newsticker span {
	margin-left: 10px;
	margin-bottom: 0;
	margin-right: 0px;
	margin-top: 0;
} 