/*
 * 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
 */

/* 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)
 */



/* This is needed when progress is greater than 50% or for fallback */

.cp-container {
	position:relative;
	width:50px; /* 200 - (2 * 48) */
	height:51px;
	padding:5px 15px;
	text-align:center;
} 

.cp-circle-control {
	cursor:pointer;
}

.cp-controls {
	margin:0 auto;
	padding:0;
}

.cp-controls li{
	list-style-type:none;
	display:block;

	/*IE Fix*/
	position:absolute;
}

.cp-controls li a{
	position:relative;
	display:block;
	width:50px;
	height:51px;
	text-indent:-9999px;
	z-index:1;
	cursor:pointer;
}

.cp-controls .cp-play {
	background:url("controls.png") 0 0 no-repeat;
}

.cp-controls .cp-play:hover {
	background:url("controls.png") -51px 0 no-repeat;
}

.cp-controls .cp-pause {
	background:url("controls.png") -153px 0 no-repeat;
}

.cp-controls .cp-pause:hover {
	background:url("controls.png") -102px 0 no-repeat;
}

.cp-jplayer {
	width:0;
	height:0;
}
