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

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

	/***(>'-')> 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;
	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;
}
.mb-inside {
    position:relative;
}
/*** Inside the panel ***/
.mb-inside > div{
    position:absolute;
    top:0;
    left:0;
    width:100%;
}

.mb-inside img {
	max-width: 100%;
    height:466px;
}

/*** Left & Right Navigation Arrows ***/
a.mb-scrollButtons {
	display: block;
	width: 21px;
	height: 33px;
	background-size: 100%;
	position: absolute;
	top: 50%;
	margin-top: -20px; 
	cursor: pointer;
	text-decoration: none;
	outline: 0;
    z-index:101;
	border: 0;
}
a.mb-scrollButtons.mb-left {
	background: transparent url(../img/slide_left_v2.png) no-repeat;
	background-size: 100%;
	left: 50%;
    margin-left:-450px;
}
a.mb-scrollButtons.mb-right {
	background: transparent url(../img/slide_right_v2.png) no-repeat;
	background-size: 100%;
	right: 50%;
    margin-right:-450px;
}
a.mb-scrollButtons.mb-left:hover {
	background: transparent url(../img/slide_left_hov_v2.png) no-repeat;
	background-size: 100%;
}
a.mb-scrollButtons.mb-right:hover {
	background: transparent url(../img/slide_right_hov_v2.png) no-repeat;
	background-size: 100%;
}
a.mb-scrollButtons.disabled {
	display: none;
}

/*** Controls added below the panels ***/
.mb-controls {
	margin: 0 auto;
	text-align: center;
	position: absolute;
	z-index: 100;
    width:100%;
    top:407px;
    left:0;
	height: 0px;
}
.mb-controls a {
	color: #666;
	font: 0px Georgia, Serif;
	display: inline-block;
	text-decoration: none;
    text-indent:-1000em;
	padding: 0;
    width:17px;
    height:17px;
	margin: 0 5px 0 0;
	text-align: center;
	outline: 0;
    background:url(../img/slide_btn.png) no-repeat;
}
.mb-controls a.current {
    background:url(../img/slide_btn_hov.png) no-repeat;
}