.jcarousel-wrapper {
    position: relative;
	margin:0 auto;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
	margin:0 45px;
	width:auto;
	
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin:0;
    padding:0;
}

.jcarousel li {
  
    float: left;
	margin:0;
	overflow:hidden;
}

.jcarousel img {
	margin:0;
	max-width:100%;
	
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
	position: absolute;
	top:45%;
    width: 35px;
    height: 35px;
	overflow:hidden;
	display:block;
	text-align:center;
	padding:3px 0;
	box-sizing:border-box;
	background:#999;
	color:#FFF;
	opacity:0.7;
}

.jcarousel-control-prev {
    left: 0px;
}

.jcarousel-control-next {
    right: 0px;
}


/** Carousel Pagination **/

.jcarousel-pagination {
    position:  relative;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin:30px 0 0 0;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;

    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;

    background: #CCC;
    color: #4E443C;
    border-radius: 10px;
    text-indent: -9999px;

    margin-right: 7px;


    -webkit-box-shadow: 0 0 2px #4E443C;
    -moz-box-shadow: 0 0 2px #4E443C;
    box-shadow: 0 0 2px #4E443C;
}

.jcarousel-pagination a.active {
    background: #666;
    opacity: 1;

    -webkit-box-shadow: 0 0 2px #666;
    -moz-box-shadow: 0 0 2px #666;
    box-shadow: 0 0 2px #666;
}