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

  /* required settings */
  position:relative;
  overflow:hidden;
  height:380px;
}

/*
  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 */
  height:20000em;
  position:absolute;
  width:100%;
}

/* Add CSS Rules Here */

#scrollable_controls
{
  position:relative;
  z-index:500;
}

#scrollable_controls a
{
  cursor:pointer;
  font-size:3em;
  position:absolute;
  font-weight:bold;
}
#scrollable_controls a {
  height: 31px;
  width: 31px;
  text-indent: -4000em;
}
#scrollable_controls .prev
{
  background: url(/resources/dyn/files/351462zf3304939/_fn/arrow_up.jpg) no-repeat top left;
  left: 384px;
  top: -49px;
}

#scrollable_controls .next
{
  left:384px;
  background: url(/resources/dyn/files/351469z64e290b1/_fn/arrow_down.jpg) no-repeat top left;
  top:355px;
  font-size:2.6em;
}

#scrollable_controls .disabled
{
  color:#ccc;
  cursor:default;
}

