/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
background: #FFFFFF; 
width: 100%; 
height: 35px; 
margin: 0px; 
padding: 0px;
overflow: hidden; 
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left:0px;
top:0px;
width: 100%;
overflow: hidden;
}

ul.ulLogos { /* that's your list */
position: relative;
font: bold 10px Verdana;
list-style-type: none;
margin: 0;
padding: 0;
    top: 0px;
    left: 0px;
}

ul.ulLogos li 
{
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin-left:10px;
margin-right:10px;
padding: 0;
margin-top:10px;
}

ul.ulLogos a
 {
white-space: nowrap;
padding: 0;
color: #ff0000;
font: bold 10px Verdana;
margin: 0 50px 0 0;
} 

ul.ulLogos span
 {
margin: 0 10px 0 0;
} 