.clearfix{
	clear:both;
}

#container{
	width:300px;
	min-height:300px;
	background:#303030;
	overflow:auto;
	margin:10px auto;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	border:#666 solid 5px;
}

#audio-image{
	position:static;
	overflow:hidden;
	height:80px;
	margin:5px;
}

#audio-info{
	text-align:center;
	color:#eee
}

#audio-info .artist{
	font-weight:bold;
	color:#eee
}

.cover{
	width:72px;
	z-index:1;
	float:left;
}

input#volume {
	width:95%;
	margin-left:2%;
    -webkit-appearance: none !important;
    background:#ccc;
    height:1px;
	margin-bottom:20px;
}

input#volume::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    background:url(/resources/audioplayer/buttons/knob.png) no-repeat;
    height:12px;
    width:12px;
}

#buttons{
	width:50%;
	display: block;
    margin: 15px auto;
	margin:5px;
	float: right;
	overflow:auto;
}


button#play{
	width:32px;
	height:32px;
	background:url(/resources/audioplayer/buttons/play.png) no-repeat;
}

button#pause{
	width:32px;
	height:32px;
	background:url(/resources/audioplayer/buttons/pause.png) no-repeat;
}

button#stop{
	width:32px;
	height:32px;
	background:url(/resources/audioplayer/buttons/stop.png) no-repeat;
}

button#prev{
	width:32px;
	height:32px;
	background:url(/resources/audioplayer/buttons/prev.png) no-repeat;
}

button#next{
	width:32px;
	height:32px;
	background:url(/resources/audioplayer/buttons/next.png) no-repeat;
	// float:right;
}

#playlist {
    list-style-type: none;
	padding:10px;
}

#playlist li {
    cursor: pointer;
    margin:5px;
	color:#eee
}

#tracker{
	position:relative;
	width:100%;
}

#playlist li.active {
    font-weight: bold;
	padding:3px;
	background:#aaa;
	color:#eee
}

#progressBar { 
   width:80%;
   margin-left:2%;
   margin-bottom:20px;
   margin-top:9px;
   height:10px;
   background:url(/resources/audioplayer/buttons/progress_bg.png) no-repeat;
   float:left;
}

#progress {
   background:url(/resources/audioplayer/buttons/progress.png) no-repeat;
   height:10px;
   display:inline-block;
}

#duration{
	position:absolute;
	top:0;
	right:10px;
	padding:4px 8px;
	background:#303030;
	border-radius:5px;
	color: #ddd;
}

