/* liScroll styles */
.tickercontainer {
    /* the outer div with the black border */
    background: #320000;
    width: 610px;
    height: 26px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: 20px
    }
.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: 600px;
    overflow: hidden;
    color: #fff;
    text-transform: uppercase
    }
ul.newsticker {
    /* that's your list */
    position: relative;
    left: 610px;
    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;
    white-space: nowrap;
    display: inline;
    padding-left: 20px
    }
ul.newsticker a {
    white-space: nowrap;
    padding: 0;
    color: #fff;
    text-decoration: underline
    }
ul.newsticker span {
    margin: 0 8px 0 8px;
    font-weight: normal;
    border-left: 2px solid #fff;
    padding-left: 10px
    }
ul.newsticker li.first span {
    border-left: none;
    padding-left: 0
    }