
.status.on.status_window,
.status.off.status_window {
	margin-right: 10px;
	position: relative;
	top: 19px;
	float: right;
}

.send_message textarea {
	border: 1px solid #999;
}

.status{
	position:relative;
	float:left;
	top:25%;
	width:12px;
	height:12px;
	margin-top:-15px;
	background:#666;
	border-radius:50%;
}
.status.off{background:#ccc;}
.status.on{background:#090;}

.imgSmall{
	float:left;
	width:44px;
	height:44px;
	overflow:hidden;
}
.imgSmall img{width:100%;}

/**Aside dos chats **/
#chats{
	position:absolute;
	bottom:0;
	left:0;
	width:82%;
	z-index: 99999;
}

/**JANELAS**/
.window{
	float:left;
	width:270px;
	margin-left:5px;
	height:auto;
	overflow:hidden;
	border-radius:4px;
}

.window .header_window{
	float:left;
	background:#5e5e62;
	padding:5px;
	width:270px;
	position:relative;
	cursor:pointer;
}
.window .header_window .close{
	text-decoration:none;
	float:left;
	color:white;
	font:16px Tahoma, arial;
	padding:0 10px 0 0;
}
.window .header_window .name{
	float:left;
	font:16px tahoma, arial;
	color:white;
}

.window .body{
	float:left;
	width:100%;
}

.window .body .mensagens{
	float:left;
	width:100%;
	background:#ebebeb;
	border-left:1px solid #999;
	border-right:1px solid #999;
	height:230px;
	overflow-y:auto;
	overflow-x:hidden;
	padding:4px;
}
.mensagens ul {
	float: left;
	list-style-type: none;
	width: 100%;
}
.mensagens ul li{
	float:right;
	width:81%;
	background:#f68725;
	border:1px solid #999;
	border-radius:4px;
	position:relative;
	padding:4px;
	margin-bottom:9px;
	margin-top: 13px;
}
.mensagens ul li .imgSmall {
	left: -50px;
	margin-bottom: 10px;
	margin-top: -4px;
	position: absolute;
}
.mensagens ul li p {
	color: #fff;
	font: 13px tahoma,arial;
	word-wrap: break-word;
}
.mensagens ul li.eu{float:left; background:#98989c;margin-left:0px;}
.mensagens::-webkit-scrollbar{width:3px;}
.mensagens::-webkit-scrollbar-track{background-color:#666; border-left:1px solid #ebebeb; border-right:1px solid #ebebeb;}
.mensagens::-webkit-scrollbar-thumb{background-color:#666;}
.mensagens::-webkit-scrollbar-thumb:hover{background-color:#069;}

.window .body .send_message{
	float:left;
	width:100%;
	position:relative;
}
.window .body .send_message input{
	float:left;
	width:100%;
	padding:3px;
	background:white;
	border:1px solid #999;
	outline:none;
}

