.jcarousel-wrapper {
    position: relative;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 5px;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    width: 100px;
    float: right;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.jcarousel img {
    display: table;
    margin:auto;
    max-width: 100%;
    height: auto !important;
    opacity: 0.6;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;

}
.jcarousel img:hover {
    opacity: 1;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    text-align: center;
    color: #FF9800;
    text-decoration: none;
    font-size: 24px;
    border-radius: 20%;
    position: absolute;
    right: 20%;
    margin-right: -25px;
    cursor: pointer;
    height: 25px;
    width: 25px;
    font-weight: 100;
    line-height: 21px;
    background: #fff;
}

.jcarousel-control-prev {
    right: 20%;
    margin-right: 0px;

}
.jcarousel-control-prev:hover,
.jcarousel-control-next:hover {
    text-decoration: none;
    color: #FF9800;
    background: #F7F7F7;
}
/** Carousel Pagination **/
.jcarousel-control-prev:focus,
.jcarousel-control-next:focus  {
text-decoration: none;
color:#FF9800;
}
.jcarousel-pagination {
    position: absolute;
    bottom: -40px;
    left: 20%;
    -webkit-transform: translate(-20%, 0);
    -ms-transform: translate(-20%, 0);
    transform: translate(-20%, 0);
    margin: 0;
}




