/* pichat.css */
html, body {
padding: 1em;
}
#content, #chatbox {
position: relative;
}
#messagePane {
border: 1px solid green;
height: 80%;
padding: 5px;
position: fixed;
width: 80%;
}
#messageList {
height: 100%;
width: 100%;
position:inherit
overflow-y: auto;
overflow-x: hidden;
border-bottom: 1px solid grey;
}
#msgInputDiv {
height: 15px;
position:relative;
}
#msgInput {
width: 85%;
margin-right: 5px;
margin-top: 15px;
position:relative;
}
#msgSubmit {
width: 14%;
position:relative;
}
.msgDiv {
width: 100%;
max-width:650px;
width: expression(this.width > 650 ? 650: true);max-height:400px;
height: expression(this.width > 400 ? 400: true);}
#userList {
overflow: auto;
border: 1px solid blue;
height: 80%;
margin: 0px;
position: fixed;
padding: 5px;
width: 10%;
right: 3%;
}