/*
    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
div.related-scrollable {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 173px;
    height:412px;
}

/*
    root element for scrollable items. Must be absolutely positioned
    and it should have a super large width to accomodate scrollable items.
    it's enough that you set width and height for the root element and
    not for this element.
*/
div.related-scrollable div.items {
    /* this cannot be too large */
    height:20000em;
    position:absolute;
    width: 173px;
}

/*
    a single item. must be floated on horizontal scrolling
    typically this element is the one that *you* will style
    the most.
*/
div.related-scrollable div.items div.clip {
    height: 125px;
    margin-bottom: 15px;
    border: 1px solid #303030;
    cursor: pointer;
}

div#related div.navi {
    height: 10px;
    margin: 11px auto 0;
}

div#related div.navi a {
    background-image: url(/images/frontend/reel/scrollable/navigation-rectangle.png);
    float: left;
    width: 16px;
    height: 10px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 6px;
}

div#related div.navi a.active {
    background-image: url(/images/frontend/reel/scrollable/navigation-rectangle-active.png);
}