/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
width: 743px; 
height: 29px; 
margin: 0; 
padding: 0;
overflow: hidden;
border-top: solid 1px #4377b1;
border-bottom: solid 2px #4377b1;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 5px;
top: 8px;
width: 733px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 750px;
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;
background: #fff;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #4377b1;
font: bold 10px Verdana;
margin-right: 30px;
} 
ul.newsticker a:hover {color: #f7742c; }

ul.newsticker span {
margin-right: 2px;
color: #f7742c;
}
