/*** Overall MovingBoxes Slider ***/
.mb-wrapper {
	height: 225px;
	border: 0px solid black;
	margin: 0 auto 0px;
	position: relative;
	left: 0;
	top: 0;
	border-radius: 0px;
	box-shadow: inset 0 0 0px #888;
}

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

	/***(>'-')> Control Panel Font size here <('-'<)***/
	font-size: 12px; line-height: 12px; margin-bottom: 0px; color: #333; font-weight: normal; text-align: center; vertical-align: center;
}

/* active slider border highlight */
.mb-active-slider {
	border: 0px solid black;
}

/*** Slider panel ***/
.mb-slider .mb-panel {
	width: 168px;
	margin: 0;
	padding-top: 0px; padding-right: 15px; padding-bottom: 0px; padding-left: 15px;
	border: 0px solid black;
	display: block;
	cursor: pointer;
	float: left;
	list-style: none;
	font-size: 12px; line-height: 12px; margin-bottom: 0px; color: #333; font-weight: normal; text-align: center; vertical-align: center;
}

/* 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 ***/
/*** Moving Box contains both image (top) and text (bottom) ***/

.mb-inside {
	padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px;
	border: 0px solid #999;
	font-size: 12px; line-height: 12px; margin-bottom: 0px; color: #333; font-weight: normal; text-align: center; vertical-align: center;
}


.mb-inside * {
	max-width: 168px;
}

/*** Left & Right Navigation Arrows - SET DISTANCE + WIDTH OF IMAGE  ***/
a.mb-scrollButtons {
	display: block;
	width: 45px;
	height: 45px;
	background: transparent url(../images/arrows.png) no-repeat;
	position: absolute;
	top: 50%;
	margin-top: -70px; /* if you change the arrow images, you may have to adjust this (90 height of arrow image) */
	cursor: pointer;
	text-decoration: none;
	outline: 0;
	border: 0;
}
a.mb-scrollButtons.mb-left {
	background-position: left top;
	left: -55px;
}
a.mb-scrollButtons.mb-right {
	background-position: right top;
	right: -55px;
}
a.mb-scrollButtons.mb-left:hover {
	background-position: left bottom;
}
a.mb-scrollButtons.mb-right:hover {
	background-position: right bottom;
}
a.mb-scrollButtons.disabled {
	display: none;
}

/*** Controls added below the panels ***/
.mb-controls {
	margin: 0 auto;
	text-align: center;
	background: none;
	position: relative;
	z-index: 100;
}

/*** Color = ROW OF DOTS ***/
.mb-controls a {
	color: #888;
	font: 18px/18px Georgia, Serif;
	display: inline-block;
	text-decoration: none;
	padding: 2px;
	margin: 0 5px 0 0;
	text-align: center;
	outline: 0;
}

/*** Color = HOVER DOT ***/
.mb-controls a:hover {
	color: #333;
}


/*** Color = CURRENT DOT (Mothers Red) ***/
.mb-controls a.current {
	color: #B40404;
}


/*** Background Color = Color bar behind navigation dots ***/
.mb-active-slider .mb-controls {
	background: white;
}