body {
overflow: hidden;
	font-family: Tahoma;
	font-size: 14px;
}

#container {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

canvas {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(43, 146, 206, 0.23);
}

#ui {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	pointer-events: none;
}

#ui > div {
	    pointer-events: auto;
}

#adminPanel {
	display: inline-block;
	position: absolute;
	height: 40px;
	width: 120px;
    left: 28px;
    top: 20px;
}

#playerList {
	position: absolute;
	display: inline-block;
	top: 60px;
	left: 10px;
	width: 120px;
	height: 200px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	background-color: rgba(255, 255, 255, 0.38);
}

#playerListItem {
	position: relative;
	display: block;
	width: 100%;
	height: 18px;
}

#restart {
	border: 1px solid #333;
	height: 19px;
	width: 66px;
	text-align: center;
	background-color: #51c1ff;
	border-radius: 2px;
	cursor: default;
}

#restart:hover {
	background-color: #91d1ff;
}

#status {
    position: absolute;
    width: 600px;
    height: 125px;
    bottom: 0px;
    overflow-y: auto;
    text-align: left;
    padding: 4px;
    border: 1px solid rgba(0, 0, 0, 0.5);
	background-color: rgba(255, 255, 255, 0.38);
}