ul.marquee
{
    /* required styles */
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 1;
    position: relative;
    overflow: hidden; /* optional styles for appearance */
    width: 98%;
    height: 15px; /* height should be included to reserve visual space for the marquee */
    
    border-style: none;
}

ul.marquee li
{
    /* required styles */
    position: absolute;
    top: -999em;
    right: 0px;
    white-space: nowrap; /* keep all text on a single line */ /* optional styles for appearance */
    font: Arial,Helvetica,Tahoma,Verdana;
    font-size: 11px;
    padding: 1px 1px 1px 1px;
    font-weight: bold;
    color: #596873;
    display: none;
}

ul.marquee li.marquee-showing {
    display: block;
}