/*
 * Project: CirclePlayer
 * http://www.jplayer.org
 *
 * Copyright (c) 2012 Happyworm Ltd
 *
 * Author: Silvia Benvenuti
 * Edited by: Mark J Panaghiston
 * Date: 2nd October 2012
 * Artwork inspired by: http://forrst.com/posts/Untitled-CJz
 */

.cp-container {
	position:relative;
	width:80px; /* 200 - (2 * 48) */
	height:60px;
	padding:0px;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

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

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

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

.cp-buffer-holder,
.cp-progress-holder {
	clip:rect(0px,104px,104px,52px);
	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-1.cp-fallback{
	clip:rect(auto, auto, auto, auto);
}

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

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

	/*IE Fix*/
	position:absolute;
}

.cp-controls li a{
	position:relative;
	display:block;
	width:80px;
	height:60px;
	text-indent:-9999px;
	z-index:100;
	cursor:pointer;
}

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

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

.cp-controls .cp-pause {
	background:url("/images/audio_button_pause.png") 0 0 no-repeat;
}

.cp-controls .cp-pause:hover {
	background:url("/images/audio_button_pause.png") 0 0 no-repeat;
}

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