
/**
 * A simple sample carousel skin.
 *
 * This skin includes a sample arrows.svg file that may be edited with the free
 * illustration application InkScape (http://inkscape.org).
 *
 * CSS and icons by Nathan Haug.
 */


.jcarousel-skin-gallery {
}

.jcarousel-skin-gallery .jcarousel-container-horizontal {
  width: 618px;
  height: 460px; /* 348px */
  margin: auto;
  background-color: #fff;
}


.jcarousel-skin-gallery .jcarousel-clip-horizontal {
  width: 618px;
  overflow: hidden;
}


.jcarousel-skin-gallery .jcarousel-item {
  padding: 0;
  width: 618px;
  height: 460px; /* 348px */
  overflow: hidden;
  list-style: none;
  background: #fff none;
  border-radius: 0px 0px 5px 5px;
}

.jcarousel-skin-gallery .jcarousel-item .description {
  padding: 5px 7px;
  font-size: 1.0em;
  color: #666;
  border-top: 1px solid #EEEEEE;
}

.jcarousel-skin-gallery .jcarousel-item-horizontal {
  margin: 0 0px;
}

.jcarousel-skin-gallery .jcarousel-item-horizontal img {
  border-radius: 5px 5px 0px 0px;
  width: 618px;
  display: block;
}

.jcarousel-skin-gallery .jcarousel-item-placeholder {
  background: #fff url(throbber.gif) no-repeat center center;
  color: #000;
}

/**
 * Buttons
 */
.jcarousel-skin-gallery .jcarousel-next,
.jcarousel-skin-gallery .jcarousel-prev {
  display: block;
  width: 24px;
  height: 118px;
}

.jcarousel-skin-gallery .jcarousel-next-disabled,
.jcarousel-skin-gallery .jcarousel-prev-disabled {
  display: none;
}

/**
 * Horizontal Buttons
 */
.jcarousel-skin-gallery .jcarousel-prev-horizontal {
  position: absolute;
  top:73px;
  left: 0px;
  background: url(left.png) center center no-repeat transparent;
  border-radius: 0px 3px 3px 0px;
}


.jcarousel-skin-gallery .jcarousel-next-horizontal {
  position: absolute;
  top: 73px;
  right: 0px;
  background: url(right.png) center center no-repeat transparent;
  border-radius: 3px 0px 0px 3px;
}


