/****************************************************************************\
  This is an Example-CSS File for Use with the UTServerDisplay PHP Class.
  It uses the CSS-Tag-Classes defined here, so don't change the Names 
  ("UTServer_PT" etc), instead edit the Properties ("color", "font" etc) to 
  make them fit your Webpage.
\****************************************************************************/

body
{
  background: #000000;
  color: #BBA;
}

a:link
{
  color: #FFD;
  padding: 3px;
  border: 1px solid #FFD;
  text-decoration: none;
  font-weight: bold;
}

a:hover
{
  background: #686;
  border: 1px dashed #F00;
}

/* The Paragraph reporting an unreachable Server etc */

p.UTServer_Error
{
  background: #800;
  color: #EE8;
  border: 1px solid #E88;
}

/* Anything you want to set on the Map-Picture? */

img.UTServer_MapImage
{
  border-width: 1px;
  border-color: #888;
}

/* For the Debug-Output. Is only used when explicitely enabled in the Config */

div.UTServer_Trace_First
{
  background: #000;
  color: #CCC;
  font-family: monospace;
  font-size: 11px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 5px;
  padding-right: 5px;
  border-top: 3px solid green;
  border-left: 3px solid green;
  border-right: 3px solid green;
  text-align: left;
}

div.UTServer_Trace
{
  background: #000;
  color: #CCC;
  font-family: monospace;
  font-size: 11px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 5px;
  padding-right: 5px;
  border-left: 3px solid green;
  border-right: 3px solid green;
  text-align: left;
}

div.UTServer_Trace_Last
{
  background: #000;
  color: #CCC;
  font-family: monospace;
  font-size: 11px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 2px;
  border-left: 3px solid green;
  border-right: 3px solid green;
  border-bottom: 3px solid green;
  text-align: left;
}

/****************************************************************************\
  Settings for the Player Table 
\****************************************************************************/

p.UTServer_NoPlayers
{
  background: #000;
  border: 1px dotted #898;
  padding: 5px;
  width: 512px;
  margin: auto;
  color: #EEE;
}

/* Player Table: the outer Table */

table.UTServer_PT
{
  margin: auto;
  table-layout: fixed;
}

tr.UTServer_PT
{
}

td.UTServer_PT
{
  padding: 10px;
  vertical-align: top;
}

/* Player Table: inner Table(s) */

table.UTServer_PT_Red
{
  width: 100%;
  font-size: 10pt;
  background: #711;
  border: 1px dotted #922;
  border-collapse: collapse;
}

table.UTServer_PT_Blue
{
  width: 100%;
  font-size: 10pt;
  background: #117;
  border: 1px dotted #229;
  border-collapse: collapse;
}

/* Player Table: the Table-Header Row */

tr.UTServer_PT_HeadRow_Red
{
  background: #A33;
}

tr.UTServer_PT_HeadRow_Blue
{
  background: #33A;
}

th.UTServer_PT_Red_Name,
th.UTServer_PT_Blue_Name
{
  padding: 5px;
  border-bottom: 2px solid white;
  color: white;
}

th.UTServer_PT_Red_Frags,
th.UTServer_PT_Blue_Frags,
th.UTServer_PT_Red_Ping,
th.UTServer_PT_Blue_Ping
{
  padding: 5px;
  border-bottom: 2px solid white;
  border-left: 1px dashed white;
  color: white;
}

/* Player Table: a Data-Row */

tr.UTServer_PT_Red_Row,
tr.UTServer_PT_Blue_Row
{
}

td.UTServer_PT_Red_Name,
td.UTServer_PT_Blue_Name
{
  padding: 3px;
  background: #333;
  text-align: left;
  color: white;
}

td.UTServer_PT_Red_Frags,
td.UTServer_PT_Blue_Frags,
td.UTServer_PT_Red_Ping,
td.UTServer_PT_Blue_Ping
{
  padding: 3px;
  text-align: right;
  border-left: 1px dashed white;
  color: #EEE;
}

td.UTServer_PT_Red_Teamscore
{
  background: #A33;
  font-weight: bold;
  color: white;
}

td.UTServer_PT_Blue_Teamscore
{
  background: #33A;
  font-weight: bold;
  color: white;
}

/****************************************************************************\
  Settings for the Settings Table 
\****************************************************************************/

/* Settings Table: <table>-Tag */

table.UTServer_ST
{
  font-size: 10pt;
  background: #888;
  border: 1px dotted #EEE;
  border-collapse: collapse;
  margin: auto;
}

/* Settings Table: the Table-Header Row */

tr.UTServer_ST_HeadRow
{
}

th.UTServer_ST_Key
{
  padding: 5px;
  border-bottom: 2px solid white;
  color: white;
}

th.UTServer_ST_Val
{
  padding: 5px;
  border-bottom: 2px solid white;
  border-left: 1px dashed white;
  color: white;
}

/* Settings Table: a Data-Row */

tr.UTServer_ST_Row
{
}

td.UTServer_ST_Key
{
  padding: 3px;
  background: #444;
  text-align: left;
  color: #DDD;
}

td.UTServer_ST_Val
{
  padding: 3px;
  border-left: 1px dashed white;
  text-align: left;
  color: #BBB;
  background: #333;
}


