<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    font-family: Verdana, sans-serif;
    background-color: #EEEEEE;
}

#chatbox {
    width: calc(100% - 40px);
    height: calc(100% - 150px);
    top: 50px;
    left: 20px;
    position: fixed;
    overflow: auto;
    margin-top: 20px;
}

#chatbox-overlay {
    width: calc(100% - 40px);
    height: calc(15% - 100px);
    top: 50px;
    left: 20px;
    position: fixed;
    overflow: auto;
    margin-top: 20px;
    background: linear-gradient(to top, transparent 0px, #EEEEEE);
}

#chatinput {
    display: block;
    position: fixed;
    width: calc(100% - 250px);
    border: 0px;
    bottom: 20px;
    left: 20px;
    box-shadow: 0px 0px 1px rgba(0,0,0,0.6);
    border-radius: 2px;
    padding: 10px;
    font-size: 15px;
}

#chatsend {
    padding: 10px;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    background-color: #FF5500;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 150px;
    border: 0px;
    font-size: 15px;
    border-radius: 2px;
    text-transform: uppercase;
}

.chatitem {
    display: block;
    margin-bottom: 15px;
    position: relative;
}

.chatuser {
    margin-bottom: 3px;
    font-weight: bold;
    font-size: 12px;
}

.chatline {
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 2px;
}

.chattime {
    right: 0px;
    top: 0px;
    position: absolute;
    font-size: 9px;
}

#userbox {
    height: 100%;
    width: 100%;
    background-color: #FFFFFF;
    position: absolute;
    z-index: 100;
}

#chatname {
    padding: 15px;
    border: 1px solid #DDDDDD;
    font-size: 20px;
    border-radius: 2px;
    margin: 100px auto 0px;
    display: block;
    text-align: center;
}

#chatgroup {
    padding: 15px;
    border: 1px solid #DDDDDD;
    font-size: 20px;
    border-radius: 2px;
    margin: 10px auto 0px;
    display: block;
    text-align: center;
}

#closeuserbox {
    padding: 10px;
    font-size: 15px;
    margin: 10px auto;
    background-color: #FF5500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    width: 180px;
    border-radius: 2px;
    cursor: pointer;
}

#toolbox {
    height: 50px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
}

#currentchannel {
    float: left;
    padding: 21px 15px;
    margin-left: 20px;
}

#changechannel {
    cursor: pointer;
    border: 2px solid #555555;
    border-radius: 3px;
    padding: 9px;
    margin-left: 10px;
}</pre></body></html>