/*
root element for the scrollable.  when scrolling occurs this
element stays still.
*/
.scrollable {
  /* required settings */
  float:left;
  position:relative;
  overflow:hidden;
  width: 800px;
  height:275px;
  margin-left:35px;
}

.scrollablePosters {
  /* required settings */
  float:left;
  position:relative;
  overflow:hidden;
  width: 644px;
  height:300px;
  margin-left:10px;
}

.scrollablePostcards {
  /* required settings */
  float:left;
  position:relative;
  overflow:hidden;
  width: 625px;
  height:135px;
}
 
/*
root element for scrollable items. Must be absolutely positioned
and it should have a extremely large width to accommodate scrollable
items.  it's enough that you set 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;
}

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

/*
a single item. must be floated in horizontal scrolling.  typically,
this element is the one that *you* will style the most.
*/
.items div.item {
  float:left;
  margin-right:20px;
   
}

.videoContainer .horizControl{
    height:61px;
    width:950px;
}

.posters a.browse{
    margin-top:150px;
}

a.browse {
    background:url(../img/bgs/hori_large.png) no-repeat;
    display:block;
    width:30px;
    height:30px;
    float:left;
    margin:100px 10px;
    cursor:pointer;
    font-size:1px;
}

/* right */
a.right { background-position: 0 -30px; clear:right; margin-right: 0px; float: right;}
a.right:hover { background-position:-30px -30px; }
a.right:active { background-position:-60px -30px; }


/* left */
a.left { margin-left: 0px; }
a.left:hover  { background-position:-30px 0; }
a.left:active { background-position:-60px 0; }

/* up and down */
a.up, a.down  {
    background:url(../img/bgs/vert_large.png) no-repeat;
    float: none;
    margin: 10px 50px;
}

/* up */
a.up:hover { background-position:-30px 0; }
a.up:active { background-position:-60px 0; }

/* down */
a.down { background-position: 0 -30px; }
a.down:hover { background-position:-30px -30px; }
a.down:active { background-position:-60px -30px; }


/* disabled navigational button 
a.disabled:hover { background-position:-30px -30px; }
a.disabled:active { background-position:-60px -30px; }

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

