.outer {
  width: 100%;
  display: inline-block;
  margin: 0 auto;
}

.maxcarousel {
	margin: 20px auto 1px auto;
	position: relative;
	height: 189px;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: moz-none;
    -ms-user-select: none;
    user-select: none;
/*  background: #FFFFFF;
  box-shadow: 0 0 4px 0px #808080;
  padding: 0.1% 1% 2.5% 1%;*/
}
.maxcarousel img{
	max-width: 250px;
    max-height: 189px
}

.maxcarousel__inner {
	margin: 10px auto 0 auto;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.maxcarousel__inner > ul {
	list-style: none;
	white-space: nowrap;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 0;
	text-align: center;
    padding: 5px 0 0 0;
}

.maxcarousel__inner > ul li {
	position: relative;
	display:-moz-inline-stack;
	display:inline-block;
	vertical-align: middle;
	font: 16px Arial;
	text-align: center;
	white-space: normal;
	width: 260px;
	height: 190px;
	margin: 0 10px;
	overflow: hidden;
    padding: 2px 0;
}
.maxcarousel__l-arr,
.maxcarousel__r-arr {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 30px;
	opacity: 0.2;
	text-decoration: none;
	z-index: 10;
	outline: 0;
	cursor: pointer;
}

.maxcarousel__l-arr.is-disabled {
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: alpha(opacity=0);
}

.maxcarousel__r-arr.is-disabled {
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: alpha(opacity=0);
}

.maxcarousel__l-arr:hover,
.maxcarousel__r-arr:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: alpha(opacity=1);
}

.maxcarousel__l-arr {
	left: 0;
	background: url("../img/arr-left.png") 50% no-repeat;
}

.maxcarousel__r-arr {
	right: 0;
	background: url("../img/arr-right.png") 50% no-repeat;
}

.maxcarousel .is-disabled:hover {
	cursor: default;
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: alpha(opacity=0);
}

/*not necessary*/
.maxcarousel__ul-item-with-link a {
}

.maxcarousel__ul-item-with-link:hover a:hover {
}

.maxcarousel__ul-item-with-link p {
  margin: 4px 10px 0px 10px;
  font-size: 14px;
}
.maxcarousel__ul-item-with-link p span{
  font-weight: bold;
}



@media screen and (max-width: 440px) {
 .maxcarousel__inner > ul li {
	width: 260px;
}

}


@media screen and (max-width: 370px) {
 .maxcarousel__inner > ul li {
	width: 260px;
}    

}