.infiniteCarousel {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
  /* margin: 40px 0; */
  padding: 10px 0;
/*  border: 1px solid #d9d9d9;*/
}

#carousel_inner {
  position: relative;
  display: inline-block;
  vertical-align: top;
  //display: inline;
  //zoom:1;
  width:93%; /* important (this width = width of list item(including margin) * items shown */
  height: 205px;
  overflow: hidden;  /* important (hide the items outside the div) */
}

#carousel_inner ul {
position:relative;
left:-210px; /* important (this should be negative number of list items width(including margin) */
list-style-type: none; /* removing the default styling for unordered list items */
margin: 0px;
padding: 0px;
width:9999px; /* important */
/* non-important styling bellow */
padding-bottom:10px;
}

#carousel_inner ul li{
  float: left; /* important for inline positioning of the list items */
  width:190px;  /* fixed width, important */
  padding:0px;
  height:110px;
  margin:10px 7px;
}

#carousel_inner h4 {
  margin:10px 0;
}

#left_scroll, #right_scroll{
  cursor:pointer;
  position: relative;
  display: inline-block;
  vertical-align: top;
  //display: inline;
  //zoom:1;
  width: 2%;
  height: 200px;
}


#right_scroll {
  background: url(/img/arr_right.jpg) no-repeat center;
}

#left_scroll {
  background: url(/img/arr_left.jpg) no-repeat center;
}