/*
    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
.scrollable {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 8100px;
    height:56px;
}

/*
    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.
*/
.scrollable .items {
    /* this cannot be too large */
    width:20000em;
    position:absolute;
    clear:both;
}

/* single scrollable item */
.scrollable img {
    background-color:#fff;
    padding:2px;
    border:1px solid #ccc;
    cursor:pointer;
    
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
}

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


/*
    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
.scrollable1 {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 8100px;
    height:56px;
}

/*
    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.
*/
.scrollable1 .items {
    /* this cannot be too large */
    width:200000em;
    position:absolute;
    clear:both;
}

/* single scrollable item */
.scrollable1 img {
    background-color:#fff;
    padding:2px;
    border:1px solid #ccc;
    cursor:pointer;
    
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
}

/* active item */
.scrollable1 .active {
    z-index:9999;
    position:relative;
}


/*
    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
.scrollable2 {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 240px;
    height:16px;
    margin-left:10px;
    line-height:20px;
    background-color:none;
    padding:20px 0 5px 0;
}

/*
    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.
*/
.scrollable2 .items {
    /* this cannot be too large */
    width:200000em;
    position:absolute;
    clear:both;
}

/* single scrollable item */
.scrollable2 img {
    background-color:#fff;
    padding:2px;
    border:1px solid #ccc;
    cursor:pointer;
    
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
}

/* active item */
.scrollable2 .active {
    z-index:9999;
    position:relative;
}


/*
    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
.scrollable_ad {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 200px;
    height:14px;
    line-height:20px;
    margin-left:25px;
    background-color:#fff;
    padding:2px 0 5px 0;
}

/*
    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.
*/
.scrollable_ad .items {
    /* this cannot be too large */
    width:200000em;
    position:absolute;
    clear:both;
}

/* single scrollable item */
.scrollable_ad img {
    background-color:#fff;
    padding:2px;
    border:1px solid #ccc;
    cursor:pointer;
    
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
}

/* active item */
.scrollable_ad .active {
    z-index:9999;
    position:relative;
}
