In order to reduce the number of HTTP requests, you can use the HTTP Expires header to set an expiration time for your CSS resources or any other content type.
You can add the following lines into your
.htaccess file:
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType text/css "access plus 1 month"
</IfModule>