<?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;
  }
?>

@charset "utf-8";
/* CSS Document */

#prod_main {
	width: 800px;
	font-family: arial,"lucida console",sans-serif;
	height: auto;
	padding: 0;
}

#prod_thumb {
	height: 150px;
	background: url(../images/itemBg.jpg) no-repeat;
	padding: 10px 0 0 0;
	float: left;
	width: 180px;
	overflow: hidden;
}

#prod_sdescr {
	text-align: left;
	font: 14px Arial, Helvetica, sans-serif;
	display: block;
	overflow: hidden;
	padding: 0;
	margin: 15px 0 0 25px;
	min-height: 150px;
}

a.prod_button, a.prod_button:link, a.prodbutton:active, a.prodbutton:visited {
	margin-top: 15px;
}

#prod_short {
	margin: 0;
	padding: 0;
}

h2.prod_short {
	color: #4e4d8e;
	font-size: 16px;
	line-height: 18px;
	margin: 10px 0 3px 0;
	padding: 0 0 0 15px;
}


<?php ob_end_flush();?>