.jcarousel-wrapper {
    position: relative;min-height: 550px;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;min-height: 550px;
}

.jcarousel ul {
    width: 10000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    width: 25%;
    float: left;
    border: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	margin:0;
	z-index:1;
	padding:10px;
}

.jcarousel img {
    display: block;
    max-width: 100%;
    height: auto !important;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
/*    text-align: center;
    color: #204fa1;
    text-decoration: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
	border:1px solid #204fa1;*/
	content:'';
	color: transparent;
}

.jcarousel-control-prev {
    left: -55px;
	content:'';	
	background-image: url(../images/icon_arrow_left_blue.png);
	background-repeat: no-repeat;
background-position: center;
background-size: cover;
}

.jcarousel-control-next {
    right: -50px;
	content:'';	
	background-image: url(../images/icon_arrow_right_blue.png);
	background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.jcarousel-control-prev:hover {
	content:'';	color: transparent;
	background-image: url(../images/icon_arrow_left_blue_hover.png);
}

.jcarousel-control-next:hover {
	content:'';	color: transparent;
	background-image: url(../images/icon_arrow_right_blue_hover.png);
}

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;

    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;

    background: #76bcca;
    color: #76bcca;
    border-radius: 10px;
    text-indent: -9999px;
    margin-right: 7px;
}

.jcarousel-pagination a.active {
    background: #1e62a7;
    color: #fff;
    opacity: 1;
	width:20px;
}