.chat-box {
  font:normal normal 11px/1.4 Tahoma,Verdana,Sans-Serif;
  color:#333;
  width:350px; /* Chatbox width */
  border:1px solid #344150;
  border-bottom:none;
  background-color:white;
  position:fixed;
  right:10px;
  bottom:0;
  z-index:9999;
  -webkit-box-shadow:1px 1px 5px rgba(0,0,0,.2);
  -moz-box-shadow:1px 1px 5px rgba(0,0,0,.2);
  box-shadow:1px 1px 5px rgba(0,0,0,.2);
  border-radius: 5px 5px 0 0;
}

.chat-box > input[type="checkbox"] {
  display:block;
  margin:0 0;
  padding:0 0;
  position:absolute;
  top:0;
  right:0;
  left:0;
  width:100%;
  height:26px;
  z-index:4;
  cursor:pointer;
  opacity:0;
  filter:alpha(opacity=0);
}

.chat-box > label {
    background-color:green;
    color: #ffffff;
    display: block;
    font-size: 15px;
    font-weight: bold;
    height: 40px;
    line-height: 41px;
    padding: 4px 1em 5px;
}

.chat-box > label:before {content:attr(data-collapsed)}

.chat-box .chat-box-content {
  padding:10px;
  display:none;
}

/* hover state */
.chat-box > input[type="checkbox"]:hover + label {background-color:#404D5A}

/* checked state */
.chat-box > input[type="checkbox"]:checked + label {background-color:#212A35}
.chat-box > input[type="checkbox"]:checked + label:before {content:attr(data-expanded)}
.chat-box > input[type="checkbox"]:checked ~ .chat-box-content {display:block}


input.inMen {
    border: 1px solid #cccccc;
    font-size: 15px;
    margin-left: 10px;
    outline: medium none;
    padding: 10px;
    width: 100%;
}

#chat-box > label > img {
    float: right;
}

#chat-box > label > img {
    float: right;
}

a.chatbotlink {
    background: #1773c6  none repeat scroll 0 0;
    border-radius: 11px;
    color: #ffffff;
    float: right;
    font-size: 13px;
    font-weight: bold;
    margin: 1px 8px 0 0;
    padding: 10px;
    width: 230px;
}

a.chatbotlink:hover {
    background: #888 none repeat scroll 0 0;
    border-radius: 11px;
    color: #ffffff;
    float: right;
    font-size: 13px;
    font-weight: bold;
    margin: 1px 8px 0 0;
    padding: 10px;
    width: 230px;
}

.chatbotlink > img {
    float: right;
    margin: -36px 0 0;
}
