/*** Overall MovingBoxes Slider ***/
.mb-slider {
  width: 900px; /* default, this is overridden by script settings */
  border: 0px none #ccc;
  margin: 0 auto;
  position: relative;
  left: 0;
  top: 0;
}

/* 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: 18px;
}

/* active slider border highlight */
.mb-active-slider {

}

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

.mb-inside img {
  display: block;
  border: 0px none #666;
  margin: 0 auto;
  width: 100%;
}
/*
.mb-inside img {
	-webkit-box-reflect: below 4px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.7, transparent), to(white));
	-webkit-border-radius: 3px;
	border-radius: 3px;
	}
	
*/
.mb-inside h2 {
	font-weight: normal;
	color: #ffffff;
	font-size: 90%;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 8px;
	margin-left: 0;
}
.mb-slider div h2 span {
	display: none;
}


.mb-inside p {
  font-size: 100%; /* Adjust panel text font size using em or % */
  color: #444;
}

.mb-inside a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

.mb-inside a:hover {
  border-bottom: 1px solid #999;
}

/*** Left & Right Navigation Arrows ***/
a.mb-scrollButtons {
  display: block;
  width: 45px;
  height: 40px;
  background: transparent url(../images/arrows.png) no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -29px; /* 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: -45px;
}
a.mb-scrollButtons.mb-right {
  background-position: right top;
  right: -45px;
}
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;
  position: relative;
  z-index: 100;
}
.mb-controls a, .mb-controls a:link {
	color: #ffffff;
	font: 12px Georgia, Serif;
	display: inline-block;
	text-decoration: none;
	height: 18px;
	text-align: center;
	outline: 0;
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 0;
	margin-left: 0;
	padding: 3px;
}
.mb-controls a.current, .mb-controls a:hover {
	color: #ffffff;
	background-color: #6b1212;
}
.mb-active-slider .mb-controls {

}
