/*
 * 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;
/*	position:relative;
	width:50px;
	height:50px;
	background:url("bgr.jpg") 0 0 no-repeat;
	padding:48px;
	-webkit-tap-highlight-color:rgba(0,0,0,0);*/
}

.cp-container span{
	position: absolute;
	left: 50px;
	top: 15px;
	color: #ff9a00;
	font-weight: bold;
	font-size: 13px;
}
.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,52px,50px,0px);

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

.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 50px 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 50px;
}

.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:50px;
	height:50px;
}

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

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

.cp-controls li{
	list-style-type:none;
	display:block;
	z-index: 1000;
	/*IE Fix*/
	position:absolute;
	left: 0;
}

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

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

.cp-controls a{
	-webkit-transition: 0;
	-moz-transition: 0;
	-ms-transition: 0;
	-o-transition: 0;
	transition: 0;

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

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

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

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