/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel-wrapper .jcarousel {
  position: relative;
  overflow: hidden;
}
.jcarousel-wrapper .jcarousel-title {
  color: #555;
  font-weight: bold;
  font-size: 19px;
  text-align: center;
  padding-bottom: 10px;
}
.jcarousel-wrapper {
  position: relative;
  min-height: 100px;
/*  padding-top: 10px;
  padding-bottom: 20px;*/
  /*-webkit-box-shadow: 0px -3px 14px 4px rgba(0,0,0,0.25);
-moz-box-shadow: 0px -3px 14px 4px rgba(0,0,0,0.25);
box-shadow: 0px -3px 14px 4px rgba(0,0,0,0.25);*/
}

.jcarousel-wrapper .inner {
  padding: 0 40px;
}
/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel-wrapper .jcarousel ul {
  width: 20000em;
  position: relative;
  /* Optional, required in this case since it's a <ul> element */
  list-style: none;
  margin: 0;
  padding: 0;
	
}
/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel-wrapper .jcarousel ul.main > li {
  /* Required only for block elements like <li>'s */
  float: left;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  /*padding:3px;
	background-color:#FFF;
	margin:3px;
	border:1px solid #CCC;*/
}
.partner-logos .jcarousel-wrapper .jcarousel ul.main > li {
  padding: 0 20px 0;
}
.jcarousel-wrapper .jcarousel ul.main > li > a {
  display: block;
  background-color: #fff;
  padding: 5px;
  width: 90%;
  margin: auto;
}
.jcarousel-wrapper .jcarousel li img {
  /*max-width:160px;*/
  max-width: 100%;
}
.jcarousel-wrapper .jcarousel ul.main > li:first-child {}
/*.jblock{
width:292px;
width:100%;
height:238px;
position:relative;
text-transform:uppercase;
}
.jhead{
background-color:#005066;
padding: 10px 5px;
font-size: 15px;
color:#FFF;
line-height:1.2;
font-family:"Open Sans Condensed", Arial, sans-serif;
	font-weight:700;
	text-align:center;
}
.jcontent ul{
	width:100%;
	margin-top: 10px;
}
.jcontent ul li{
	text-align:center;
	font-size:13px;
	font-family:"Open Sans Condensed", Arial, sans-serif;
	font-weight:700;
	margin-bottom: 5px;
}
.jcontent ul li a{
	color:#005066;text-decoration:none;
}
.jblock .btn{
	width: 100px;
text-align: center;
display: block;
margin: 15px auto !important;
font-size: 14px !important;
font-family:"Open Sans Condensed", Arial, sans-serif;
	font-weight:700;
	padding: 3px 4px !important;
-webkit-border-radius: 4px !important;
-moz-border-radius: 4px !important;
border-radius: 4px !important;

}*/
.jcarousel-wrapper .jcarousel-control-prev, .jcarousel-wrapper .jcarousel-control-next {
  position: absolute;
  z-index: 20;
  top: 30%;
  height: 68px;
  width: 34px;
  background-repeat: no-repeat;
  background-position: center center;
}
.jcarousel-wrapper .jcarousel-control-prev:hover, .jcarousel-wrapper .jcarousel-control-next:hover {
  opacity: .85;
}
.jcarousel-wrapper .jcarousel-control-prev {
  left: 6px;
  background-image: url(../png/carousel-prev-2.png);
}
.jcarousel-wrapper .jcarousel-control-next {
  right: 6px;
  background-image: url(../png/carousel-next-2.png);
}