/*** Overall MovingBoxes Slider ***/
.mb-wrapper {
	border:0;
	margin:0;
	position: relative;
	left: 0;
	top: 0;

}

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



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

/*** Slider panel ***/
.mb-slider .mb-panel {
	margin: 0;
	padding:0;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	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;
	margin:0;
}
.mb-slider .mb-panel.current .mb-inside { position:relative; z-index: 100; }

.mb-slider .mb-panel.current .mb-inside { margin-top:0; }

	/*** Inside the panel ***/
.mb-inside {
	padding:0;
	margin:0 -4px;
	/*margin-top:55px;*/
	-webkit-box-shadow: 0px 0px 16px 6px rgba(0,0,0,0.35); 	-moz-box-shadow: 0px 0px 16px 6px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 16px 6px rgba(0,0,0,0.35);
}





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

/*** Left & Right Navigation Arrows ***/
a.mb-scrollButtons {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px; text-align: center;
	border:0;
	position: absolute;
	top:-64px;
	margin-top:0px; /* 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;
	background-color: #fff;
	color:#000; font-size: 18px;
}
a.mb-scrollButtons.mb-left {
	left: 40%;
}
a.mb-scrollButtons.mb-right {
	right: 40%;
}


/*** Controls added below the panels ***/
.mb-controls {
	display: none;
	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;
}