/*
 * 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 {
	width:30px;
	height:30px;
	background: url("../images/bgr.jpg") 0 0 no-repeat;
	display: inline-block;
	vertical-align: bottom;
	margin-left:10px;
}

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

.cp-controls .cp-play:hover {
	background: url("../images/controls.jpg") -15px 0 no-repeat;
}

.cp-controls .cp-pause {
	background: url("../images/controls.jpg") 0 -15px no-repeat;
}

.cp-controls .cp-pause:hover {
	background: url("../images/controls.jpg") -15px -15px no-repeat;
}

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

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

	/*IE Fix*/  
	position:absolute;
}

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

