/* this page declarations */	

.tickercontainer { /* the outer div with the black border */
background: #f5f5f5; 
width: 760px; 
height: 18px; 
padding: 4px 0 0 0;
overflow: hidden; 
margin:4px 0 3px 8px;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
top: 0px;
width: 742px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 565px;
font: bold 10px Verdana;
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: 0;
  padding:0;
  background: #f5f5f5;
  font-size:12px;
  font-weight:normal;
  color:#4A6496
}
ul.newsticker {
  white-space: nowrap;
  padding: 0;
  color: #a1a1a1;
  font: bold 10px Verdana;
  margin: 0 50px 0 0;
} 
ul.newsticker span.first {
  margin:0 700px 0 0;
} 

