<?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_info {
	width: 800px;
}

.mainContent h1 {
	color: #4e4d8e;
	font: bold 18px Arial, Helvetica, sans-serif;
	margin: 0 0 10px 0;
	text-align: left;
}

#prod_main p a {
	color: #DD9827;
	font: bold 14px Arial, Helvetica, sans-serif;
	padding: 0;
	margin: 0 0 0 -75px;
}

#imageThumbs {
	display: block;
	width: 725px;
	overflow-x: hidden;
	overflow-y: hidden;
	padding: 0;
	margin: 0 auto;
	list-style-type: none;
	list-style-image: none;
	list-style-position: outside;
}

#imageThumbs p {
	text-align: center;	
	margin: 25px 0 25px 0;
}

#imageThumbs ul {
	list-style-type: none;
	display: block;
	width: 100%;
	margin: auto;
}

#imageThumbs img {
	margin: 0 0 25px 25px;
}

#imageThumbs ul li {
	float: left;
}

#full_pic_descrp {
	font: bold 14px Arial, Helvetica, sans-serif;
	padding: 0;
	margin: 0 0 5px 0;
}

.mainContent .topPageSubNav {
	margin: 0 85px;
	padding: 0;
	color: #221b83; 
	height: 25px; /* 100px */
}

.mainContent .topPageSubNav a {
	color: #221b83; 				
	font: bold 16px Arial, Helvetica, sans-serif;
	text-decoration: none;
	margin: 0;
	padding: 5px 5px 7px 5px;
	line-height: 1.5em;
}

.mainContent .topPageSubNav a:hover {
	color: #FFFFFF;
	background-color: #676799; 			
} 



<?php ob_end_flush();?>
