/*** Overall MovingBoxes Slider ***/
.slider { }
.slider-wide { }
.mb-slider {
  width: 545px; /* default, this is overridden by script settings */
  border: 2px solid #ccc;
  margin: 0px 0px 0px 130px;
  position: relative;
  left: 0;
  top: 0;
  border-radius: 1em;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  box-shadow: 0 0 10px #888;
  -moz-box-shadow: 0 0 10px #888;
  -webkit-box-shadow: 0 0 10px #888;
}

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

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

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

/*** Slider panel ***/
.mb-slider .mb-panel {
  width: 350px;  /* default, this is overridden by script settings */
  margin: 5px 0;
  padding: 7px;
  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 
{
line-height: normal;
  padding: 8px 0px;
  border: 1px solid #313131;
}

.mb-inside img {
  display: block;
  margin: 0 auto 4px auto;
  width: 100%;
}

.mb-inside h2,.mb-inside h4 {
  font-weight: normal;
  color: #383838;
  /*font-size: 140%; /* Adjust panel header font size using em or % */
  font-size: 12px;
  font-style: italic;
  margin-left: 16px !important;
}

.mb-inside p {
  /*font-size: 100%; /* Adjust panel text font size using em or % */
  font-size: 12px;
  color: #878787;
  margin: 4px 0px 0px 16px !important;
}

.mb-inside a {color:#ab76bf;text-decoration:none;}
.mb-inside a:hover {text-decoration:underline;}

/*** Left & Right Navigation Arrows ***/
a.mb-scrollButtons 
{
  display: block;
  width: 33px;
  height: 56px;
  background: transparent url(http://cdn.downloadaccelerator.com/img/movingboxes/arrows-small.png) no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -28px; /* if you change the arrow images, you may have to adjust this (1/2 height of arrow image) */
  cursor: pointer;
  text-decoration: none;
  outline: 0;
  border: 0;
}
a.mb-scrollButtons.mb-left {
  background-position: left top;
  left: -38px;
}
a.mb-scrollButtons.mb-right {
  background-position: right top;
  right: -38px;
}
a.mb-scrollButtons.mb-left:hover {
  background-position: left bottom;
}
a.mb-scrollButtons.mb-right:hover {
  background-position: right bottom;
}

/*** Controls added below the panels ***/
.mb-controls {
  margin: 0 auto;
  text-align: center;
  background: #ccc;
  height: 0px;
}
.mb-controls a {
  color: #444;
  font: 12px Georgia, Serif;
  display: inline-block;
  text-decoration: none;
  padding: 2px;
  height: 0px;
  margin: 0 5px 0 0;
  text-align: center;
  outline: 0;
}
.mb-controls a.current, .mb-controls a:hover {color: #fff;}
.mb-active-slider .mb-controls {background: #999bff;}