/* liScroll style declarations */

.tickercontainer { /* the outer div with the black border */
  background-color: black;
  width: 428px;
  height: 18px;
  padding: 5px 5px;
  font-size: 14px;
  color: #999999;
  overflow: hidden;
  
  top: 9px;
  left: 12px;
  float: left;
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
  position: relative;

  width: 428px;
  overflow: hidden;
}

ul.newsticker { /* that's your list */
  position: relative;
  left: 428px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.newsticker li {
  float: left !important; /* important: display inline gives incorrect results when you check for elem's width */
  margin: 0;
  padding: 0;
}

ul.newsticker li span {
  white-space: nowrap;
  margin-right: 50px;
}