<?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;
  }
?>
body,td,a,p,.h{
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
body {font-size: small;color: #333;margin: 0 20px 2em 20px;line-height: 140%;background: #fff url(/pix/grgrad.gif) repeat-x;}
a:link {
	color: #000000;
	text-decoration: none;
}
a:visited {
	color: #666;
	text-decoration: none;
}
a:hover { color: #333; }
a:active { color: #000; }
img,table { border: 0;}
#sf{ width: 100%; }
#frame {width: 564px;margin: 0 auto;}
ul {
list-style-image: url(pix/cow_small.gif);
list-style-position: outside;
}
ol {
	font-size: x-small;
}
.grossfett {
	font-size: 14px;
	font-weight: bold;
}
.gross {
	font-size: large;
}
hr {
	white-space: normal;
	display: none;
	padding: 0px;
	margin: 0px;
	clear: none;
	float: none;
}

<?php ob_end_flush();?>