@charset "UTF-8";
/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
background:url(../img/ticker_bg.gif) no-repeat;
width: 549px; 
height: 25px; 
margin: 0; 
padding: 0
overflow: hidden;
text-align:left;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 54px;
top: 6px;
width: 485px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 549px;
width: 549px; 
font: bold 10px Verdana;
list-style-type: none;
margin: 0;
padding: 0;
color: #ffaa00;

}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
color: #ffffff;
}
ul.newsticker li a {
white-space: nowrap;
padding: 0;
font: bold 10px Verdana;
margin: 0 70px 0 0;
color: #ffaa00;
} 
ul.newsticker span {
margin: 0 10px 0 0;
font-weight:normal;

} 

ul.newsticker li a:link{color: #ffaa00;}
ul.newsticker li a:visited {color: #ffaa00;}
ul.newsticker li a:hover {color: #ffffff;}
ul.newsticker li a:active {color: #ffffff;}




