.jcarousel-wrapper {
    position: relative;
}

.jcarousel-wrapper a:link {
    color: #fff;
    text-decoration: none;
}

.jcarousel-wrapper a:visited {
    color: #fff;
    text-decoration: none;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
}

.jcarousel ul {
    width: 10000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    float: left;
}

.jcarousel img {
    width: 1100px;
    height: auto;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;    
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30px;
    height: 30px;
    text-align: center;
    background: #4E443C;
    text-shadow: 0 0 1px #000;
    font: 24px/27px Arial, sans-serif;
    -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
            border-radius: 30px;
    -webkit-box-shadow: 0 0 2px #999;
       -moz-box-shadow: 0 0 2px #999;
            box-shadow: 0 0 2px #999;
}

.jcarousel-control-prev {
    left: 5px;
}

.jcarousel-control-next {
    right: 5px;
}

.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
    display: block;
}

.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
    opacity: .5;
    cursor: default;
}

@media (min-width: 1280px) and (max-width: 1450px) {
    .jcarousel img {
        width: 935px;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .jcarousel img {
        width: 770px;        
    }
}

@media (max-width: 1024px) {
    .jcarousel-wrapper {
        display: none;
    }
}