<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
background: yellow; 
width: 100%;
position:fixed; 
height: 50px; 
margin: 0; 
left:0px;
padding: 0;
bottom: 0px;
overflow: hidden; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 50%;
margin-left: -550px;
top: 5px;
width: 1064px;
margin-top:13px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 750px;
font: bold 10px Verdana;
list-style-type: none;
margin: 0;
padding: 0;

}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
width: 180px;
font: bold 12px Verdana !important;
color: #1d662e;
text-align: center;
background: #ffff00;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #1d662e;
text-decoration: none;

} 
ul.newsticker span {
margin: 0 10px 0 0;
} </pre></body></html>