﻿#chatWindow {
    background-color: white;
    padding: 0;
    /*border: 1px solid silver;*/
    margin-bottom: 15px;
    max-width: 500px;
}

    #chatWindow .chatTitle {
        padding: 0 10px;
        text-transform: uppercase;
        text-align: center;
        background-color: #f0f0f0;
    }

#chat {
    max-height: 400px;
    height: 400px;
    overflow: auto;
    padding: 10px 0 0 0;
}

    #chat .item {
        font-size: 12px;
        padding: 4px 24px;
    }

        #chat .item span {
            color: darkgray;
            margin-right: 8px;
        }

#chatSaySomething {
    position: absolute;
    padding: 2px;
    line-height: 17px;
}

#chatAddMessage {
    font-size: 12px;
    padding: 4px 24px;
    background-color: #f0f0f0;
}


#chatAddMessageInner {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 2px solid white;
}

#chatCharCounter.over {
    color: red;
}

[contenteditable]:focus {
    outline: 0px solid transparent;
}