/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
width: 987px; 
height:33px;
margin: 0; 
padding: 0;
overflow: hidden; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
top: 6px;
width: 957px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 987px;
list-style-type: none;
margin: 0;
padding: 0;

}
ul.newsticker li {
	display:inline;
float: left !important; /* important: display inline gives incorrect results when you check for elem's width */
background-image:url('../../../../images_componenta2011/scroller_li.gif');
background-repeat:no-repeat;
background-position:left;
padding-left:10px;
padding-right:6px;
margin-right:20px;
color:#666666;
font-weight:bold;
font-size:11px;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
font-size:11px;
text-decoration:none;
font-weight:bold;
color:#006699;
} 
ul.newsticker span {
margin: 0 10px 0 0;
} 