/*
 * 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-med {
	position:relative;
	width:104px; /* 200 - (2 * 48) */
	height:104px;
	background:url("bgr.png") 0 0 no-repeat;
	padding:48px;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	left: 50px;
	top: 50px;
}

.cp-container-med :focus {
	border:none;
	outline:0;
}

.cp-buffer-1-med,
.cp-buffer-2-med,
.cp-progress-1-med,
.cp-progress-2-med {
	position:absolute;
	top:0;
	left:0;
	width:104px;
	height:104px;
	clip:rect(0px,52px,104px,0px);

	-moz-border-radius:52px;
	-webkit-border-radius:52px;
	border-radius:52px;
}

.cp-buffer-1-med,
.cp-buffer-2-med {
	background:url("buffer.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-med .cp-fallback-med {
	/*background:url("progress_sprite.jpg") no-repeat;*/
	background-position:0 104px; 
}

.cp-progress-1-med,
.cp-progress-2-med {
	background:url("progress.png") 0 0 no-repeat;
}

.cp-buffer-holder-med,
.cp-progress-holder-med,
.cp-circle-control-med {
	position:absolute;
	width:104px;
	height:104px;
} 

.cp-circle-control-med {
	cursor:pointer;
}

.cp-buffer-holder-med,
.cp-progress-holder-med {
	clip:rect(0px,104px,104px,52px);
	display:none;
}


/* This is needed when progress is greater than 50% or for fallback */

.cp-buffer-holder-med.cp-gt50-med,
.cp-progress-holder-med.cp-gt50-med,
.cp-progress-1-med.cp-fallback-med{
	clip:rect(auto, auto, auto, auto);
}

.cp-controls-med {
	margin:0;
	padding:26px;
}

.cp-controls-med li{
	list-style-type:none;
	display:block;

	/*IE Fix*/
	position:absolute;
}

.cp-controls-med li a{
	position:relative;
	display:block;
	width:50px;
	height:50px;
	text-indent:-9999px;
	z-index:1;
	cursor:pointer;
}

.cp-controls-med .cp-play-med {
	background:url("controls.png") 0 0 no-repeat;
}

.cp-controls-med .cp-play-med:hover {
	background:url("controls.png") -50px 0 no-repeat;
}

.cp-controls-med .cp-pause-med {
	background:url("controls.png") 0 -50px no-repeat;
}

.cp-controls-med .cp-pause-med:hover {
	background:url("controls.png") -50px -50px no-repeat;
}

.cp-jplayer-med {
	width:0;
	height:0;
}
