/*
	Modified by Dale Caffull, 08/03/14
*/

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides {
  height: 100%;
  /* Clear fix */
  overflow: hidden;
  *zoom: 1;
  /**
   * Prevent blinking issue
   * Not tested. Experimental.
   */
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  
  padding-left: 0;
  margin-bottom: 10px;
}

.slide {
  height: 100%;
  float: left;
  clear: none;
  list-style: none;
}

.slider-arrow {
  position: absolute;
  display: block;
 
  opacity: 0.0;
  transition: opacity 0.5s;
  
  padding: 0;
  font-size: 0;
  height: 46px;
  width: 46px;
}

.slider:hover .slider-arrow {
  opacity: 1.0;
}

.slider-arrow:hover {
  background-position-y: 46px;
}

.slider-arrow--right {
  bottom: 47%;
  right: 20px;
  
  background-image: url(img/arrow-right.png);
}

.slider-arrow--left {
  bottom: 47%;
  left: 20px;
  
  background-image: url(img/arrow-left.png);
}

.slider-nav {
  text-align: center;
  font-size: 0;
  margin-bottom: 10px;
}

.slider-nav__item {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 0 4px;
  background-color: #d6f1f6;
  border: 1px solid #30bbd1;
  border-radius: 50%;
}

.slider-nav__item:hover {
  background-color: #30bbd1;
}

.slider-nav__item--current {
  background-color: #30bbd1;
}
