﻿Add your custom CSS code here...01.<?php 
02.  
header('Content-type: text/css'); 
03.  
ob_start("compress"); 
04.  
function compress($buffer) { 
05.    
// remove comments 
06.    
$buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer); 
07.    
// remove tabs, spaces, newlines, etc. 
08.    
$buffer = str_replace(array("\r\n", "\r", "\n", "\t", '  ', '    ', '    '), '', $buffer); 
09.    
return $buffer; 
10.  
} 
11.?>
