@charset "UTF-8";
/* CSS Document */

/* liScroll style declarations */

.tickercontainer { /* the outer div with the black border */
border: 0px solid #000;
width: 100%; 
height: 25px; 
position:absolute;
bottom:32px;
left:105px;
padding: 0px;
overflow: hidden; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 105px;
top: 8px;
padding-left:10px;
padding-right:20px;
width: 100%;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
right: 50px;
font: 7pt Century Gothic;
color:#FFF;
list-style-type: none;
margin-bottom: 50px;
padding-right: 20px;

}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin-bottom: 50px;
padding-right: 20px;
color:#FFF;
}
ul.newsticker a {
white-space: nowrap;
padding-right: 20px;
color:#FFF;
font: 7pt century;
margin: 0 50px 0 50px;
} 
ul.newsticker span {
	padding-right: 20px;
}