
.k_audio-player,
.k_audio-player div,
.k_audio-player h1,
.k_audio-player a,
.k_audio-player img,
.k_audio-player span,
.k_audio-player button {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

div.k_audio-player {
	position: relative;
	width: 212px;
	height: 120px;
	
	background: #3b3090;
	background: -webkit-linear-gradient(top, #00a2e4 0%, #3b3090 100%);
	background: -moz-linear-gradient(top, #00a2e4 0%, #3b3090 100%);
	background: -o-linear-gradient(top, #00a2e4 0%, #3b3090 100%);
	background: -ms-linear-gradient(top, #00a2e4 0%, #3b3090 100%);
	background: linear-gradient(top, #00a2e4 0%, #3b3090 100%);

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border: 3px solid #df1b1a;
	border-radius: 4px;
}

/* Title */
.k_audio-player h1 {
	position: absolute;
	top: 93px;
	left: 23px;

	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 14px;
	color: #ececec;
	text-shadow: 1px 1px 1px rgba(0,0,0, .5);
}

/* Cover */
.k_audio-player .cover {
	position: absolute;
	top: 0;
	left: 0;
}

/* Buttons */
.mejs-controls .mejs-button button {
	cursor: pointer;
	display: block;
	position: absolute;
	text-indent: -9999px;
}

/* Play & Pause */
.mejs-controls .mejs-play button,
.mejs-controls .mejs-pause button {
	width: 21px;
	height: 21px;
	top: 40px;
	left: 54px;
	background: transparent url(../images/play-pause.png) 0 0;
}

.mejs-controls .mejs-pause button { background-position:0 -21px; }

/* Volume Slider */
.mejs-controls div.mejs-horizontal-volume-slider {
	position: absolute;
	top: 80px;
	left: 0px;
	cursor: pointer;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	width: 212px;
	height: 8px;
	background: #3b3090;

	-webkit-box-shadow: inset 0px 1px 0px rgb(105, 3, 3), 0px 1px 0px rgba(255,255,255, .25);
	-moz-box-shadow: inset 0px 1px 0px rgba(0,0,0, .3), 0px 1px 0px rgba(255,255,255, .25);
	box-shadow: inset 0px 1px 0px rgba(0,0,0, .3), 0px 1px 0px rgba(255,255,255, .25);

	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	position: absolute;
	width: 0;
	height: 6px;
	top: 1px;
	left: 1px;
	background: url(../images/volume-bar.png) repeat-x;

	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

/* Volume Slider & Progress Bar Handle */
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
	position: absolute;
	display: block;
	width: 12px;
	height: 14px;
	top: -4px;
	background: url(../images/handle.png) no-repeat;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle { top: -2px; }


