<?php
  header('Content-type: text/css');
  ob_start("compress");
  function compress($buffer) {
    // remove comments
    $buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
    // remove tabs, spaces, newlines, etc.
    $buffer = str_replace(array("\r\n", "\r", "\n", "\t", '  ', '    ', '    '), '', $buffer);
    return $buffer;
  }
?>

*
    {
    margin:  0;
    padding: 0;
    }

body
    {
    background: #0171AF url(background.gif) repeat-x;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #333;
    }

#header
    {
    margin-left:  auto;
    margin-right: auto;
    margin-bottom: 25px;
    margin-top:   25px;
    padding:      10px;
    width:        800px;
    background-color: #eee;
    border:       1px dashed #999;
    }

#content
    {
    margin-left:  auto;
    margin-right: auto;
    margin-top:   25px;
    margin-bottom: 25px;
    padding:      10px;
    width:        800px;
    background-color: #eee;
    border:       1px dashed #999;
    position: center;
    }

#author
    {
    text-align: center;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    }

#link
    {
    padding: 20px;
    text-align: center;
    width: 650px;
    overflow: auto;
    font: 14px/ 16px 'Lucida Console', 'Courier New', monospace;
    /* white-space: pre; */
    background: transparent;
    border: 1px solid #211E20;
    }

tbody
    {
    background: #acc;
    }

tbody td
    {
    font-size:      100%;
    letter-spacing: 0.05em;
    }

tbody td, th
    {
    vertical-align: top;
    padding: 10px;
    color:   #000;
    }

/* header */

thead th
    { /* headers oben */
    padding:    5px 10px;
    text-align: left;
    background: #DF3985; /* pink */
    color:      #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: bold;
    font-size:  110%
    }

/* colours */

tbody tr.odd
    {
    background: #E6E0C0;
    }

tbody tr
    {
    background: #b6e5ff;
    }

<?php ob_end_flush();?>
