/* Absolute Center */
.abs-center{
	margin: auto;
	position: fixed;
	top:0; right:0; bottom:0; left:0;
}
/*Container for audio player*/
#audioplayer{
	width: 100%;
	height: 50px;
	margin: auto;
	/*margin-top: 50px;*/
	border-style:none;
	/*
	border-style: solid;
    border-width:1px;
	border-color: #333333;*/
	
	background-color: #000000;
}
/* Play/Pause Button */
#pButton{
	height:50px;
	width: 15%;
	border: none;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	background-position: center;
	float:left;
	outline:none;

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

#timeline{
	width: 80%;
	height: 20px;
	background: rgba(0,0,0,.3);
	background: #333333;
	margin-top: 15px;
	float: left;
	border-radius: 15px;
}


/*Grabable Playhead*/
#playhead{
	cursor: pointer;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	margin-top: 1px;
	background: #EEEEEE;
}
