/* CSS Document */

html, body{
        height: 100%;
	background-color:#000;
	padding: 0;
	margin: 0;
        overflow:hidden;

}
#frame {
	position:absolute;
	z-index:1;
	width:100%;
	height:100%;

}
#bg {
	position:absolute;
	z-index:2;
	width:100%;
	height:100%;
        overflow:hidden;
}

#image {	
	position:absolute;
	z-index:3;
        width: auto;
	height: 100%;
        right:35%;
        
}

#menu_image {
	position:absolute;
	z-index:4;
	top:5%;
	left:65%;
	width: auto;
	height: 90%;
}

#menu {
	position:absolute;
	z-index:5;
	top:5%;
	left:65%;
	width: auto;
	height: 90%;
}
.spacer {
	width:auto;
	height:9%;
}
.spacer2 {
	width:auto;
	height:9%;
	transition: background-image 0.3s ease-in-out;
	background-image:url(Images/spacer.png);
	background-size: cover

}
.spacer2:hover {
	width:auto;
	height:9%;
	transition: background-image 0.3s ease-in-out;
	background-image:url(Images/spacer-over.png);
	cursor:pointer;
}	