#audioplayer {
	margin: 5px;
	float: right;
	width: 6%;
}
.play,.pause {
	background: #fff;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	position: absolute;
	margin: 5px;
	display: block;
	overflow: hidden;
	text-indent: -1000px;
}
.play:after {
	border-color:transparent transparent transparent #008264;
    border-style:solid;
    border-width: 5px 5px 5px 10px;
  	width:0;
  	height:0;
  	position: absolute;
  	top: 5px;
  	left: 6px;
  	content: '';
}
.pause:after {
	border-color: #008264;
	background: #fff;
	border-style:solid;
	border-width: 0 3px 0 3px;
	width:2px;
  	height:10px;
  	position: absolute;
  	top: 5px;
  	left: 6px;
  	content: '';
}