<?php
if (!isSet($debug)) {
  header("Content-Type: text/css");
} else {
  echo "<pre>";
}
require_once("$DOCUMENT_ROOT/php/browsersniffer.class.php");
$bs = new BrowserSniffer;
?>
a {
  font-family: verdana, helvetica, arial, sans-serif;
  font-size: <?php echo $bs->PtSize(9); ?>pt;
  color: #A85239;
  text-decoration: none;
}
a:hover {
  color: #FF0000;
  text-decoration: underline;
}
a.big {
  font-family: verdana, helvetica, arial, sans-serif;
  font-size: <?php echo $bs->PtSize(12); ?>pt;
  font-weight:bold;
  color: #A85239;
  text-decoration: none;
}
a.big:hover {
  color: #FF0000;
  text-decoration: underline;
}
a.white {
  font-family: verdana, helvetica, arial, sans-serif;
  font-size: <?php echo $bs->PtSize(8); ?>pt;
  color: #FFFFFF;
  text-decoration: none;
}
a.white:hover {
  color: #FF3027;
  text-decoration: underline;
}
body {
  margin: 0;
  font-family: verdana, helvetica, arial, sans-serif;
  font-size: <?php echo $bs->PtSize(9); ?>pt;
  color: #000000;
}
p, ul, ol, td, input, select, textarea {
  font-family: verdana, helvetica, arial, sans-serif;
  font-size: <?php echo $bs->PtSize(9); ?>pt;
  color: #000000;
}
p.italic {
  font-style: italic;
}
p.bold {
  font-weight: bold;
}
p.bigred {
  color: #FF3027;
  font-size: <?php echo $bs->PtSize(12); ?>pt;
  font-weight: bold;
}
td.whitetext {
  color: #FFFFFF;
}
td.whitetextsmall {
  color: #FFFFFF;
  font-size: <?php echo $bs->PtSize(8); ?>pt;
}
a.image {
  color: #00A49E;
}
input.bordered, textarea.bordered {
  border-top: #000000 solid 1px;
  border-bottom: #000000 solid 1px;
  border-right: #000000 solid 1px;
  border-left: #000000 solid 1px;
}
<?php
if (isSet($debug)) {
  echo "</pre>";
}
?>