.jcarousel-wrapper {
    margin:0 auto;
    padding:0;
    position: relative;
}

/** Carousel **/

.jcarousel {
    margin:0 auto;
    position: relative;
    overflow: hidden;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li 
{
    width: 288px;
    float: left;
    /*border-right: 1px solid #000;*/
    padding:10px;
    text-align: justify;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .jcarousel li .title
    {
        text-transform: uppercase;
    }

.jcarousel li:last-child
{
    border-right: none;
}



/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    bottom: -50px;
    margin-top: -15px;
    width: 54px;
    height: 25px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    text-indent: -99999px;
    font-size: 0;
    
}

.jcarousel-control-prev {
    left: 15px;
    background: transparent url('../pro2_img/arrows_jc.png') 0 -25px no-repeat;

}
    .jcarousel-control-prev:hover
    {
        background-position: 0 0;
    }
    
    
.jcarousel-control-next {
    right: 15px;
    background: transparent url('../pro2_img/arrows_jc.png') -54px -25px no-repeat;

}

    .jcarousel-control-next:hover
    {
        background-position: -54px 0;
    }
    
    
    .mask-left, .mask-right
    {
        height: 100%;
        position: absolute;
        background-color: #000;
        opacity:0.8;
        width: 30%;
        z-index: 999;
    }
    
