/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
width: 725px; 
height: 24px; 
margin: 0 0 0 8px; 
padding: 0 0 8px;
overflow: hidden; 
background-color: #000; 
background: url(/img/bg_topticker.gif) no-repeat;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 85px;
top: 6px;
width: 640px;
height:24px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 725px;
/*font: bold 10px Verdana;*/
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;
font-size:13px;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #FF0033 !important;
/*font: bold 10px Verdana;*/
margin: 0 60px 0 0;
}
ul.newsticker a:hover { color:#FFCC00;text-decoration:underline; }
ul.newsticker span {
margin: 0 10px 0 0;
} 