/*
 * 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: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);
	margin-top: -15%;
}

.cp-container :focus {
	border:none;
	outline:0;
}

.cp-controls {
	margin:0;
	padding:26px;
}

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

	/*IE Fix*/
	position:absolute;
}

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

.cp-controls .cp-play {
	background:url("../../../system/assets/images/ui/radio-controls.png") 0 0 no-repeat;
}

.cp-controls .cp-play:hover {
	background:url("../../../system/assets/images/ui/radio-controls.png") -50px 0 no-repeat;
}

.cp-controls .cp-pause {
	background:url("../../../system/assets/images/ui/radio-controls.png") 0 -50px no-repeat;
}

.cp-controls .cp-pause:hover {
	background:url("../../../system/assets/images/ui/radio-controls.png") -50px -50px no-repeat;
}

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

.ui-slider.ui-slider-horizontal {
	background: linear-gradient(#686363, #423f3f);
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
	border: none;
}

.ui-slider .ui-slider-handle {
	background: linear-gradient(#777777, #525252);
	border: 1px solid #242424;
	cursor: pointer;
}

.ui-slider .ui-slider-range {
	background: linear-gradient(#949494, #585858);
}