#scroller_container {
 position: relative;
 width: 320px;
    height: 27px; 
 overflow: hidden;
}

#scroller {
 white-space: nowrap;
}

#scroller p {
 padding: 0;
margin: 0 10px 0 0;
font-weight: bold;
color: #333;
font-size: 10px;
}

#scroller ul {
 list-style: none;
}

#scroller ul li {
    float: left; /* important: display inline gives incorrect results when you check for elem's width */
    padding: 0 10px 0 0;
    border-right: 1px solid #333;
    margin: 0 10px 0 0;
    font-weight: bold;
    color: #333;
    font-size: 10px;
}

