@charset "utf-8";
/* liScroll style declarations */

.tickercontainer { /* the outer div with the black border */
border: none;
background: #6d7f98; 
width: 93.1em;
min-width:931px;
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: 0;
top: 0px;
width: 93.1em;
min-width:931px;
overflow: hidden;
height:23px;
}
ul.newsticker { /* that's your list */
position: relative;
left: 100%;
font-size:1.2em;
font-weight:bold;
font-family:"Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, sans-serif;
list-style-type: none;
margin: 4px 0 0 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: none;
color:#fff;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #fff;
font-size:1em;
font-weight:bold;
font-family:"Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, sans-serif;
text-decoration:none;
margin: 0 0px 0 0;
} 
ul.newsticker span {
margin: 0 10px 0 0;
} 

