/* IE10over */
/* ==================================================
	@extend
================================================== */
/* ===== clearfix ===== */
.carousel .carouselList, .carousel .carouselNav {
  list-style-type: none;
}

.carousel_btn, .carousel .carouselNav_item a {
  text-decoration: none !important;
  color: #333;
}

/* IE10over */
.carousel {
  margin: 0 auto;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.carousel .carouselViewer {
  overflow: hidden;
  max-width: 1000px;
  position: relative;
}
.carousel .carouselList {
  display: table;
  table-layout: fixed;
  width: 100%;
  max-width: 3000px;
  margin-top: 0;
  margin-bottom: 0;
  padding:0;
}
.carousel .carouselList_item {
  display: table-cell;
  vertical-align: top;
  text-align: center;
  max-width: 1000px;
  box-sizing: border-box;
}
.carousel .carouselList_item img {
  max-width: 100%;
  height: auto;
}
.carousel .carouselList_item a {
  display: block;
}
.carousel .carouselList_item a:focus {
  opacity: .75;
}
.carousel_btn {
  width: 60px;
  height: 100px;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  z-index: 10;
  background: rgba(128, 128, 128, 0.1);
  text-indent: -5em;
}
@media only screen and (max-width: 639px) {
  .carousel_btn {
    width: 60px;
    height: 100%;
    margin-top: 0;
    top: 0;
  }
}
.carousel_btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -12.35px;
  width: 26px;
  height: 26px;
  border-top: solid 2px;
  border-color: white !important;
}
.carousel_btn--prev {
  left: 0;
}
.carousel_btn--prev:after {
  left: 0;
  margin-left: 22px;
  border-left: solid 2px;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 639px) {
  .carousel_btn--prev:after {
    margin-left: 15px;
  }
}
.carousel_btn--next {
  right: 0;
}
.carousel_btn--next:after {
  right: 0;
  margin-right: 22px;
  border-right: solid 2px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 639px) {
  .carousel_btn--next:after {
    margin-right: 15px;
  }
}
.carousel .carouselNav {
  letter-spacing: -.5em;
  text-align: center;
  margin:0;
  padding:0;
}
.carousel .carouselNav_item {
  letter-spacing: normal;
  display: inline-block;
  margin: 20px 10px 0;
}
.carousel .carouselNav_item a {
  display: block;
  width: 200px;
  border: solid 5px rgba(0,0,255,0);
  overflow: hidden;
}
.carousel .carouselNav_item a.is-active {
  background: #d1c0a5;
  border: solid 5px #d1c0a5;
  cursor: default;
}
@media only screen and (max-width: 1000px) {
  .carousel .carouselNav_item a{
    background-color: #aaa;
    width:30px;
    height:10px;
    border: none!important;
  }
  .carousel .carouselNav_item img {
    display:none;
  }
}
