.tickercontainer { /* the outer div with the black border */
    background: transparent; 
    width: 767px; 
    height: 20px; 
    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;
    width: 767px;
    overflow: hidden;
}
ul.newsticker { /* that's your list */
    position: relative;
    left: 767px;
    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: transparent;
    color: #ccc;
}
ul.newsticker a {
    line-height: 20px;
    white-space: nowrap;
    padding: 0;
    /*font: bold 10px Verdana;*/
    margin: 0;
    /*
    padding: 0 0 0 20px;
    background: transparent url(/img/li_bullet-03.png) 0 0.5em no-repeat;
    */
    color: #888;
} 
ul.newsticker span {
    margin: 0 10px 0 0;
}

#news-scroll {
    width: 767px;
    position: absolute;
    bottom: 25px;
    right: 40px;
    height: 20px;
    display: none;
}

#news-scroll h3 {
    font-weight: bold;
    margin: 0;
    padding: 0 10px 0 0;
    font-size: 1em;
    line-height: 20px;
    position: absolute;
    z-index: 99;
    background: #fff;
    left: 0;
}

#news-scroll h3 a {
    color: #888;
}


