/*** Overall MovingBoxes Slider ***/
.mb-wrapper {
  width: 677px; /* default, this is overridden by script settings */
  /*border: 1px solid #158352;
  border-top: 0px;
  */
  border:0;
  position: relative;
  left: 0px;
  top: 0px;
  margin-bottom:20px;
}

/* Panel Wrapper */
.mb-slider, .mb-scroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0px;
  position: relative;
  left: 0px;
  top: 0px;

  /***(>'-')> Control Panel Font size here <('-'<)***/
  font-size: 18px;
}

/* active slider border highlight */
.mb-active-slider {
  border-color: #158352;
}

/*** Slider panel ***/
.mb-slider .mb-panel {
  width: 350px;  /* default, this is overridden by script settings */
  height: 192px;  /* default, this is overridden by script settings */
  margin: 5px;
  padding: 5px;
  display: block;
  cursor: pointer;
  float: left;
  list-style: none;
}

/* Cursor to arrow over current panel, pointer for all others,
  change .current class name using plugin option, currentPanel : 'current' */
.mb-slider .mb-panel.current {
 cursor: auto;
}

/*** Inside the panel ***/
.mb-inside {
  padding: 10px;
  height:170px;
  border: 1px solid #999;
}
.mb-inside div{
height:100px;
}



.mb-inside * {
  max-width: 100%;
}

/*** Left & Right Navigation Arrows ***/
a.mb-scrollButtons {
  display: block;
  /*width: 20px;*/
  width: 49.8%;
  position: relative;
  top: 0px;
  cursor: pointer;
  text-decoration: none;
  outline: 0;
  border: 0;
  z-index:1000;
  
}
a.mb-scrollButtons.mb-left {
  left: 0px;
  text-align:center;
  /*height:114px;*/
  height:20px;
  /*padding-top:94px;*/
  /*background-color:#158352;
  background-image:url("http://static.handwerker-versand.de/images/tabber_tab2.gif"); background-repeat:repeat-x;*/
  background-color:#CCCCCC;
  float:left;
}
a.mb-scrollButtons.mb-right {
  right: 0px;
  /*height:114px;*/
  height:20px;
  text-align:center;
  /*padding-top:94px;*/
  /*background-color:#158352;
  background-image:url("http://static.handwerker-versand.de/images/tabber_tab2.gif"); background-repeat:repeat-x;*/
  background-color:#CCCCCC;
  float:right;
}

a.mb-scrollButtons.mb-left:hover {
  background-color:#70b301;
}
a.mb-scrollButtons.mb-right:hover {
  background-color:#70b301;
}
a.mb-scrollButtons.disabled {
  display: none;
}

/*** Controls added below the panels ***/
.mb-controls {
  margin-top: 0 auto;
  text-align: center;
  background: #FFFFFF;
  position: relative;
  z-index: 100;
  height:30px;
  display:none;
}
.mb-controls a {
  color: #158352;
  font: 16px Georgia, Serif;
  display: inline-block;
  text-decoration: none;
  padding: 2px;
  height: 1px;
  margin: 0 5px 0 0;
  text-align: center;
  outline: 0;
}
.mb-controls a.current, .mb-controls a:hover, .mb-controls a:active {
  color: #FFBB06;
}
.mb-active-slider .mb-controls {
  background: #FFFFFF;
}