
div.bg
{ 
  width: 100%;
  height: 100%;
  background-color: #8b4128;
  padding-top: 8px;
  padding-bottom: 8px;
  }


div.chat
{   
  width: 600px;
  height: 700px;
  margin: auto;
  background-color: #ffffff;
  border: solid 1px #40100e;
  }

div.chat h1
{ 
  color: #40100e;
  margin: 8px;
 }

div.chat em
{ 
  color: #40100e;
 }

div.chat em.me
{ 
  color: #000000;
 }


/* CONVERSATION */

div.chat div#conversation
{ 
  float: left;
  width: 386px;
  height: 300px;
  background-color: #ffffff;
  margin: 8px;
  margin-right: 4px;
  border: solid 1px #40100e;
  overflow-y: auto;
  }

div.chat div#conversation ul
{ 
  margin: 8px;
 }
div.chat div#conversation ul li
{ 
  margin: 0;
  list-style-type: none;
  list-style-image: none;
  }



/* USERS */
div.chat div#users
{ 
  float: left;
  width: 186px;
  height: 300px;
  background-color: #ffffff;
  margin: 8px;
  margin-left: 4px;
  border: solid 1px #40100e;
  }

div.chat div#users ul
{  
  margin: 0;
  list-style-image: none;
}

div.chat div#users ul li
{ 
  float: left;
  width: 178px;
  height: 20px;
  line-height: 20px;
  color: #ffffff;
  border-bottom: solid 1px #ffffff;
  background-color: #8b4128;
  margin: 0;
  padding-left: 8px;
  list-style-type: none;
  list-style-image: none;
  cursor: pointer;
  }

div.chat div#users ul li.on
{ 
  background-color: #40100e;
  }

div.chat div#users ul li.disabled
{ 
  color: #dddddd;
  background-color: #aaaaaa;
  cursor: default;
  }


/* MESSAGE */
div.chat div.message
{ 
  float: left;
  width: 584px;
  height: 27px;
  margin: 8px;
  margin-top: 0;
  }

div.chat input#message
{ 
  float: left;
  width: 472px;
  height: 15px;
  padding: 5px;
  font-size: 13px;
  margin-right: 8px;
  border: solid 1px #40100e;
  }


/* SMILEYS */
div.chat div.smileys
{ 
  float: left;
  width: 584px;
  height: auto;
  margin-top: 8px;
  background-color: #e4dacd;
  border: solid 1px #40100e;
  }


/* BUTTON */
div.chat div.button
{ 
  float: left;
  width: auto;
  height: 27px;
  margin: 0;
 }

