@charset "utf-8";

/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
border: 1px solid #05ae2d;
background: #fff; 
width: 600px; 
height: 46px; 
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: 0px;
top: 10px;
width: 600px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 600px;
font: bold 18px 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;
background: #fff;
color:#ff0000;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #ff0000;
font: bold 18px Verdana;
margin: 0 50px 0 0;
} 
ul.newsticker span {
margin: 0 10px 0 0;
color:#666;
font: normal 18px Verdana;
} 


ul.newsticker span.blue {
margin: 0 10px 0 0;
color:#00a0e9;
font: bold 18px Verdana;
} 
ul.newsticker span.darkblue {
margin: 0 10px 0 0;
color:#00529c;
font: bold 18px Verdana;
} 
ul.newsticker span.yellow {
margin: 0 10px 0 0;
color:#fabe00;
font: bold 18px Verdana;
} 
ul.newsticker span.orange {
margin: 0 10px 0 0;
color:#e94709;
font: bold 18px Verdana;
} 
ul.newsticker span.purple {
margin: 0 10px 0 0;
color:#a15c9d;
font: bold 18px Verdana;
} 
ul.newsticker span.red {
margin: 0 10px 0 0;
color:#f70202;
font: bold 18px Verdana;
} 
ul.newsticker span.green {
margin: 0 10px 0 0;
color:#6bb92d;
font: bold 18px Verdana;
} 
ul.newsticker span.pink {
margin: 0 10px 0 0;
color:#eb6ea5;
font: bold 18px Verdana;
} 
