.jcarousel-wrapper {
    margin: 20px auto;
    position: relative;
    border: 10px solid #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;
}

/** Carousel **/

.jcarousel, .jcarousel_small {
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

.jcarousel li {
    height: 400px;
	width: auto !important;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.jcarousel img {
    display: block;
    max-width: 100%;
    height: 400px !important;
	opacity: 1;
	-webkit-transition:opacity 500ms ease-out;
-moz-transition:opacity 500ms ease-out;
-o-transition:opacity 500ms ease-out;
transition:opacity 500ms ease-out;
}
.jcarousel img:hover {
	opacity: 0.6;	
	-webkit-transition:opacity 500ms ease-out;
-moz-transition:opacity 500ms ease-out;
-o-transition:opacity 500ms ease-out;
transition:opacity 500ms ease-out;
}

.j_small li {
    height: 200px;
	width: auto !important;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.j_small img {
    display: block;
    max-width: 100%;
    height: 200px !important;
	opacity: 1;
	-webkit-transition:opacity 500ms ease-out;
-moz-transition:opacity 500ms ease-out;
-o-transition:opacity 500ms ease-out;
transition:opacity 500ms ease-out;
}
.j_small img:hover {
	opacity: 0.6;	
	-webkit-transition:opacity 500ms ease-out;
-moz-transition:opacity 500ms ease-out;
-o-transition:opacity 500ms ease-out;
transition:opacity 500ms ease-out;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    margin-top: 0;
    width: 70px;
    height: 70px;
    text-align: center;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font: 32px/32px Arial, sans-serif;
	padding: 15px 0 0 0;

}
.jcarousel-control-prev:hover,
.jcarousel-control-next:hover {
	background-color: transparent;
	color: #fff;
	
}


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

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

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom: -28px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
	line-height: 16px;
	text-align: center;
	width: 70%;
	display: none;
}

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

    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;
	
	border: 1px solid #fff;

    background: transparent;
    color: #4E443C;
    text-indent: -9999px;

    margin-right: 7px;

}

.jcarousel-pagination a.active, .jcarousel-pagination a:hover {
    background: #fff;
    color: #000;


}

