/*
**
** GENERAL CAROUSEL NAV STYLES
**
*/
.carouselNav {
  position: absolute;
  padding: 0;
  margin: 0;
  z-index: 3;
}
.carouselNav li {
  cursor: pointer;
  box-shadow: 0 0 4px #000, 0 0 3px #000, 0 0 5px #000;
  opacity: 0.35;
}

/*
**
** EDIT THE DOTS NAV STYLES
**
*/
.carouselNav.dots {
  bottom: 10%; 
}
.carouselNav.dots li {
  background-color: #fff;
  display: block;
  float: left;
  margin: 5px;
  width: 15px;
  height: 15px;
  border-radius: 15px;
}

/*
**
** EDIT THE LINES NAV STYLES
**
*/
.carouselNav.lines {
  bottom: 0;
  width: 100%;
}
.carouselNav.lines li {
  background-color: #000;
  display: block;
  float: left;
  margin: 0;
  height: 20px;
}

/*
**
** EDIT THE NUMBERS NAV STYLES
**
*/
.carouselNav.numbers {
  bottom: 0;
  width: 100%;
  background-color: rgba(0,0,0,.5);
}
.carouselNav.numbers li {
  background-color: #000;
  box-shadow: none;
  display: block;
  float: left;
  margin: 0;
  width: 35px;
  height: 27px;
  line-height: 27px;
  text-align: center;
  opacity: 1;
  color: #fff;
  font-size: 19px;
}

/*
**
** HOVER AND ACTIVE STYLES
**
*/.carouselNav li:hover,
.activeCarouselNav {
  background-color: #fff !important;
  opacity: 0.55 !important;
  color: #000 !important;
}
.activeCarouselNav.numbers {
  background-color: #000 !important;
}

/*
**
** LAST & NEXT LINKS STYLES
**
*/
.carousel-next,
.carousel-last {
  position: absolute;
  width: 40px;
  height: 100%;
  background-repeat: no-repeat;
  z-index: 3;
  cursor: pointer;
  opacity: 0.5;
}
.carousel-next:hover,
.carousel-last:hover {
  opacity: 0.9;
}
.carousel-next:active,
.carousel-last:active {
  opacity: 0.2;
}
.carousel-next {
  background-image: url(images/next-black.png);
  background-position: left center;
  right: 0;
}
.carousel-last {
  background-image: url(images/last-black.png);
  background-position: right center;
  left: 0;
}