div.scrollable {
    float:left;
}
a.prev, a.next, a.prevPage, a.nextPage {
    -moz-background-clip: border;
    -moz-background-inline-policy: continuous;
    -moz-background-origin: padding;
    background: transparent url(../img/scrollable/arrow/left.png) no-repeat scroll 0 0;
    cursor: pointer;
    display: block;
    float: left;
    font-size: 1px;
    height: 18px;
    margin: 43px 10px;
    width: 18px;
}
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
    background-position: 0 -18px;
}
a.disabled {
    visibility: hidden !important;
}
a.next, a.nextPage {
    background-image: url(../img/scrollable/arrow/right.png);
    clear: right;
}
div.navig {
    height: 20px;
    margin-left: 427px;
    width: 100px;
    text-align: center;
}
div.navig a {
    -navig-background-clip: border;
    -moz-background-inline-policy: continuous;
    -moz-background-origin: padding;
    background: transparent url(../img/scrollable/arrow/navigator.png) no-repeat scroll 0 0;
    display: block;
    float: left;
    font-size: 1px;
    height: 8px;
    margin: 3px;
    width: 8px;
}
div.navig a:hover {
    background-position: 0 -8px;
}
div.navig a.active {
    background-position: 0 -16px;
}
/* root element for the whole scrollable setup */
div.scrollable {  
    position: relative;
    overflow: hidden;
    width: 805px;
    height: 270px;
}
/* 
    root element for scrollable items. It is 
    absolutely positioned with large width. 
*/
#thumbs {	
    position: absolute;
    width: 20000em;	
    clear: both;
    border: 1px solid #222;
}
/* custom positioning for navigational links */
a.prev, a.next {
    margin-top: 118px;	
}
/* single item */
#thumbs div {
    float: left;
    width: 200px;
    height: 270px;
    background: #333 url(../img/scrollable/h150.png) repeat-x 0 140px;
    color: #fff;
    border-right: 1px solid #000;
    cursor: pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
    background-color: #444;	
}
/* style when element is active (clicked) */
#thumbs div.active {
    background-color: #005A46;
    cursor: default;
}
#thumbs h3 
{
    height: 1.5em;
    font-size: 1.1em;
}
#thumbs h3, #thumbs p {
    margin: 1em;
    color: #fff;
}
