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



.scrollable {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 500px;
    height:90px;
    border:1px solid #E6B85E;

}

/*
	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 {
    float:left;
    margin:5px;
    border:1px solid #E6B85E;
    cursor:pointer;

}

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


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

/* prev, next, prevPage and nextPage buttons */
a.browse {
    display:block;
    width:30px;
    height:30px;
    float:left;
    margin:40px 10px;
    cursor:pointer;
    font-size:20px;
}

a.nextPage,a.prevPage{
    display:block; 
    float:left;
    height: 30px;
    cursor:pointer;
    font-size:20px;
    font-weight: bold;
    margin-top:25px;
    color:#E6B85E;
}

a.nextPage{
    margin-left:5px;
}
a.prevPage{
    margin-right:5px;
}




/* disabled navigational button */
a.disabled {
    visibility:hidden !important;
}

#image_wrap {	

    margin:5px;
    width: 500px;
    height: 480px;
    margin-left: 28px;
    text-align:center;
   
    vertical-align: middle;
    position: absolute;
    top: 120px;

}

#image_wrap img{
     border: 1px solid #E6B85E;
     padding: 20px;
}
