/* CSS Document 

/* liScroll style declarations 

.tickercontainer { 
width: 640px; 
height: 20px; 
margin: 0; 
padding: 0;
overflow: hidden;
float:left;
}

.tickercontainer .mask { 
position: relative;
left: 100px;
top: 2px;
width: 628px;
overflow: hidden;
}

ul.newsticker { 
position: relative;
left: 130px;
font-family:"Trebuchet MS", Arial, sans-serif;
font-size:10px;
color:#000;
list-style-type: none;
margin: 0;
padding: 0;
}
ul.newsticker li {
float: left; 
margin-left: 100px;
padding: 0;
background-image:url(../images/avion.png);
background-repeat:no-repeat;
}

ul.newsticker span {
margin: 0 10px 0 22px;
color:#999999;
} 
*/
.tickercontainer { /* the outer div with the black border */
width: 630px; 
height: 22px; 
margin: 0; 
padding: 0;
overflow: hidden;
float:left; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
top: 4px;
width: 610px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 630px;
font-family:"Trebuchet MS", Arial, sans-serif;
font-size: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-left: 50px;
padding: 0;
background-image:url(../images/avion.png);
background-repeat:no-repeat;
width:700px;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #ff0000;
font: bold 10px Verdana;
margin: 0 50px 0 0;
} 
ul.newsticker span {
margin: 0 10px 0 22px;
color:#999999;
} 