/*----------------------------
	knobKnob Styles
-----------------------------*/


.knob{
	width:136px;
	height:136px;
	position:relative;
    /*top: 400px;
    right: 100px;*/
}

.knob .top{
    cursor: hand;
	position:absolute;
	top:50px;
	left:0;
	width:136px;
	height:136px;
	background:url('../images/record-player/volume-knob2.png') no-repeat;
	z-index:10;
}

.knob .base{
	width:160px;
	height:160px;
	/*border-radius:50%;*/
	/*box-shadow:0 5px 0 #4a5056,5px 5px 5px #000;*/
	background:url('../images/record-player/volume-shadow.png') no-repeat;
	position:absolute;
	top:55px;
	left:-5px;
	z-index:1;
	
}

.knob .top:after{
	content:'';
	width:10px;
	height:10px;
	/*background-color:#666;*/
	position:absolute;
	top:50%;
	left:10px;
	margin-top:-5px;
	border-radius: 50%;
	box-shadow: 0 0 1px #5a5a5a inset;
	display:none;
}

.knob [draggable] {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}