/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
width: 640px; 
height: 140px; 
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: 8px;
width: 718px;
*/
overflow: hidden;
}
.newsticker { /* that's your list */
position: relative;
left: 640px;
list-style-type: none;
margin: 0;
padding: 0;
white-space:nowrap;

}
.newsticker p {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
text-align:center;
line-height:100%;
margin: 0;
padding: 0;
margin: 0 2px 0 0;
}
