/*
 * 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
 */
*
{
	margin:0px;
	padding:0px;
	outline:0px;
	border:0 none;
}
.cp-container {
	float:left;
	width:60px; /* 200 - (2 * 48) */
	height:60px;
	background:url("circle1.png") 0 0 no-repeat;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	margin:0 0 0 20px;
}

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

.cp-buffer-1,
.cp-buffer-2,
.cp-progress-1,
.cp-progress-2 {
	position:absolute;
	top:0;
	left:0;
	width:60px;
	height:60px;
	clip:rect(0px,30px,60px,0px);

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

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

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

.cp-buffer-holder,
.cp-progress-holder,
.cp-circle-control {
	position:absolute;
	width:60px;
	height:60px;
} 

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

.cp-buffer-holder,
.cp-progress-holder {
	clip:rect(0px,60px,60px,30px);
	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:17px;
	float:left;
	padding:0px;
}

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

	/*IE Fix*/
	position:absolute;
}

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

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

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

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

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

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

.cp-cont a
{
	float:left;
	/*border:1px solid red;*/
	height:18px;
	margin:-30px 0 0 80px;
	font-size:14px;
	color:#00baff;
	/*border:1px solid #999;
	padding:3px 10px;
	background:#555;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-khtml-border-radius:5px;
	-o-border-radius:5px;
	box-shadow:0px 5px 10px #999;*/
}

.pl{float:left;width:120px;margin:-18px 0 0 10px;height:65px; padding-top:30px;border-right:1px solid #666;}
.tree{float:left;/*border:1px solid red;*/width:60px;margin:-20px 10px 0 0;}
.tree img{float:left;width:80px;}
.para_head{float:left;font-size:12px;color:#333;font-family:georgia;margin:10px 0 0 0px;height:20px;}