/*** Overall MovingBoxes Slider ***/
.mb-wrapper {
	margin: 0 auto 10px;
	position: relative;
	left: 0;
	top: 0;
}

/* Panel Wrapper */
.mb-slider, .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 {
	border-color: #333;
}

/*** Slider panel ***/
.mb-slider .mb-panel {
	margin: 0;
	padding: 0;
	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: 0;
	//border: 1px solid #999;
	border-left: 2px solid #FFF;
	border-right: 2px solid #FFF;
}

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


/*** Left & Right Navigation Arrows ***/
/* XSmall devices (phone, 480px and up) */
a.mb-scrollButtons {
	display: block;
	width: 45px;
	height: 58px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	text-decoration: none;
	outline: 0;
	border: 0;
	color: #FFF;
	z-index: 1000;
	font-size: 16px;
}
a.mb-scrollButtons .fa-inverse {
	color: #000;
}

a.mb-scrollButtons.mb-left { left: 30px; }
a.mb-scrollButtons.mb-right { right:30px; }

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
	a.mb-scrollButtons 			{ top: 65%;	}
	a.mb-scrollButtons.mb-left  { left: 50px; }
	a.mb-scrollButtons.mb-right { right:50px; }
	
}

a.mb-scrollButtons.disabled {
	display: none;
}



/*** Controls added below the panels ***/
.mb-controls {
	margin: 0 auto;
	text-align: center;
	background: #ccc;
	position: relative;
	z-index: 100;
}
.mb-controls a {
	color: #666;
	font: 18px/2.2 Georgia, Serif;
	display: inline-block;
	text-decoration: none;
	padding: 2px;
	margin: 0 5px 0 0;
	text-align: center;
	outline: 0;
}
.mb-controls a:hover {
	color: black;
}
.mb-controls a.current {
	color: white;
}
.mb-active-slider .mb-controls {
	background: #333;
}