@charset 'UTF-8';
/* Slider */
/* Dots */
.slick-slider{
    margin-bottom: 20px;
}
.slick-dots{
    position: absolute;
    bottom: -15px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
	list-style:none;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 9px;
    height: 9px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
	border-radius:50px;
	background:#fff;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}
.slick-dots li button:before{
    position: absolute;
    top: 0;
    left: 0;
     width: 9px;
    height: 9px;
    content: '•';
    opacity: 1;
	background:#cbcaca;
	border-radius:50px;
}
.slick-dots li.slick-active button:before{
    outline: none;
	background:#591603;
	height:9px;
	width:9px;
}
