.tickercontainer { /* the outer div with the black border */
margin: 0; 
padding: 0;
overflow: hidden;
width: 771px; /*duru: line added*/
}

.tickercontainerwide { /* duru: class added */
width: 955px;
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 0;
top: 0;
overflow: hidden;
height: 43px;
width: 771px;
}

.tickercontainerwide .mask {
	width:955px;
}

#ticker-pane {
  position: relative;
  left: 1000px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 40px; /*duru: line added*/
}

#ticker-pane li {
  float: left; /* important: display inline gives incorrect results when you check for elem's width */
  margin: 0 25px 0 0;
  padding: 0;
  height: 40px; /*duru: line added*/
}