/*
 * Author: Tobias Pyndt Steinmann
 * Date: 2012-04-24
 * Artwork inspired by: CirclePlayer from jPlayer
 */

#audioContent {
	width: 640px;
	height: 380px;
	background-color: #333333;
	color: #969696;
	font-family:Verdana, Arial, sans-serif;
	font-size:.7em;
	font-style:oblique;
}

#audioStatus {
	width:150px;
	margin: 0 auto;
	margin-top: 78px;
	text-align: center;
}

.cp-container {
	position: relative;
	width: 96px; /* 200 - (2 * 48) */
	height: 96px;
	background: url("bgr.png") 0 0 no-repeat;
	padding: 52px;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	margin: 0 auto 0 auto;
	top: 78px;
}

.cp-container :focus {
	border:none; 
	outline:0;
}

.cp-buffer-1,
.cp-buffer-2,
.cp-progress-1,
.cp-progress-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 96px;
	height: 96px;
	clip:rect(0px,48px,96px,0px);

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

.cp-buffer-1,
.cp-buffer-2 {
	background: url("buffer.png") 0 0 no-repeat;
}     


/* FALLBACK for .progress
 * (24 steps starting from 1hr filled progress, Decrease second value by 104px for next step)
 * (It needs the container selector to work. Or use div)
 */ 

.cp-container .cp-fallback {
	background: url("progress_sprite.jpg") no-repeat;
	background-position: 0 104px; 
}

.cp-progress-1,
.cp-progress-2 {
	background: url("progress.png") 0 0 no-repeat;
} 

.cp-buffer-holder,
.cp-progress-holder,
.cp-circle-control {
	position:absolute;
	width:96px;
	height:96px;
} 

.cp-circle-control {
	cursor:pointer;
}

.cp-buffer-holder,
.cp-progress-holder {
	clip:rect(0px,96px,96px,48px);
	/*display:none;*/
}


/* This is needed when progress is greater than 50% or for fallback */

.cp-buffer-holder.cp-gt50,
.cp-progress-holder.cp-gt50,
.cp-progress.cp-fallback{
	clip:rect(auto, auto, auto, auto);
}  

.cp-controls {
	margin:0;
	padding: 23px;
}

.cp-controls li{
	list-style-type:none;
	display: block;

	/*IE Fix*/  
	position:absolute;
}

.cp-controls li a{
	position: relative;
	display: block;
	width:50px;
	height:50px;
	text-indent:-9999px;
	z-index:1;      
}

.cp-controls .cp-play {
	background: url("controls.png") 0 0 no-repeat;
}

.cp-controls .cp-play:hover {
	background: url("controls.png") 0 -50px no-repeat;
}

.cp-controls .cp-pause {
	background: url("controls.png") -50px 0 no-repeat;
}

.cp-controls .cp-pause:hover {
	background: url("controls.png") -50px -50px no-repeat;
}

.cp-jplayer {
	width: 0;
	height: 0; 
}
