body {
	overflow: hidden;
}

#game-area-wrapper {
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
	background-color: yellow;
}

/* GAME AREA LEFT */
#game-area-left {
	position: relative;
	float: left;
	width: 300px;
	height: 100%;
	background-color: green;
}

#date-and-clock-box {
	height: 100px;
	width: 300px;
}
#date-box-left {
	float: left;
	width: 100px;
	height: 100px;
	background: orange;
}
#date-box-right {
	float: left;
	height: 100px;
	width: 200px;
	background: blue;
}
#date-box-year {
	height: 65px;
	width: 100px;

}
.year-digit {
	width: 23px;
	height: 63px;
	float: left;
	border: 1px solid black;
	font-size: 2.5em;
	text-align: center;
	line-height: 63px;
}
#game-clock-buttons-holder {
	width: 100px;
	height: 25px;
	background: yellow;
	margin: 10px 0 0 0;
}
.button-clock {
	height: 23px;
	width: 23px;
	line-height: 25px;
	text-align: center;
	float: left;
	cursor: pointer;
	border: 1px solid black;
}
.button-clock:hover {
	background-color: blue;
	color: white;
}
#date-box-date {
	width: 200px;
}
#date-box-month {
	width: 138px;
	height: 34px;
	background: yellow;
	float: left;
	line-height: 34px;
	border: 1px solid black;
	text-align: center;
	font-size: 1.4em;
	margin: 5px;
}
#date-day-digit-one, #date-day-digit-two {
	height: 34px;
	width: 18px;
	border: 1px solid black;
	float: left;
	background: yellow;
	line-height: 34px;
	text-align: center;
	margin: 5px 1px 0 0;
}

#date-box-countdown {
	font-size: 1.3em;
	text-align: left;
	width: 185px;
	padding: 10px 0 0 15px;
}

#vault-name {
	position: relative;
	height: 36px;
	width: 300px;
	line-height: 36px;
	text-align: center;
	font-size: 1.5em;
}

#main-buttons-holder {
	position: relative;
	width: 290px;
	height: 400px;
	background: orange;
	padding: 10px 5px 10px 5px;
}
.button-main {
	width: 70px;
	height: 70px;
	float: left;
	background: white;
	margin: 0 0 20px 20px;
	cursor: pointer;
	line-height: 70px;
	text-align: center;
}
.button-main-active {
	background: blue;
	color: white;
}

/* GAME AREA RIGHT */
#game-area-right {
	position: relative;
	float: left;
	width: 800px;
	height: 800px;
	background-color: blue;

}
#top-bar {
	width: 100%;
	height: 36px;
	background: red;
}

/* MAP */
#game-map-holder-wrapper {
	overflow: auto;
}

.map-grid {
	position: absolute;
	height: 2048px;
	width: 2048px;
	left: 0px;
	top: 0px;
	cursor: default;
}

#game-map-holder { 
	position: relative;
	z-index: 0; 
	background-color: black;
	width: 2048px;
	height: 2048px;
}
.game-map-solid-grid{ z-index: 1;}
.game-map-ground-grid{ z-index: 2;}
.game-map-ground-marking-grid { z-index: 3;}
.game-map-ground-item-grid { z-index: 4;}
.game-map-unit-grid{ z-index: 5;}

#game-map-marking-grid{ z-index: 6;}
#game-map-structure-grid { z-index: 7; }

#marking-cell {
	position: absolute;
	left: 0px;
	top: 0px;
	border: 1px solid yellow;
}

#coordinates {
	height: 25px;
	width: 250px;
	background: white;
	position: fixed;
	top: 0px;
	right: 0px;
	z-index:5000;
}


/* OVERLAYS */
#left-menu-options {
	width: 300px;
	position: fixed;
	left: 300px;
	top: 36px;

	z-index: 5000;
}
#left-menu-options-headline {
	width: 100%;
	height: 36px;
	line-height: 36px;
	background: grey;
}
#left-menu-options-headline-text {
	height: 36px;
	width: 300px;
	line-height: 36px;
	text-align: center;
	float: right;
	cursor: pointer;
}
#left-menu-options-headline-close-icon {
	position: absolute;
	right: 0px;
	height: 36px;
	width: 36px;
	line-height: 36px;
	text-align: center;
	cursor: pointer;
}
#left-menu-options-headline-close-icon:hover {
	background: white;
	color: #606060;
}
#left-menu-options-list {
	width: 100%;
	height: 400px;
	background: white;
}
.button-left-menu-option {
	width: 65px;
	height: 65px;
	float: left;
	margin: 5px;
	background: yellow;
	cursor: pointer;
	text-align:center;
}


/* UTILITIES */
.hidden {
	display: none;
}

/* TEMP */
#location-box {
	height: 36px;
	width: 100px;
	float: right;
	color: white;
}