
@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Droid+Sans);
z-index:99999999999999;

header {
  width: 100%;
  font-size: 25px;
  text-align: center;
  color: #3b5998;
  opacity: 1;
  animation: header-fade-in 3s;
  -webkit-animation: header-fade-in 3s;
}

header h1 {
  text-shadow: 0 1px 1px #8C8C8C;
}

header p {
  font-size: 20px;
  color: grey;
  margin-top: -20px;
}

.change-mode li {
  display: inline-block;
}

@keyframes header-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes header-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
ul, li {
  list-style-type: none;
}

.msg-box {
  width: 600px;
  height: 40px;
  /* 300px open, 30px closed */
  position: fixed;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border: 1px solid lightgrey;
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
}

.msg-box-top {
  background: #3b5998;
  width: inherit;
  height: 40px;
  border-bottom: 1px solid #38487D;
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
}

.open-chat-target {
  width: 196px;
  height: 30px;
  float: left;
  cursor: pointer;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.titlebar {
  width: 100%;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
}

.top-lfloat {
  float: left;
  margin-top: 12px;
  margin-left: 10px;
}

.top-rfloat {
  float: right;
  margin-top: 12px;
  margin-right: 10px;
}

/* left icon set */
.usr-status {
  float: left;
  margin-top: 2px;
}

.usr-name {
  width: 200px;
  float: left;
  margin-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.isOnline {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  margin-left: 3px;
  background: url(https://copy.com/EifIHIS4WJQD0S9X) no-repeat 0 -329px;
}

.isOffline {
  display: none;
}

.isMobile {
  width: 8px;
  height: 12px;
  margin-top: 1px;
  margin-left: 3px;
  background: url(https://copy.com/EifIHIS4WJQD0S9X) no-repeat 0 -67px;
}

/* right icon set */
.r-icon-set {
  float: right;
  margin-right: 10px;
}

.r-icon-set {
  cursor: pointer;
}

.r-icon-set:first-child {
  margin-right: 0px;
}

.addChat {
  width: 15px;
  height: 13px;
  background: url(https://copy.com/EifIHIS4WJQD0S9X) no-repeat -152px -393px;
}

.videoChat {
  width: 15px;
  height: 12px;
  margin-top: 2px;
  background: url(https://copy.com/EifIHIS4WJQD0S9X) no-repeat -176px -394px;
}

.videoChat:active {
  opacity: 0;
}

.options {
  width: 10px;
  height: 10Px;
  margin-top: 1px;
  background: url(https://copy.com/EifIHIS4WJQD0S9X) no-repeat -63px -508px;
}

.close {
  display: none;
  width: 9px;
  height: 9px;
  margin-top: 1px;
  background: url(https://copy.com/EifIHIS4WJQD0S9X) no-repeat -143px -424px;
}

.chat-container {
  width: 100%;
  height: 500px;
  background: #FBFAFB;
  overflow-y: scroll;
}

.chat-input {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: none;
}

.chat-input textarea {
  width: 100%;
  height: 20px;
  min-height: 30px;
  padding: 10px 0 0 5px;
  overflow: auto;
  resize: none;
  border: 0;
  border-top: 1px solid lightgrey;
}

textarea:focus {
  outline: 0;
}

.chat-data {
  width: 100%;
  height: 100%;
  color: #000000;
  font-size: 14px;
  font-weight: 350;
  word-wrap: break-word;
}

.msg-out {
  width: auto;
  max-width: 300px;
  height: auto;
  padding: 8px 10px;
  margin: 16px 10px;
  float: right;
  background: #e2eefc;
  border-bottom: 1px solid rgba(169, 169, 169, 0.1);
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
