.jcarousel-wrapper-left {
    margin: 6px auto;
  
    /*background:#fff;*/
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    /*-webkit-box-shadow: 0 0 2px #999;
       -moz-box-shadow: 0 0 2px #999;
            box-shadow: 0 0 2px #999;*/
    padding:10px;
}

.jcarousel-wrapper-left {
    top: 6px;
    position: absolute;

}

.jcarousel-wrapper-right {
    margin-left: 10px;
    position: absolute;
    top: 6px;

}

.jcarousel-wrapper {
    position: relative;
    left: 50%;
}

/** Carousel **/

.jcarousel {
    overflow: hidden;
    height: 100%;
}
.jcarousel #draggableItems-right{
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 385px;

}
.jcarousel #draggableItems-left{
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 345px;
}

.jcarousel #draggableItems{
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 121px
}

.jcarousel li {
    float: left;
}
.jcarousel li img {
    display:block;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 15px;
    width: 60px;
    height: 60px;
    /*text-align: center;*/
    background: #fff;
    padding:0;
    margin:0;
    /*color: #111;*/
    text-decoration: none;
    /*
    font:47px Helvetica, 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;
    */
    
    /* desloca seta em forma de texto para que nao fique visivel */
    text-indent:-9999px;
}

/* seta voltar */
.jcarousel-control-prev {
    left: -70px;
    background:url('prev_arrow.png') no-repeat center center;
}
/* seta voltar hover */
.jcarousel-control-prev:hover {
    left: -70px;
    background:url('prev_arrow_hover.png') no-repeat center center;
}
/* seta proximo */
.jcarousel-control-next {
    right: -70px;
    background:url('next_arrow.png') no-repeat center center;
}
/* seta proximo hover */
.jcarousel-control-next:hover {
    background:url('next_arrow_hover.png') no-repeat center center;
}


.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
    display: block;
}

.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
    opacity: .4;
    cursor: default;
}