.ddvideoGallery{
	width: 100%; /* width of DD Youtube Slider. Height auto determined using 16:9 ratio */
}

.ddvideoGallery *{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.videoWrapper{
	position: relative;
	padding-bottom: 56.25%; /* 16:9 ratio. See https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */
	padding-top: 25px;
	height: 0;
}


.videoWrapper iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}


.videoNav{
	width: 100%;
	min-height: 11em;
	position: relative;
	overflow: hidden;
	background: #000; /* background of navigation strip */
	padding-bottom: 10px;
}

.videoNav ul{
	list-style: none;
	position: relative;
	width: auto;
	padding: 0;
	overflow: auto;
	white-space: nowrap;
	text-align: center;
}

.videoNav ul li{
	display: block;
	margin: 5px 0;
}

	a.yt-button {
		text-decoration: none;
		color: #fff;
		display: inline-block;
	}

	.videoNav ul li span{ 
		display: block;
		width: 100%;
		background-color: transparent;
	}
	.videoNav ul li span.playing{ 
		display: block;
		width: 100%;
		background-color: #222;
		transition: background 0.5s ease-in-out;
	}

	.videoNav ul li sspan:hover{
		background-color: green;
		transition: background 0.15s ease-in-out;
	}

.videoNav ul li img{
	max-width: 90px;
	width: 20%;
	height: auto;
	position: relative;
	border: 4px solid transparent;
	cursor: pointer;
	transition: all .5s;
}

.videoNav ul li img:hover, .videoNav ul li img.selected{
	border: 4px solid #47d2e9;
}

.song-direct-link {
	font-size: 65%;
	display: inline-block;
	margin-left: 3px;
	position: relative; top: -1px;
}