/* Absolute Center */
.abs-center{
	margin: auto;
	position: fixed;
	top:0; right:0; bottom:0; left:0;
}

/*Container for audio player*/
#audioplayer{
	width: 95%;
	max-width: 400px;
	height: 50px;
	margin: 0 auto 60px auto;
	/*margin-top: 50px;*/
	border-radius: 25px;
	background-color: #f1ece5;
}

#ctrl-wrap{
	/*display: inline-block;*/
	width: 95%;
	height: 100%;
	margin: 0 auto;
}

/* Play/Pause Button */
#pButton{
	height:50px;
	width: 10%;
	margin: 0 10px;
	border: none;
	background-size: 60% auto;
	background-repeat: no-repeat;
	background-position: center;
	float:left;
	outline:none;
	opacity: .75;
	cursor: pointer;
}

/*Classes for play/pause button background*/
.play{background: url('../images/play.png')   ;}
.pause{background: url('../images/pause.png') ;}

#timeline{
	width: 80%;
	height: 3px;
	background: #cfcbc5;
	margin-top: 24px;
	float: left;
	border-radius: 15px;
}

/*Grabable Playhead*/
#playhead{
	cursor: pointer;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	/*margin-top: 1px;*/
	background: black;
	opacity: .75;
	margin-top: -6px;
}

.audio_info{
	display: block;
	font-size: .8em;
	margin-top: 10px;
	text-align: center;
}
