html, body {
	width: 100%;
	height: 100%;
	margin: 0px;
}

body {
	background-color: #000;
}

canvas {
	position:absolute;
	left:0px;
	top:0px;
	z-index:-1;
}

#chat {
	position:absolute;
	bottom:-260px;
	left:0;
	width: 480px;
	height: 200px;
	background-color: rgba(0, 0, 255, 0.5);
	border:1px solid yellow;
	margin-left:12px;
}

#chatBar {
	position: absolute;
	top:167px;
	width: 100%;
	height:28px;
}

#chatBox {
	width: 98%;
	height:20px;
	margin: 0 3px;
}
	#chatBox:focus {
		border: 3px solid #0af;
	}
	
#chatHist {
	height:140px;
	border:1px solid yellow;
	color: white;
	overflow-x: hidden;
	overflow-y: scroll;
	text-wrap: break-word;
	margin: 0;
	padding-left: 4px;
}

#chatTitle {
	color:yellow;
	background-color: rgba(0, 0, 255, 0.5);
	text-align:center;
}

#gameCanvas {
	position:absolute;
	top:0;
	left:0;
}

#gameContainer {
	 position:relative;
}