/* Start of CMSMS style sheet 'li-scroller.css' */
/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
width: 320px; 
height: 20px; 
white-space: nowrap;
margin: 0; 
padding: 0
overflow: hidden; 
line-height:20px;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
white-space: nowrap;
left: 0px;
top: 8px;
width: 320px;
height: 20px;
line-height:20px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 350px;
font: bold 13px Arial;
list-style-type: none;
margin: 0;
padding: 0;
}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
}
ul.newsticker a {
padding: 0;
color: #E31837;
font: bold 13px Arial;
margin: 0 50px 0 0;
} 
ul.newsticker a:hover {
padding: 0;
color: #000000;
font: bold 13px Arial;
margin: 0 50px 0 0;
} 
ul.newsticker span {
margin: 0 10px 0 0;
} 
/* End of 'li-scroller.css' */

