/* Default MovingBoxes wrapper size */
#movingboxes {width: 270px; min-height: 200px;}

/* Default MovingBoxes panel size */
#movingboxes > li {width: 260px;}

/*** Overall MovingBoxes Slider ***/
.mb-wrapper {border:5px solid #E9E9E9; margin: 0 auto; position:relative; left: 0; top: 0; width:420px;}

/* 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;
	border:1px solid #CCC;
}

/* active slider border highlight */
.mb-active-slider {
	border-color: #E9E9E9;
}

/*** Slider panel ***/
.mb-slider .mb-panel {
	margin: 0px 0 3px 0;
	padding: 5px 5px 5px 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: 10px; /*border: 1px solid #999;*/}

.mb-inside * {max-width: 100%;}

/*** Left & Right Navigation Arrows ***/
a.mb-scrollButtons {
	display: block;
	width:30px;
	height:40px;
	background: url(../img/images/arrows.png) no-repeat;
	position: absolute;
	top: 50%;
	margin-top: -20px; /* if you change the arrow images, you may have to adjust this (1/2 height of arrow image) */
	cursor: pointer;
	text-decoration: none;
	border: 0;
	z-index:9999;
}
a.mb-scrollButtons.mb-left {
	background-position: left top;
	left:-20px;
}
a.mb-scrollButtons.mb-right {
	background-position: right top;
	right:-20px;
}
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: #ccc;
	position: relative;
	z-index: 100;
}
.mb-controls a {
	color: #444;
	font: 12px Georgia, Serif;
	display: inline-block;
	text-decoration: none;
	padding: 2px;
	height: 18px;
	margin: 0 5px 0 0;
	text-align: center;
	outline: 0;
}
.mb-controls a.current, .mb-controls a:hover {
	color: #fff;
}
.mb-active-slider .mb-controls {
	background: #999bff;
}*/