/**** Scrollable horizontal ****/
/*
    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
.mod-lineup-scrollable {
    width: auto;
    float: none;
}
.mod-lineup-scrollable .list-wrapper {

    /* required settings */
    position:relative;
    overflow:hidden;

    height: 120px;
    margin: 0 40px;
}

/*
    root element for scrollable items. Must be absolutely positioned
    and it should have a extremely large width to accomodate scrollable items.
    it's enough that you set the width and height for the root element and
    not for this element.
*/
.mod-lineup-scrollable .items {
    /* this cannot be too large */
    width:20000em;
    position:absolute;
    clear:both;
}

/* single scrollable item */
.mod-lineup-scrollable img {

}

/* active item */
.mod-lineup-scrollable .active {
    z-index:9999;
    position:relative;
}


/**** Scrollable buttons ****/

/* this makes it possible to add next button beside scrollable */
.mod-lineup-scrollable {
    /*float:left;    */
}

/* prev, next, prevPage and nextPage buttons */
.mod-lineup-scrollable a.browse {
    background:url(/public/modules/Lineup/theme2/images/scrollable/hori_large.png) no-repeat;
    display:block;
    width:30px;
    height:30px;
    float:left;
    margin:40px 10px;
    cursor:pointer;
    font-size:1px;
}

/* right */
.mod-lineup-scrollable a.right                 { background-position: 0 -30px; margin-right: 0px; float: right; }
.mod-lineup-scrollable a.right:hover         { background-position:-30px -30px; }
.mod-lineup-scrollable a.right:active     { background-position:-60px -30px; } 


/* left */
.mod-lineup-scrollable a.left                { margin-left: 0px; } 
.mod-lineup-scrollable a.left:hover          { background-position:-30px 0; }
.mod-lineup-scrollable a.left:active      { background-position:-60px 0; }

/* up and down */
.mod-lineup-scrollable a.up, .mod-lineup-scrollable a.down        { 
    background:url(/public/modules/Lineup/theme2/img/scrollable/arrow/vert_large.png) no-repeat; 
    float: none;
    margin: 10px 50px;
}

/* up */
.mod-lineup-scrollable a.up:hover          { background-position:-30px 0; }
.mod-lineup-scrollable a.up:active          { background-position:-60px 0; }

/* down */
.mod-lineup-scrollable a.down                 { background-position: 0 -30px; }
.mod-lineup-scrollable a.down:hover          { background-position:-30px -30px; }
.mod-lineup-scrollable a.down:active      { background-position:-60px -30px; } 


/* disabled navigational button */
.mod-lineup-scrollable a.disabled {
    visibility:hidden !important;        
}     

/**** Scrollable navigator ****/

/* position and dimensions of the navigator */
.mod-lineup-scrollable .navi {
    margin-left: 50%;
    height:20px;
}


/* items inside navigator */
.mod-lineup-scrollable .navi a {
    width:8px;
    height:8px;
    float:left;
    margin:3px;
    background:url(/public/modules/Lineup/theme2/images/scrollable/navigator.png) 0 0 no-repeat;
    display:block;
    font-size:1px;
}

/* mouseover state */
.mod-lineup-scrollable .navi a:hover {
    background-position:0 -8px;      
}

/* active state (current page state) */
.mod-lineup-scrollable .navi a.active {
    background-position:0 -16px;     
}

