/*
 * Project: CirclePlayer
 * http://www.jplayer.org
 *
 * Copyright (c) 2011 Happyworm Ltd
 *
 * Author: Silvia Benvenuti
 * Edited by: Mark J Panaghiston
 * Date: 6th May 2011
 * Artwork inspired by: http://forrst.com/posts/Untitled-CJz
 */

.cp-container {
	height: 50px;
	width: 50px;
	padding: 0;
	margin: 0;
	position: relative;
}

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

 

.cp-controls {
	width: 50px;
	height: 50px;
	padding: 0px 2px;
	margin: 0px;
	float: left;
	display: inline; /* Отображать как строчный элемент */
	zoom: 1; 
}

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

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

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

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

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

.cp-jplayer {
	width: 50px;
	height: 50px; 
}
