
/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
  */
.scrollable {

    /* required settings */
    position:relative;
    overflow:hidden;
    /*width: 668px;*/
    width: 835px;
    height:81px;
    /*background:yellow;
    border:solid 1px red;*/
}
.scrollablePB { height:150px; }

/*
   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;
    padding-top:2px;
}
    .scrollable .items a {
        display: block;
        float: left;
        position: relative;
    }

.items div {
    float:left;
    width:835px;
}
.items div.video_overlay { background:url(/Assets/imgs/movies/play.png) 50% 50% no-repeat; width:151px; height:80px; z-index:100; position:absolute; top:0; left:7px;  }
.items div.itemPB { width:165px; height:150px;  }
.items div.imgPB { height:81px; overflow:hidden;  }
.items div.dnldPB { text-align:center; clear:both; width:165px; padding:2px 0; }
    .items div.dnldPB a { float:none; }

/* single scrollable item */
.scrollable img {
    /*float:left;*/
    margin:0px 7px 0px 7px;
    background-color:#fff;
    padding:0px;
    border:0px solid #ccc;
    /*width:100px;
    width:151px;
    height:81px;*/
    -webkit-box-shadow: 0 0 2px 1px rgba(174,172,173,1);
    box-shadow: 0 0 2px 1px rgba(174,172,173,1);
}

/* active item */
.scrollable .active {
    border:0px solid #ccc;
    position:relative;
    cursor:default;
}

