/* style sheets */
.ui-chatboxes-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 0;
}
.ui-chatbox {
    position: absolute;
    bottom: 0;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.7) !important;
}

.ui-chatbox-titlebar {
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 300;
}
.ui-chatbox-titlebar a {
    /* color: #333; */
    margin-left: 10px;
}

.ui-chatbox-content {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

.ui-chatbox-log {
    padding: 0px 10px;
    height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #FFFFFF;
    border: none;
}

.ui-chatbox-input {
    padding: 3px;
    border: none;
    border-top: 1px solid #c0c0c0;
    overflow: hidden;
}

.ui-chatbox-input-box {
    margin: 5px;
    border: 2px solid lightgrey;/* #6699FF */
    padding: 2px;
    height: 50px;
    outline:none;
}

.ui-chatbox-icon {
    float: right;
}

.ui-chatbox-input-focus {
    border-color: #6699FF;
}

.ui-chatbox-msg {
    margin-top: 10px;
    float: left;
    clear: both;
    /* Source: http://snipplr.com/view/10979/css-cross-browser-word-wrap */
    white-space: pre-wrap;      /* CSS3 */
    white-space: -moz-pre-wrap; /* Firefox */
    white-space: -pre-wrap;     /* Opera <7 */
    white-space: -o-pre-wrap;   /* Opera 7 */
    word-wrap: break-word;      /* IE */
    width: 80%;
    background-color: #a3a0fb;
    padding: 5px 10px;
    font-size: 12px;
}
.ui-chatbox-msg.own {
    float: right;
    background-color: #f0f0f0;
}
.ui-chatbox-msg.system {
    width: 100%;
    background-color: transparent;
}
.ui-chatbox-time {
    display: block;
    font-size: 10px;
    text-align: right;
}