.mfplayer .controls, .mfplayer.controls * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.mfplayer .controls {
	display: flex;
	position: relative;
	background-color: transparent;
	height: 48px;
	border-radius: 5px;
	padding: 10px;
}
.mfplayer .buttons {
	/* 184x96 */
	flex: 0 0 54px;
	position: relative;
	width: 92px;
	height: 48px;
	background-image: url(../images/musicfox_player_showreel.png);
	background-position: -19px 0;
	background-size: 130px 240px;
	background-repeat: no-repeat;
}
.mfplayer .buttons * {
	position: absolute;
	top: 0;
	background-image: url(../images/musicfox_player_showreel.png);
	background-size: 130px 240px;
}
.mfplayer .buttons .prev {
	left: 0;
	top: 0;
	width: 27px;
	height: 48px;
	background-position: 0 -48px;
}
.mfplayer .buttons .prev.disabled {
	background-position: 0 -96px;
}
.mfplayer .buttons .prev:hover {
	background-position: 0 -144px;
}
.mfplayer .buttons .prev:active {
	background-position: 0 -192px;
}
.mfplayer .buttons .play {
	left: 8px;
	width: 38px;
	height: 48px;
	background-position: -27px -48px;
}
.mfplayer .buttons .play.disabled {
	background-position: -27px -96px;
}
.mfplayer .buttons .play:hover {
	background-position: -27px -144px;
}
.mfplayer .buttons .play:active {
	background-position: -27px -192px;
}
.mfplayer .buttons .stop {
	display: none;
	left: 8px;
	width: 38px;
	height: 48px;
	background-position: -65px -48px;
}
.mfplayer .buttons .stop.disabled {
	background-position: -65px -96px;
}
.mfplayer .buttons .stop:hover {
	background-position: -65px -144px;
}
.mfplayer .buttons .stop:active {
	background-position: -65px -192px;
}
.mfplayer.playing .buttons .stop {
	display: block;
}
.mfplayer.playing .buttons .play {
	display: none;
}
.mfplayer .buttons .next {
	left: 65px;
	top: 0;
	width: 27px;
	height: 48px;
	background-position: -103px -48px;
}
.mfplayer .buttons .next.disabled {
	background-position: -103px -96px;
}
.mfplayer .buttons .next:hover {
	background-position: -103px -144px;
}
.mfplayer .buttons .next:active {
	background-position: -103px -192px;
}
.mfplayer .waveform {
	flex: 1 0 0;
	position: relative;
	height: 150px;
	margin: -50px 0 -10px 10px;
	overflow:auto;
	opacity:0.8;
}
.mfplayer .playlist {
	margin: 0;
	padding: 0;
}
.mfplayer .playlist li {
	line-height: 1.5;
	margin: 0;
	list-style-type: none;
	padding: 0;
    border-bottom: 1px solid #e5e5e5;
}
.mfplayer .playlist li:last-child {
    border-bottom: none;
}
.mfplayer .playlist a {
	display: flex;
	color: #666;
	text-decoration: none;
	margin-left: 1.5em;
}
.mfplayer .playlist .title {
	flex: 1 0;
}
.mfplayer .playlist .duration {
	flex: 0 0;
}
.mfplayer .playlist .duration:before {
	content: "(";
}
.mfplayer .playlist .duration:after {
	content: ")";
}
.mfplayer .playlist .current a {
	color: #F58634;
}
.mfplayer .playlist .current:before {
    float: left;
	display: block;
    width: 1.5em;
	content: "▪";
	color: black;
	line-height: 1.5;
    text-align: center;
}
