body {
    font-family: Arial, sans-serif;
}
form {
    display: flex;
}
form input {
    flex: 1;
    margin: 2px;
    border: 1px solid #999;
}
form button {
    margin-left: 8px;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    margin: 4px 0;
}
#map { 
  height: 600px;
  width: 800px;
  border: 1px solid #999;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
div.bordered {
    margin: 0 auto;
    margin-top: 20px;
    width: 400px;
    padding: 20px;
    text-align: center;
    border: 5px solid #ddd;
    -webkit-border-radius: 5px;
}
#error {
    background-color: #BA0000;
    color: #fff;
    font-weight: bold;
}
#ask {
    font-size: 14pt;
}
#ask input {
    font-size: 14pt;
    padding: 4px;
    margin: 2px 4px;
}
#ask span.join {
    padding: 3px;
    background-color: #ddd;
    -webkit-border-radius: 3px;
}
#channel {
    margin-top: 0px;
    /* height: 480px; */
    height: 560px;
    position: relative;
}
#channel div#descr {
    position: absolute;
    left: -10px;
    top: -190px;
    font-size: 11px;
    text-align: left;
    line-height: 20px;
    padding: 5px;
    width: 630px;
}
div#msgs {
    overflow-y: scroll;
    height: 500px;
    font-family: monospace, monospace;
}
div#msgs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
div#msgs li {
    line-height: 20px;
    font-family: monospace, monospace;
}
div#msgs li span.user {
    color: #ff9900;
}
div#msgs li span.user.self {
    color: #aa2211;
}
div#msgs li span.time {
    float: right;
    margin-right: 5px;
    color: #aaa;
    /* font-family: "Courier New"; */
    font-size: 8px;
}
div#msgs li.control {
    text-align: center;
}
div#msgs li.control span.message {
    color: #aaa;
}
div#input {
    text-align: left;
    margin-top: 10px;
}
div#input #message {
    width: 400px;
    border: 2px solid #bbb;
    -webkit-border-radius: 2px;
    font-size: 12pt;
}