/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
width: 900px; 
height: 25px; 
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: 0px;
heigth: 10px;
width: 880px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 880px;
font: bold 11px;
list-style-type: none;
margin: 0;
padding: 0;

}
ul.ticker{
	margin: 0px; padding:0px; background: black;
}

ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0 50px 0 0;
padding: 0;
font-size: 11px;
color: #e8da20;
}

span.title {
margin: 0 8px 0 0;
color: #FFFFFF;
font-size:11px;
font-weight:bold;
} 

span.utitle {
margin: 0 50px 0 0;
color: #e8da20;
font-size:11px;
font-weight:bold;
} 