/* 
    Document   : scroller
    Created on : Sep 8, 2009, 6:11:23 PM
    Author     : Jason
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

#scrollWrapper {
    width: 100%;
    height: 210px;
    padding-bottom: 10px;
}

.infiniteCarousel {
  width: 575px;
  position: relative;
}

.infiniteCarousel .wrapper {
  width: 433px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */
  overflow: auto;
  height: 210px;
  xmargin: 0 40px;
  position: absolute;
  top: 0px;
  left: 71px;
}

.infiniteCarousel ul a img {
  border: 5px solid #000;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.infiniteCarousel .wrapper ul {
  width: 9999px;
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  margin:0;
  padding:0;
  position: absolute;
  top: 0;
}

.infiniteCarousel ul li {
  display:block;
  float:left;
  xpadding: 10px;
  height: 210px;
  width: 433px;
}

.infiniteCarousel ul li a img {
  display:block;
}

.infiniteCarousel .arrow {
  display: block;
  height: 208px;
  width: 71px;
  background: url(images/arrow.png) no-repeat 0 0;
  text-indent: -999px;
  position: absolute;
  xtop: 37px;
  cursor: pointer;
}

.infiniteCarousel .forward {
  background: url('images/rightButton.png') 0px 0px no-repeat;
  right: 0;
}

.infiniteCarousel .back {
  background: url('images/leftButton.png') 0px 0px; no-repeat;
  left: 0;
}

.infiniteCarousel .forward:hover {
  background: url('images/rightButton.png') -71px 0px; no-repeat;
}

.infiniteCarousel .back:hover {
  background: url('images/leftButton.png') -71px 0px; no-repeat;
}

