html, body {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
    padding:0;
	height: 100%;
	width: 100%;
	font-family: sans-serif, 'Helvetica';
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 1px;
    overflow: hidden;
    background: #002FA7;
	-webkit-user-select: none;
	text-rendering: optimizeLegibility;
	font-smooth: always;
    cursor: default;
}
#world {
    z-index: 3;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	height: 100%;
	width: 100%;
    /*cursor: none;*/
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	-ms-perspective: 1000px;
	-o-perspective: 1000px;
    perspective: 1000px;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
#spaceCanvas {
    z-index:1;
	position: absolute;
	top:0;
    right: 0;
	bottom:0;
	left: 0;
	margin: auto;
}
#controlKeyboard {
    z-index:4;
    position: fixed;
	right: 0;
	bottom: 30px;
	left: 0;
	margin: auto;
	width: 320px;
    height: 20px;
    text-align: center;
}
#player {
	z-index:4;
	position: absolute;
	width: 320px;
	height: 75px;
	top: 40px;
	left: 40px;
	-webkit-transition: height 0.2s ease-in-out;
	-moz-transition: height 0.2s ease-in-out;
	-ms-transition: height 0.2s ease-in-out;
	-o-transition: height 0.2s ease-in-out;
	transition: height 0.2s ease-in-out;
}
#playlist {
	z-index:4;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 40px;
	margin-bottom: 5px;
	-webkit-transition: height 0.2s ease-in-out;
	-moz-transition: height 0.2s ease-in-out;
	-ms-transition: height 0.2s ease-in-out;
	-o-transition: height 0.2s ease-in-out;
	transition: height 0.2s ease-in-out;
}
.track {
	position: relative;
	display: block;
	width: 85%;
	height: 40px;
	line-height: 40px;
	padding: 0 7.5%;
	font-size: 10px;
	text-align: left;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.track:hover {
	background: rgba(255, 255, 255, 0.15);
}
.title {
	position: absolute;
	line-height: 12px;
}
.title span {
	opacity: 0.5;
}
#control {
	position: absolute;
	margin: auto;
	height: 20px;
	width: 100%;
}
.button {
	position: relative;
	float: left;
	height: 20px;
	margin-right: 5px;
    color: rgba(255,255,255,0.6);
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.button:last-child {
    margin-right: 0;
}
.volume:hover,
#progress:hover {
    background: rgba(255, 255, 255, 0.15);
}
.volume {
	width: 70px;
    line-height: 20px;
    text-align: center;
    background:rgba(255,255,255,0.1);
}
.volume .containerHandle {
    position: absolute;
    top:0;right:0;bottom:0;left:0;
    margin:0;
    width:100%;
    z-index: 20;
}
.volume span {
    z-index: 10;
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.volume:hover span{
    opacity:0;
}
.handle {
    position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 1px;
	height: 100%;
    background: rgba(255,255,255, 0.6);
}
.volume .handle {
    opacity:0;
    left: 50%;
    -webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
.volume:hover .handle{
    opacity:0.6;
}
#playPause {
    width:30px;
    background:rgba(255,255,255,0.1);
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#playPause:hover {
    background: rgba(255, 255, 255, 0.15);
}
#playPause svg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 30px;
	fill: none;
	stroke-width: 1px;
	stroke: white;
	backface-visibility: hidden;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#progress {
	width: 210px;
    background:rgba(255,255,255,0.1);
}
#time {
	position: relative;
	height: 100%;
	width: 20px;
	right: 0;
	left: 0;
	margin: auto;
	line-height: 20px;
	letter-spacing: 1px;
	font-size: 10px;
	text-align: center;
}
#octaveContainer,
#instrumentsContainer {
    width:120px;
}
#octaveContainer span{
    position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
    width:100%;
    height: 100%;
    line-height: 20px;
    background: rgba(255,255,255,0.1);
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#octaveContainer:hover span{
    opacity:0;
}
.octave {
    position: relative;
    float:left;
    width: 40px;
    height: 100%;
    line-height: 20px;
    opacity: 0;
    background: rgba(255,255,255,0.1);
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#octaveContainer:hover .octave{
    opacity:1;
}
.octave:hover{
    background: rgba(255, 255, 255, 0.15);
}
#instrumentsOverflow {
    position: absolute;
    bottom:0;
	margin: auto;
    width:120px;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
/*#instrumentsOverflow:hover{
    height:400%;
}*/
#instruments {
    position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
    width:100%;
    height: 80px;
}
.instrument {
    width:100%;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: rgba(255,255,255,0.1);
}
.instrument:hover {
    background: rgba(255, 255, 255, 0.15);
}
#uploadInput {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}
#uploadInfo {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 120px;
	height: 35px;
	line-height: 14px;
	color: rgba(255,255,255,0.8);
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
#uploadInfo {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 120px;
	height: 35px;
	line-height: 14px;
	color: white;
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
#progressBar {
    position: absolute;
    margin-top: 6px;
    height:1px;
    width:100%;
    background: rgba(255,255,255,0.2);
    opacity: 0;
}
#progressBar span {
    position: absolute;
    top:0;bottom:0;left:0;
    margin: auto;
    height:100%;
    width:0%;
    background: white;
}