p.txtMsg {
	position: absolute;
	top: 200px;
	left: 300px;
	color: white;
	font-size: 40px;
	font-family: 'Cinzel Decorative', cursive;
	z-index: 2;
}
p.txtBtn {
	position: absolute;
	top: 350px;
	left: 450px;
	cursor: pointer;
	color: white;
	font-size: 30px;
	font-family: 'Cinzel Decorative', cursive;
	z-index: 2;
}
/*Assemble the map*/
ul#mapSpace {
	position: absolute;
	width: 750px;
	height: 272px;
	z-index: 4;
	top: 100px;
	left: 100px;
	list-style-type: none;
}

ul#mapSpace li {
	z-index: 3;
	
	float: left;
	cursor: pointer;
}

#fullMap {
	position: absolute;
	width: 745px;
	height: 272px;
	z-index: 5;
	top: 50px;
	left: 80px;
}

/*Decision making*/
#leftB {
	top: 300px;
	left: 200px;
	width: 200px;
}
#rightB {
	top: 300px;
	left: 600px;
	width: 200px;
}

/* Combat */
#katana {
	position: absolute;
	top: 600px;
	height: auto;
	width: 150px;
	z-index: 3;
	overflow: hidden;
}
.slash {
	position: absolute;
	top: 60px;
	left: 10px;
	height: auto;
	z-index: 3;
}
.bullet {
	position: absolute;
	top: 60px;
	left: 10px;
	height: auto;
	width: 50px;
	z-index: 3;
}
#lifeBar {
	position: absolute;
	top: 720px;
	height: 5px;
	width: 1000px;
	background-color: red;
}
#lifeTxt {
	position: absolute;
	top:10px;
	left:10px;
	font-size: 20px;
	color: white;
	font-family: 'Belgrano', serif;
	z-index: 3;
}


/* Wall Climbing */
#wallContainer {
	background-image: url(Images/Backgrounds/background-wall.png);
	background-repeat: repeat-y;
	width: 1000px;
	height: 7200px;
	position: absolute;
	top: -5600px;
	z-index: 2;
}

img#wall {
 
}

.hand {
	width: 50px;
	height: auto;
	position: absolute;
	top: 6000px;
	z-index: 999;
}
#left {
	left: 300px;
}
#right {
	left: 600px;
	transform: scaleX(-1);
}
#fallCol {
	/* Place fixed box at the bot of screen */
	position: absolute;
	width: 1000px;
	height: 5px;
	top: 6320px;
	background-color: red;
	z-index: 4;
}