/*  Norcode.org Ajax Chat v1.0 - Chat via the web with Js/jQuery
    Copyright (C) 2009  Tom A. Barstad
      This program is released under the GPL License terms
      Read the LICENSE file for more information.
*/

body {
  margin: 0px;
  font-size: 12px;
  color: #000000;
  background-color: #FFFFFF;
  font-family: "URW Gothic L","MgOpen Moderna","Lucida Sans",sans-serif;
  background-image: url('../img/topbg.jpg');
  background-repeat: repeat-x;
  background-attachment: fixed;
}

a:link, a:visited, a:active {
  color: #006600;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

html,body {
  height: 100%;
}

#wrapper {
  height: 100%;
  max-height: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

#headtext {
  background-color: #CADDB7;
  border: 1px solid #000000;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  height: 20px;
  margin-bottom: 4px;
}

#utils {
  border: 1px solid #000000;
  border-bottom: none;
  border-top: none;
  background-color: #D0D0D0;
  vertical-align: middle;
  height: 25px;
  width: auto;
}

#content {
  margin: 0px;
  border: 1px solid #000000;
  width: auto;
  height: 73%;
  padding: 2px;
  background-color: #FFFFFF;
  overflow: auto;
}

#userlist {
  border: 1px solid #000000;
  border-left: 0px;
  width: 220px;
  height: 73%;
  margin: 0px;
  padding: 2px;
  background-color: #F0F0F0;
  overflow: auto;
  float: right;
}

#input {
  width: auto;
  border: 1px solid #000000;
  background-color: #FFFFFF;
  height: 20px;
}
#textline {
  background-color: #FFFFFF;
  border: none;
  font-family: "URW Gothic L","MgOpen Moderna","Lucida Sans",sans-serif;
  height: 16px;
  width: 99%;
  font-size: 12px;
}

#foot {
  padding: 1px;
  text-align: center;
  border: 1px dashed #000000;
  background-color: #CADDB7;
  height: 16px;
  margin-top: 4px;
}

#tmp {
  width: 0px;
  height: 0px;
  font-size: 0px;
  visibility: hidden;
  overflow: hidden;
}


.loading {
  padding-top: 60px;
  width: 50px;
  margin: auto;
  
  background-image: url('../img/load.gif');
  background-position: center center;
  background-repeat: no-repeat;
}
.loadinggray {
  padding-top: 60px;
  width: 50px;
  margin: auto;
  
  background-image: url('../img/grayload.gif');
  background-position: center center;
  background-repeat: no-repeat;
}

.servermsg {
  font-weight: bold;
  color: darkgreen;
}

.modmsg {
  font-weight: bold;
  color: purple;
}

.chataction {
  font-weight: bold;
  color: brown;
}

.useritem {
  font-size: 16px;
  font-weight: bold;
}

