  .chatbox{
  position:fixed;
  right:0;
  bottom:0;
  background-color:#fff;
  z-index:9999;
}
.chatbox_title{
  background-color: #4096EE;
  color:white;
  text-align:center;
  width:300px;
  padding:5px;
}
.right{
  text-align:right;
  font-weight:bolder;
  color:black;
}
.fright{
  float:right;
  margin-right:10px;
}
.chatbox_content{
  background-color:white;
  padding:10px;
  color:#aaa;
  width:300px;
}
.chatbox_messages{
min-height: 200px;
height:200px;
overflow-y:scroll;
}
.chatbox_message{
border-radius:5px;
padding:10px;
border:1px solid #eee;
}
.chatbox_input{
  width:55%;
  padding:5px;
  border:1px solid silver;
  border-radius:2px;
}
.chatbox_button{
background-color: #4096EE;
  padding:5px;
  border:1px solid white;
  color:white;
  font-weight: bolder;
  width:30%;
}
