/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
border: 0px solid #000;
background: orange; 
width: 100%; 
height: 30px; 
overflow: hidden; 
/*position:fixed;*/
z-index:9999;
margin-top:-25px;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 5px;
top: 4px;
overflow: hidden;
width:99%;
}
ul.newsticker { /* that's your list */
position: relative;
font: normal 12px Arial;
list-style-type: none;
margin: 0;
padding: 0;
left:-2500px;
}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
background: orange;
}
ul.newsticker a {
padding: 0;
color: #000;
font: 16px Arial;
font-weight:bold;
margin: 0 50px 0 0;
text-decoration:none;
} 
ul.newsticker a:hover {
	font-weight:bold;
	color: #3590A9;
} 
ul.newsticker span {
margin: 0 50px 0 0;
} 