.play {
margin: 2px 5px 0px 2px;
}

div.bgplayerui{ /* Audio player UI DIV */
	background-color: #BBB;
	margin: 0px 0px 15px 55px;
	padding: 3px 3px 0px 3px;
	width: 175px;
	color: white;
}

div.bgplayerui .play, div.bgplayerui .rewind{ /* Audio player UI buttons style */
cursor: pointer;
}

div.bgplayerui div.volume{ /* Volume control container */
display: inline-block;
height: 18px;
overflow: hidden;
}

div.bgplayerui div.volume div{ /* Individual volume bars within Volume container */
float: left;
width: 5px;
height: 100%;
line-height: 100%;
margin-right: 2px;
background: #CCC;
cursor: pointer;
-moz-box-shadow: inset 1px 1px 2px gray;
}

div.bgplayerui div.volume div.on{ /* Style of volume bar when it's on */
background: blue;
}

input[type=button]{
-moz-transition: all 0.3s ease-in-out;
 background-color:none;
 color:#333;
 border:double;
 border-radius:0.5em;
 box-shadow:0 0.2em 0.5em #333;
}

input[type=button]:focus{
	border-color: #999;
	background-color:#CCC;
}