body {
  font-family: Verdana, sans-serif;
  font-size: 10pt;
}

/* Styles for the table that contains the shouts */
.shouttable {
  width: 100%;
  background-color: blue;
  border:0px solid blue;
}

th.shouttable {
  color: white;
}

/* shout entry: <tr> with user info, style for every odd line */
.userinfo0 {
  font-size: 7pt;
  background-color: #6bbeff;
  color: #4b4b4b;
}

/* shout entry: <tr> with user info, style for every even line */
.userinfo1 {
  font-size: 7pt;
  background-color: #6bd9ff;
  color: #4b4b4b;
}

/* shout entry: <tr> with shout text, style for every odd line */
.text0 {
  font-size: 9pt;
  background-color: #8bbeff;
  color: black;
}

/* shout entry: <tr> with shout text, style for every even line */
.text1 {
  font-size: 9pt;
  background-color: #8bd9ff;
  color: black;
}

/* shout entry: <tr> for error messages */
.textError {
  font-size: 9pt;
  background-color: red;
  color: black;
}

/* shout entry: <tr> for info messages */
.textMessage {
  font-size: 9pt;
  background-color: #ffcc00;
  color: black;
}

/* table surrounding the shout table and the entry form table */
.outertable {
  width: 100%;
  background-color: #8bb8ff;
  border:1px solid blue;
}

/* text- and input field styles for the entryform */
.entryform {
  font-size: 9pt;
}

/* styles for the mollom statistics */
.mollomstats {
  font-size: 9pt;
}

/* styles for usernames (and states) */

/* admin */
.username256 {
  font-weight: 500;
  color: red;
}

/* registered user */
.username4 {
  font-weight: 500;
  color: blue;
}

/* VIP user */
.username16 {
  font-weight: 500;
  background-color: red;
  color: white;
}

/* links for shout history */
.history {
  font-size: 8pt;
  color: white;
}

