/*=== SCROLLABLE ======*/
.scrollable
{
    position:relative;
    overflow:hidden;

    /*height: 200px;*/
    width: 700px;
}

/* root element for scrollable items */
.scrollable .items
{
    position:absolute;
    height:20000em;
}

.scrollable .items li
{
    float: left;
}

/** Premium Scrollable **/
.premium_scrollable {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 600px;
    height:300px;
}

.premium_scrollable .items {
    /* this cannot be too large */
    width:20000em;
    position:absolute;
    clear:both;
}

.items div {
    float:left;
    width:600px;
}

div.icon{
    width: auto;
}


.premium_scrollable .active {
    border:2px solid #000;
    position:relative;
    cursor:default;
}



/*=== OVERLAY =====*/
#overlay
{
    display:none;
    z-index:10000;

    /* CSS3 styling for latest browsers */
    box-shadow:0 0 90px 5px #000;   /* Opera */
    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
}


