div.Carousel {
  display: none;
}
/* Prev/Next buttons styling */
.Carousel .cPrev,
.Carousel .cNext {
  float: left;
  width: 23px;
  background: #e3e3e3;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e5e5e5));
  background-image: -webkit-linear-gradient(top, #ffffff, #e5e5e5);
  background-image: -moz-linear-gradient(top, #ffffff, #e5e5e5);
  background-image: -ms-linear-gradient(top, #ffffff, #e5e5e5);
  background-image: -o-linear-gradient(top, #ffffff, #e5e5e5);
  background-image: linear-gradient(to bottom, #ffffff, #e5e5e5);
}
.Carousel .cPrev {
  margin: 0 5px 0 0;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.Carousel .cPrev .cPrevIcon {
  background-image: url(/img/buttons/carouselArrowLeft.png);
}
.Carousel .cPrevDisabled {
  cursor: default;
}
.Carousel .cNext {
  margin: 0 0 0 5px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.Carousel .cNext .cNextIcon {
  background-image: url(/img/buttons/carouselArrowRight.png);
}
.Carousel .cNextDisabled {
  cursor: default;
}
.Carousel .cThumbs {
  float: left;
  position: relative;
  overflow: hidden;
}
.Carousel .cThumbsInner {
  position: relative;
}
.Carousel .cThumbs .cThumb {
  margin: 0 5px 0 0;
  float: left;
  overflow: hidden;
  background: #e3e3e3;
  cursor: pointer;
}
/* Note, don't change the margin without changing the JS */
.Carousel .cThumbs .cThumbOn {
  background: #00bce4;
}
/* this is the border color for the on state */
.Carousel .cThumbs .cThumbInner {
  background: #e3e3e3;
}
.Carousel .cPrev,
.Carousel .cNext {
  position: relative;
}
.Carousel .cPrev .cPrevIcon,
.Carousel .cNext .cNextIcon {
  width: 15px;
  height: 23px;
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  top: 37px;
  left: 4px;
}
