/* liScroll styles */

#HomeTicker
{
    /* the outer div with the black border */
    position: relative;
    border-top: 1px solid #272727;
    border-bottom: 1px solid #272727;
    width: 525px;
    height: 23px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#HomeTicker .Mask
{
    /* that serves as a mask. so you get a sort of padding both left and right */
    width: 525px;
    height: 23px;
    overflow: hidden;
}
#HomeTicker ul
{
    /* that's your list */
    position: relative;
    left: 750px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#HomeTicker ul li
{
    font-size: 0.9em;
    background: transparent none;
    float: left; /* important: display inline gives incorrect results when you check for elem's width */
    margin: 0;
    padding: 0;
}
#HomeTicker ul a
{
    text-decoration: none;
    white-space: nowrap;
    padding: 0;
    color: #888686;
    margin: 0 70px 0 0;
    font-weight: bold;
}
#HomeTicker ul a:hover
{
    color: #FFFFFF;
}
