/* Ticker Styling */
/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
border: 0px solid #000;
background: transparent; 
color: #ffffff;
width: auto; 
height: 25px;
margin-left: 230px;
padding: 0;
overflow: hidden; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
margin-right: 10px;
left: 0px;
top: 8px;
width: auto;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 700px;
font: bold 10px;
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-right: 20px;
padding: 0;
background: transparent;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #9faab1;
font: bold 11px;
margin: 0 0 0 0;
} 

ul.newsticker a:hover {
white-space: nowrap;
color: #63ac9c;
} 

ul.newsticker span {
margin: 0 10px 0 0;
} 