/*
 * 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;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.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:50px;
	height:50px;
	clip:rect(0px,25px,50px,0px);

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

.cp-buffer-1,
.cp-buffer-2 {
	border: 1px solid #005153;
        opacity: 0.3;
}


/* 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 {
	}

.cp-progress-1,
.cp-progress-2 {
	border: 2px solid #005153;
}

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

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


.cp-buffer-holder,
.cp-progress-holder {
	clip:rect(0px,50px,50px,25px);
	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:15px 0 0 18px;
}

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

	/*IE Fix*/
	position:absolute;
}

.cp-controls li a{
	display:block;

}


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