/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
border: 0px solid #000;
background: Transparent; 
width: 930px; 
height: 24px; 
margin: 0; 
padding: 0;
overflow: hidden;
margin-left:10px;
margin-right:10px; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
width: 930px; 
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
width: 930px; 
font: bold 12px Verdana;
list-style-type: none;
margin: 0;
padding: 0;
border:0px;
height: 24px; 

}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
background: transparent;
height: 24px; 
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #fff;
font: bold 10px Verdana;
margin: 0px;
height: 24px; 
line-height:24px;
display:block;
vertical-align:middle;
background-color:#ff9900;
margin-right:20px;
text-decoration:none;
text-transform:uppercase;
} 
ul.newsticker span {
margin:0px;
} 
