/*
    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
.scrollable {
    position:relative;
    overflow:hidden;
    width: 512px;
    height:120px;
}

/*
    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 {
    width:20000em;
    position:absolute;
    clear:both;
}

#image_wrap {
    width: 512px;
    /*height: 512px;*/
    height: 550px;
    text-align: center;
}


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

.item_wrap {
    display: inline;
    text-align: center;
    width: 100px;
    float: left;
    margin: 13px;
}

/* active item */
.scrollable .active img {
    border:2px solid #000;
    z-index:9999;
    position:relative;
}

#gallery {
    float-left: auto;
    float-right: auto;
    display: inline;
    width: auto;
}

#imageDescription {
    padding-top: 1em;
    padding-bottom: 2em;
    text-align: left;
}

