Try this:
Code:
<?php if(extension_loaded('zlib')){ob_start('ob_gzhandler');} header("Content-type: text/css"); ?>
YOUR ENTIRE STYLESHEET GOES HERE
<?php if(extension_loaded('zlib')){ob_end_flush();}?>
..and rename your stylesheet.css to stylesheet.css.php
Thats it. And see a dramatic decrease in page load time. Should compress ATLEAST (not "UPTO") 70%.
Edit: Ofcourse you need to change stylesheet.css to stylesheet.css.php in the head section.