/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
background: #E3E3E3; 
width: 890px; 
height: 70px; 
margin: 0px; 
padding: 0px;
overflow: hidden; 
}
ul.newsticker li img {
float: left;
height: 70px;
margin-right: 20px;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
width: 888px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 750px;
font: bold 10px Verdana;
list-style-type: none;
margin: 0px;
padding: 0px;

}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
background: #E3E3E3;
}
ul.newsticker a {
background-color: #E3E3E3;
padding: 0px;
color: #E3E3E3;
font: bold 10px Verdana;
margin: 0 20px 0 0;
} 

