body {
text-align:center;
padding:0;
margin:0;
}


#header {
/*
position:absolute;
top:0;
*/
color:white;
background-color:black;
}


#container {
width:600px;
margin-left:auto;
margin-right:auto;

}

div#chat-window {
width:600px;
margin-left:auto;
margin-right:auto;

height:400px;

text-align:left;
background-color:#ccc;
overflow: auto;

}


textarea#outbox {
position:bottom;
bottom:0;
width:600px;
left:25%;
}

#send-button {
position:absolute;
bottom:0;
right:0;
display:none;
}


.in_msg, .out_msg {
width:100%;
display:block;
}

.in_msg {
background-color:#ddd;
}

.out_msg {
background-color:#eee;
}

.timestamp {
display:none;
}

#logged-in-username {

}

.online, .away, .offline {
font-weight:bold;
}

.online:hover, .away:hover, .offline:hover {
cursor:pointer;
}


.online {
color: #0f0;
}

.away {
color: orange;
}

.offline {
color: #f00;
}


.bold {
font-weight:bold;
}

.italic {
font-style:italic;
}

.strikethrough {
text-decoration:line-through;
}

.underline {
text-decoration:underline;
}

.highlight {
background-color:$ff0;
}