.audioplayer
{
	color: #fff;
	border: none;
	position: relative;
	z-index: 1;
	background: transparent;
}
	.audioplayer-mini
	{
		width: 2.5em; /* 40 */
		margin: 0 auto;
	}
	.audioplayer-bar{
		position: relative;
		height: 7px;
		background-color: rgba(255, 255, 255, 0.5);
		cursor: pointer;
		z-index: 1;
	}
		.audioplayer-novolume .audioplayer-bar{
			right: 4.375em; /* 70 */
		}
		.audioplayer-bar div{
			width: 0;
			height: 100%;
			position: absolute;
			left: 0;
			top: 0;
		}
		.audioplayer-bar-loaded{
			z-index: 1;
		}
		.audioplayer-bar-played{
			background: #3d3d3d;
			z-index: 2;
		}
	.audioplayer *,
	.audioplayer *:before,
	.audioplayer *:after{
		-webkit-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
		-moz-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
		-ms-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
		-o-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
		transition: color .25s ease, background-color .25s ease, opacity .5s ease;
	}
	.audioplayer-bar-played{
		transition-property: width;
		transition-timing-function: linear;
	}