/*
 * 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:40px; /* 200 - (2 * 48) */
	height:25px;
	background:url("bgr.png");
	background-size: 26px !important;
	background-repeat: no-repeat;
	/*-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:0px;
	left:0px;
	width:26px;
	height:26px;
	clip:rect(0px,13px,26px,0px);

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

.cp-buffer-1,
.cp-buffer-2 {
	background:url("buffer26.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_sprite26.jpg") no-repeat;
	background-position:0 13px;
}

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

.cp-buffer-holder,
.cp-progress-holder,
.cp-circle-control {
	position:absolute;
	width:26px;
	height:26px;
	margin-top: 0px;
	margin-left: 0px;
}

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

.cp-buffer-holder,
.cp-progress-holder {
	clip:rect(0px,26px,26px,13px);
	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;
	padding-top: 1px;
	padding-left: 6px;

	/*IE Fix*/
	position:absolute;
}

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

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

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

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

.cp-controls .cp-pause:hover {
	background:url("controls-pause2.png") 0 0 no-repeat;
	width: 13px;
	height:13px;
	background-size: 13px;
}

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