body {
	min-width: 700px;
	min-height: 600px;
	background-color: #3b2f2e;
}

/*
 * MAIN
 */

#container {
	position: absolute;
	top: 0px;
	left: 0px;
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
}
#container #canvas {
	position: absolute;
	width: 900px;
	height: 500px;
	margin-top: -280px;
	margin-left: -450px;
	left: 50%;
	top: 50%;
	border: 5px solid #1a1b1f;
	border-radius: 0px;
	background-color: #1a1b1f;
}

#container #canvas #scene{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	overflow: hidden;
}

#scene .sceneLayer{
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 1;
}

#scene .sceneLayer #imgContainer{
	position: absolute;
	transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	top: 0px;
	left: 0px;
	opacity: 1;
}

#scene .sceneLayer img{
	width: 1500px;
	height: 500px;
	position: relative;
	float: left;
}

#bandName {
	position: absolute;
	width: 222px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-top: -320px;
	margin-left: 238px;
	text-align: left;
	color: #cfca79;
	font-family: sans-serif;
	font-size: 30px;
	z-index: 100000;
	font-style: italic;
}

#songTitle {
	position: absolute;
	width: 400px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-top: -341px;
	margin-left: -444px;
	color: #cfca79;
	z-index: 100000;
}
/*
 * INSTRUCTIONS/CREDITS
 */
#instructions {
	margin-left: -270px;
}
#credits {
	margin-left: 200px;
}

#credits .title{
	position: absolute;
	width: 35%;
	left: 0px;
	top: 0px;
	text-align: right;
}

#credits .names{
	position: absolute;
	width: 60%;
	left: 40%;
	top: 0px;
	text-align: left;
}

.infobutton{
	position: absolute;
	width: 250px;
	height: 50px;
	margin-top: 260px;
	left: 50%;
	top: 50%;
	color: #5d5452;
	font-family: sans-serif;
	font-size: 16px;
	border-radius: 0px;
	z-index: 100000;
}

.infobutton a {
	text-decoration: none;
	color: #887e7c;
}
.infobutton a:hover {
	color: white;
}

/*
 * SCENERY SELECTORS
 */
#scenerySelectorContainer {
	position: absolute;
	left: -100px;
	top: 0px;
	height: 100%;
	width: 80px;
}
.sceneSelector {
	position: absolute;
	width: 80px;
	height: 80px;
	left: 0px;
	overflow: hidden;
}
.sceneSelector #trackInstrumentIndicator {
	width: 80px;
	height: 80px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 100;
	background-color: #1a1b1f;
	border-radius: 0px;
}

.sceneSelector #trackTitle{
	width: 80px;
	height: 80px;
	margin: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1000;
	color: white;
	font-family: sans-serif;
	font-size: 18px;
	text-align: center;
}
.sceneSelector #sceneContainer {
	position: absolute;
	left: 80px;
	top: 0px;
	width: 480px;
	height: 80px;
}
.sceneSelector .sceneOption {
	margin: 2px;
	width: 66px;
	height: 66px;
	position: relative;
	float: left;
	cursor: pointer;
	border: 4px solid #1a1b1f;
}
.sceneSelector .selected {
	position: relative;
	width: 66px;
	height: 66px;
	border: 4px solid white;
	border-radius: 0px;
}

#sceneContainer .sceneOption:hover {
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
}

.sceneSelector #desert {
	background-image: url("./thumbs/thumb_desert.png");
}
.sceneSelector #cave {
	background-image: url("./thumbs/thumb_cave.png");
}
.sceneSelector #space {
	background-image: url("./thumbs/thumb_space.png");
}
.sceneSelector #waterfall {
	background-image: url("./thumbs/thumb_waterfall.png");
}
.sceneSelector #underwater {
	background-image: url("./thumbs/thumb_underwater.png");
}
.sceneSelector #mute {
	background-image: url("./thumbs/thumb_mute.png");
}

/*
 * ALL SELECTOR
 */

.allSelector {
	position: absolute;
	left : -100px;
	top: 505px;
	width: 80px;
	height: 80px;
	overflow: hidden;
}

.allSelector #trackInstrumentIndicator {
	width: 70px;
	height: 40px;
	position: absolute;
	top: 14px;
	left: 5px;
	z-index: 100;
	border-radius: 0px;
	background-color: #1a1b1f;
}

