.chatPane {
	position:absolute;
	top: 0px;
	bottom: 20px;
	left:0px;
	right: 150px;
	overflow:auto;
	
	background-color:rgb(36,36,36); color:rgb(228,228,0);
}

.chatUserPane {
	position:absolute;
	bottom: 20px;
	top: 0px;
	width:150px;
	right: 0px;
	overflow: auto;
	background-color:rgb(10,10,10);
	color:rgb(192,192,0);
	border-left: 1px solid black;
}

.chatInputPane {
	position:absolute;
	bottom: 0px;
	height: 20px;
	left:0px;
	right: 0px;
	background-color:black;color:yellow;
}

.chatInputPane > input{
	border:none;
	border-top: 1px solid black;
	width: 100%;
	font-size:inherit;
	color:inherit;
	background-color:inherit;
}

.chatError {
	font-weight: bold;
	color:rgb(224,0,0);
}

.chatSysMsg {
	color:rgb(224,224,224);
}

.chatAction {
	color:rgb(224,128,0);
}

.chatOp {
	color: red;
}

.chatHalfOp {
	color: orange;
}

.chatVoiced {
	color: blue;
}

.chatNormal {
	color: white;
}