@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

.gallery img{
	width: 100%;
	height: auto;
	max-height:640px;
	margin:0 auto;
}

.gallery li{
	list-style:none;
}

.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    height: 25px;
    width: 25px;
}

.slick-prev {
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right:2.5%;
    transform: rotate(45deg);
}

.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
	list-style:none;
	margin-right:3px;
}

.choice-btn li img{
	opacity: 0.4;
	/*
	max-height:115px;
	width: auto;
	margin:0 auto;
	*/
}

.choice-btn li.slick-current img{
	opacity: 1;
}

.slick-slide {
  position: relative;
}
.slick-slide .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition: .3s ease;
}
.slick-current .caption {
  opacity: 1;
  transition-delay: .5s;
}