.featured {
    width: 100%;
	position: relative;
}
/*----------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////// SLIDER
----------------------------------------------------------------------------------------------------------*/
/*--- PANELS WRAPPER ---*/
#my-panels {
	position: relative;
    padding-top: 74.232%;
	background: #000;
	z-index: 1
}
	@media screen and (min-width: 960px) {
		#my-panels {
			padding-top: 0;
			height: 700px;
		}
	}
/*--- PANELS ---*/
#my-panels .panel {
	position:absolute;
	left:0;
	top: 0;
	bottom: 0px;
	right: 0px;
	height: 100%;
	width: 100%;
	overflow: hidden;
	-webkit-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
	-webkit-opacity:0;
	-moz-opacity:0;
	opacity:0;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	z-index: 50;
	background-position: center center;
	background-repeat: repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}
#my-panels .on {
	-webkit-opacity:1;
	-moz-opacity:1;
	opacity:1;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=1);
	z-index: 51;
}
/*--- CONTROLS ---*/
#my-controls {
	position: absolute;
	bottom: 90px;
	left: 0px;
	right: 0px;
	width: 100%;
	z-index: 99;
	text-align:center;
}
/*--- NEXT / PREV. ---*/
a.control-btn {
	position: absolute;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-size: 20px;
	text-align: center;
	line-height: 28px;
	color: rgba(255,255,255,0.2);
	-webkit-text-shadow: 0 1px 1px rgba(0,0,0,.1);
	-moz-text-shadow: 0 1px 1px rgba(0,0,0,.1);
	text-shadow: 0 1px 1px rgba(0,0,0,.1);
	top: 50%;
	z-index: 99;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	text-decoration: none;
}
	a.control-btn:hover {
		color: #fff;
	}
a.control-btn.prev {
	left: 10px;
}
a.control-btn.next {
	right: 10px;
}
/*--- BULLETS ---*/
#my-controls span {
	margin: 0px 3px;
	display:  inline-block;
	width: 10px;
	height: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	cursor: pointer;
	background: rgba(150,150,150,.5);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
	#my-controls span.selected {
		background: rgba(255,255,255,1);
	}
/*--- PAUSE PLAY ---*/
#my-controls a.play_pause {
	top: -10px;
	right: 10px;
	font-size: 10px;
	color: #ccc;
}
#my-controls a.play {
	color: #000;
}
/*--- STATUS ---*/
#status {
    float: left;
}
