/*
 * 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:absolute;
    width:85px; /* 200 - (2 * 48) */
    height:115px;
	/*
    background:url("bgr.jpg") 0 0 no-repeat;
	*/
    padding:6px;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

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

.cp-container .cp-fallback {
    background:url("progress_sprite.jpg") no-repeat;
    background-position:0 44px;
}


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

.cp-circle-control {
    cursor:pointer;
	background: #f9f9f9;
}

.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: 0;
    padding: 50px 35px;
}

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

    /*IE Fix*/	
    position:absolute;
}

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

.cp-controls .cp-play{
    background:url("player.png") 0 0 no-repeat;
	background-position: 15px 28px;
}

.cp-controls .cp-pause {
    background:url("pause.png") no-repeat;
	background-position: 15px 28px;
}

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