
.volume_control:hover {
    background: transparent !important;
}

#volume_slider {
	width: 150px;
	height: auto;
	margin: 15px 0 0 0;
	position: relative;
}

#volume_slider:hover {
    background: transparent !important;
}

#volume_slider #slider{
	border-width: 1px;
	border-style: solid;
	border-color: #333 #333 #777 #333;
	border-radius: 25px;
	width: 100px;
	position: absolute;
	height: 8px;
	top: 3px;
	background: #555 !important;
    box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, .5),
    				  0 1px 0 0 rgba(250, 250, 250, .5);
    left: 20px;
}
#volume_slider .tooltip {
	position: absolute;
	display: none;
	top: 25px;
	width: 35px;
	height: 25px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	border-radius: 3px;
	border: 1px solid #333;
    -webkit-box-shadow:  1px 1px 2px 0 rgba(0, 0, 0, .3);
    box-shadow:  1px 1px 2px 0 rgba(0, 0, 0, .3);
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: -moz-linear-gradient(top,  rgba(69,72,77,0.5) 0%, rgba(0,0,0,0.5) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(69,72,77,0.5)), color-stop(100%,rgba(0,0,0,0.5))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(69,72,77,0.5) 0%,rgba(0,0,0,0.5) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(69,72,77,0.5) 0%,rgba(0,0,0,0.5) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(69,72,77,0.5) 0%,rgba(0,0,0,0.5) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(69,72,77,0.5) 0%,rgba(0,0,0,0.5) 100%); /* W3C */
}
#volume_slider .volume {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	right: -5px;
	background: url("/_/images/volume.png") no-repeat 0 -50px;
	position: absolute;
	margin-top: -5px;
	cursor: pointer;
}
#volume_slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background: url("/_/images/handle.png") no-repeat 50% 50%;
	font-weight: bold;
	color: #1C94C4;
	outline: none;
	top: -9px;
	margin-left: -12px;
	border: none;
}
#volume_slider .ui-slider-range {
	background: #888; /* Old browsers */
	background: -moz-linear-gradient(top,  #888 0%, #999 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#888), color-stop(100%,#999)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #888 0%,#999 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #888 0%,#999 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #888 0%,#999 100%); /* IE10+ */
	background: linear-gradient(top,  #888 0%,#999 100%); /* W3C */
	position: absolute;
	border: 0;
	top: 0;
	height: 100%;
	border-radius: 25px;
}