﻿/* liScroll styles */

td.tickercontainer { /* the outer div with the black border */
width: 978px;
height: 39px; 
margin: 0; 
padding: 0;
overflow: hidden; 
}
td.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 0px;
top: 0px;
width: 968px;
overflow: hidden;
}
ul.newsticker td{ /* that's your list */
position: relative;
left: 978px;
margin: 0;
padding: 0;

}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
}
ul.newsticker span {
margin: 0 10px 0 0;
} 
