/* CHAT */
.chatDiv {
	position: fixed;
	z-index: 2;
	bottom: 0;
	right: 0;
	width: 186px;
	border: 2px solid blue;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-radius-topleft: 5px;
	-webkit-border-radius-topright: 5px;
	border-radius-topleft: 5px;
	border-radius-topright: 5px;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 13px;
}
.chatCabecalho {
	height: 20px;
	background-color: blue;
	color: white;
	font-weight: bold;
}
.chatCabecalhoTit {
	float: left;
}
.chatCabecalhoBt {
	height: 18px;
	width: 18px;
	background-color: transparent;
	float: right;
	margin-left: 2px;
	cursor: pointer;
}
.chatCabecalhoBt:hover {
	background-color: #4F4FFF;
}
.chatCabecalhoMin {
	background-image: url(../imgs/chat_min.png);
}
.chatCabecalhoMax {
	background-image: url(../imgs/chat_max.png);
}
.chatCabecalhoFechar {
	background-image: url(../imgs/chat_fechar.png);
}
.chatMsg {
	height: 180px;
	background-color: white;
	color: #000;
	overflow: auto;
	padding: 5px;
}
.chatTexto {
	padding: 3px;
	background-color: #DDD;
}
.chatTexto input {
	width: 176px;
}
