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: 100%;
    height: 24px; /* height should be included to reserve visual space for the marquee */
/*
    background-color: #f2f2ff;
    border: 1px solid #08084d;
*/    
}

ul.marquee li {
    /* required styles */
    position: absolute;
    top: -999em;
    left: 0;
    display: block;
    white-space: nowrap; /* keep all text on a single line */

    /* optional styles for appearance */
    padding: 3px 5px;
    color:#333;
}