.chat{
  width:530px;
  overflow:hidden;
  border:1px solid black;
  background-color: #eee;
  border: 1px solid #E2E2E2;
  border-radius: 5px;
  box-shadow: 2px 3px 4px #BBBBBB;
  margin-top: 3px;
}
.chat .messages{
  width:100%;
  height:173px;
  overflow:hidden;
}
.chat .messages:hover{
  overflow-y:scroll;
}
.chat .messages > div{
  padding:6px;
  border-bottom:1px dashed #999;
  text-align: left;
  margin-top: -4px;
}
.pajaro{
  padding-left:0px;
  float: left;
  width: 130px;
}
.mensaje{
  padding-left:0px;
  float: right;
  width: 380px;
}
.header-chat{
	background-color: #00aced;
	color: white;
	padding: 3px;
	/* text-align: center; */
	/* text-shadow: 1px 1px 3px rgba(0,0,0,0.6); */
	height: 22px;
	display: flex;
	flex-flow: row nowrap; /* Align on the same line */
	/* justify-content: space-between; /* Equal margin between the child elements */
}
.contenido{
	background-color: white;
	border-radius: 5px;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
	display: inline-block;
	font-size: 15px;
	padding: 5px;
	vertical-align: top;
	width: 518px;
	margin-bottom: 3px;
	margin-left: -5px;
}