#slideshow{
    width: 100%;
    height: 0;
    padding-bottom: 46.37%;
    position: relative;
}
.unslider {
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

.unslider-wrap {
    position: relative
}

.unslider-wrap.unslider-carousel>li {
    float: left
}

.unslider-vertical>ul {
    height: 100%
}

.unslider-vertical li {
    float: none;
    width: 100%
}

.unslider-fade {
    position: relative
}

.unslider-fade .unslider-wrap li {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 8
}

.unslider-fade .unslider-wrap li.unslider-active {
    z-index: 10
}

.unslider li,
.unslider ol,
.unslider ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none
}

.unslider-arrow {
    position: absolute;
    left: 20px;
    z-index: 2;
    cursor: pointer
}

.unslider-arrow.next {
    float: right;
    width: 48px;
    height: 48px;
    display: block;
    background: url(../images/btn-slider-left.png) 0 0 no-repeat;
    position: absolute;
    top: 50%;
    z-index: 1000;
    text-indent: -9999px;
    opacity: 1;
    left: 5%;
    margin: -24px 0 0 0;
}
.unslider-arrow.next:hover {
    background: url(../images/btn-slider-left-hover.png) 0 0 no-repeat;
}
.unslider-arrow.prev {
    float: right;
    width: 48px;
    height: 48px;
    display: block;
    background: url(../images/btn-slider-right.png) 0 0 no-repeat;
    position: absolute;
    top: 50%;
    z-index: 1000;
    text-indent: -9999px;
    opacity: 1;
    right: 5%;
    margin: -24px 0 0 0;
}
.unslider-arrow.prev:hover {
    background: url(../images/btn-slider-right-hover.png) 0 0 no-repeat;
}
.unslider-fade .unslider-wrap li img{
    width: 100%;
}


#collection-slider .corner-top-left {
    background: url(../images/corners.png) 0 0 no-repeat;
    width: 59px;
    height: 59px;
    position: absolute;
    z-index: 1000;
    left: 25px;
    top: 25px;
}
#collection-slider .corner-top-right {
    background: url(../images/corners.png) -59px 0 no-repeat;
    width: 59px;
    height: 59px;
    position: absolute;
    z-index: 1000;
    right: 25px;
    top: 25px;
}
#collection-slider .corner-bottom-left {
    background: url(../images/corners.png) 0 -59px no-repeat;
    width: 59px;
    height: 59px;
    position: absolute;
    z-index: 1000;
    left: 25px;
    bottom: 25px;
}
#collection-slider .corner-bottom-right {
    background: url(../images/corners.png) -59px -59px no-repeat;
    width: 59px;
    height: 59px;
    position: absolute;
    z-index: 1000;
    right: 25px;
    bottom: 25px;
}
/**
 *   Here's where everything gets included. You don't need
 *   to change anything here, and doing so might break
 *   stuff. Here be dragons and all that.
 */
/**
 *   Default variables
 *
 *   While these can be set with JavaScript, it's probably
 *   better and faster to just set them here, compile to
 *   CSS and include that instead to use some of that
 *   hardware-accelerated goodness.
 */

.unslider-nav{
    position: absolute;
    z-index: 1000;
    width: 100%;
    left: 0;
    bottom: 50px;
}

.unslider-nav ol {
    list-style: none;
    text-align: center;
}
.unslider-nav ol li {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/Slice.png) 0 0 no-repeat;
    overflow: hidden;
    text-indent: -999em;
    cursor: pointer;
}
.unslider-nav ol li.unslider-active {
    background: url(../images/Slice.png) -31px 0 no-repeat;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    -o-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
from { -moz-transform: rotate(0deg); }
to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}

@media only screen and (max-width:767px) {
    .unslider-arrow.prev{
        right: 15px;
    }
    .unslider-arrow.next{
        left: 15px;
    }
}