#Audio-Control select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width:85%;
    margin-right:10px;
    padding-left: 0.5em;
    color:#FF0;
    border: 0px solid #999;    
	background-color: rgba(0,0,0,0.2);
}
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

#bgmSelector option{
	color:green;
}
#Audio-Control {
    overflow: hidden;
}
 
#Audio-Control button {
    border: 1px solid #cc0;
	font-size:80%;
	font-weight:800;
    width: 40px;
    float: left;
    padding: 5px 0;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
 
#Audio-Control button.on {
    border-left: none;
}
 
#Audio-Control button.off {
    border-right: none;
}
 
#Audio-Control button.active {
    background: #cc0;
    	color: #22AA55;
}
 
#Audio-Control button:not(.active):hover {
    background: rgba(204, 204, 204, 0.3);
}