html, body {
	margin: 0;
	padding: 0;
	background: #7dd3e8 url(../images/sky.png) repeat-x center top;
	width:100%;
	height: 100%;
	overflow: hidden;
}

#Container {
	width: 100%;
	height: 100%;
	background: transparent url(../images/bg.png) repeat-x center bottom;
}

#Content {
	position: absolute;
	z-index: 0;
	bottom: 110px;
	height: 270px;
	width: 650px;
	left: 80px;
}

h1#Header {
	position: absolute;
	top: 20px;
	left: 80px;
}

#Overlay {
	position: absolute;
	bottom: 0px;
	height: 105px;
	width: 100%;
	background: #fff;
	z-index: 2;
	box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.3);
}

#OverlayContent {
	margin: 20px 80px 0 80px;
}

#Game {
	position: absolute;
	display: none;
	top: 30px;
}

#Intro {
	float: left;	
}

#PlayButton {
	/* float: right;
	position: relative;*/
	position: absolute;
	left: 730px;
	top: 32px;
	display: none;
}

#CloseButton {
	position: absolute !important;
	left: 730px;
	top: -1em;
	display: none;
	z-index: 20 !important;
}

#Game {
	border: 4px solid #ff9600;
	border-radius:4px 4px 4px 4px;
	box-sizing: border-box;
	width: 800px;
	height: 500px;
	position: relative;
}

#GameContent, #Preloader {
	width: 100%;
	height: 100%;
}

#Preloader {
	background:#000 url(../images/loader.gif) no-repeat center center;
	position: absolute;
	top: 0;
	left: 0;
}

a.Button {
	outline: none;
	display: block;
	width: 150px;
	text-align: center;
	line-height: 2em;
	height: 2em;
	vertical-align: middle;
	
	color: #fff !important;
	text-decoration: none;
	background: #ff9600;

	border-radius:5px 5px 5px 5px;
	box-shadow: 3px 3px 0 #666;
	
	-moz-border-radius:5px 5px 5px 5px;
	-moz-box-shadow: 3px 3px 0 #666;
	
	-webkit-border-radius:5px 5px 5px 5px;
	-webkit-box-shadow: 3px 3px 0 #666;
}

a.Button:hover {
	margin: 3px 0 0 3px;
	border-width: 0;
	box-shadow: 0px 0px 0 #666;
	-moz-box-shadow: 0px 0px 0 #666;
	-webkit-box-shadow: 0px 0px 0 #666;
}

a.ButtonPlay, a.ButtonClose {
	background-image: url(../images/btnPlay.png);
	background-repeat: no-repeat;
	background-position: center center;	
}

a.ButtonClose {
	background-image: url(../images/btnClose.png);
}

a.ButtonPlay span, a.ButtonClose span {
	visibility: hidden;
}