.allSelector #trackTitle{
	width: 80px;
	height: 64px;
	margin: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1000;
	color: white;
	font-family: sans-serif;
	font-size: 18px;
	text-align: center;
}
.allSelector #sceneContainer {
	position: absolute;
	left: 80px;
	top: 0px;
	width: 480px;
	height: 80px;
}
.allSelector .sceneOption {
	margin: 2px;
	width: 66px;
	height: 66px;
	position: relative;
	float: left;
	cursor: pointer;
	border: 4px solid #1a1b1f;
	overflow: hidden;
}

#sceneContainer .sceneOption:hover {
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
}

.allSelector #desert {
	background-image: url("./thumbs/thumb_desert.png");
}
.allSelector #cave {
	background-image: url("./thumbs/thumb_cave.png");
}
.allSelector #space {
	background-image: url("./thumbs/thumb_space.png");
}
.allSelector #waterfall {
	background-image: url("./thumbs/thumb_waterfall.png");
}
.allSelector #underwater {
	background-image: url("./thumbs/thumb_underwater.png");
}
.allSelector #mute {
	background-color: #1a1b1f;
	background-image: url("./thumbs/icon-shuffle.png");
}


/*
 * LOADING
 */
 #loadingScreen {
 	z-index: 10000;
 	width: 100%;
 	height: 100%;
	background-color: #3b2f2e;
 	position: absolute;
 	top: 0px;
 	left: 0px;
 	opacity: 1;
 }
 #loadingScreen #progressContainer {
 	position: absolute;
 	border: 5px solid #cfca79;
 	width: 500px;
 	height: 100px;
 	top: 50%;
 	left: 50%;
 	margin-left: -250px;
 	margin-top: -50px;
 }

 #loadingScreen #loadedArea {
 	position: absolute;
 	height: 100%;
 	width: 0%;
 	top: 0px;
 	left: 0px;
 	background-color: #cfca79;
 }

 #loadingScreen #playButton{
 	position: absolute;
 	top: 0px;
 	left: 0px;
 	width: 500px;
 	height: 100px;
 	background-color: #1a1b1f;
 	cursor: pointer;
 	opacity: 0;
 	z-index: -100;
 	border: 0px solid #cfca79;
 }

 #loadingScreen #playButton img{
 	position: absolute;
 	height: 55px;
 	width: 170px;
 	top: 50%;
 	left: 50%;
 	margin-left: -85px;
 	margin-top: -26px;
 	cursor: pointer;
 }

  #loadingScreen #playButton:hover{
  	top: -5px;
 	left: -5px;
 	/*background-color: #3b2f2e;*/
 	border: 5px solid #cfca79;
 }

 /*
 * CATCH PAGE
 */

 #catchPage {
 	width: 100%;
 	height: 100%;
 	left: 0px;
 	top: 0px;
 	position: absolute;
 	background-color: #1a1b1f;
 	z-index: -1000;
 	opacity: 0;
 }

 #catchPage #imsorry {
 	color: #cfca79;
 	width: 600px;
 	left: 50%;
 	top: 50%;
 	height: 400px;
 	margin-top: -200px;
 	margin-left: -300px;
 	font-family: sans-serif;
 	font-size: 40px;
 	text-align: center;
 	position: absolute;
 }

 #havingTrouble{
 	z-index: -1000;
 	bottom: 10px;
 	color: #cfca79;
 	width: 600px;
 	left: 50%;
 	margin-left: -300px;
 	font-family: sans-serif;
 	font-size: 14px;
 	text-align: center;
 	position: absolute;
 	opacity: 0;
 }

 #share {
 	width: 190px;
	position: absolute;
	right: 10px;
	bottom: 10px;
	height: 40px;
	z-index: 10000;
	overflow: hidden;
	/*background-color: #1a1b1f;*/
 }

 #share .fb-like{
 	margin-right: 10px;
 	overflow:hidden;
 	margin-top: 3px;
 }

 #share .twitter-share-button{
 	margin-top: 0px;
 }

#share #text{
	position: absolute;
	width: 80px;
	right: 0px;
	top: 5px;
	height: 100%;
	z-index: 10000;
	color: #cfca79;
	font-size: 24px;
	font-family: sans-serif;

}

#share #buttons{
	position: absolute;
	left: 13px;
	top: 6px;
	width: 200px;
	height: 100%;
}

/*
* BUFFERING
*/
#buffering{
	width: 100%;
	height: 100px;
	font-size: 74px;
	font-style: italic;
	font-family: sans-serif;
	z-index: 0;
	color: #cfca79;
	text-align: center;
	top: 50%;
	position: absolute;
}
