oh wow.. that's a lot bandwidth. I will try to help ya. :-D
Try Enabling file caching with your htaccess file. That should help. and improve page load time.
Add these lines to your htaccess file and save. You can also change the # days to # months.
(This htaccess code is for an apache server. Like stoli here at x10. ;-)
---------------------------------------------
Code:
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 7 days"
ExpiresByType image/jpeg "access 7 days"
ExpiresByType image/gif "access 7 days"
ExpiresByType image/png "access 7 days"
ExpiresByType text/css "access 7 days"
ExpiresByType application/pdf "access 7 days"
ExpiresByType text/x-javascript "access 7 days"
ExpiresByType application/x-shockwave-flash "access 7 days"
ExpiresByType image/x-icon "access 7 days"
ExpiresDefault "access 7 days"
</IfModule>
<IfModule mod_headers.c>
<FilesMatch "\.(js|css|xml|gz)$">
Header append Vary Accept-Encoding
</FilesMatch>
</IfModule>
<IfModule mod_deflate.c>
#The following line is enough for .js and .css
AddOutputFilter DEFLATE js css
#The following line also enables compression by file content type, for the following list of Content-Type:s
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml
#The following lines are to avoid bugs with some browsers
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</IfModule>
## EXPIRES CACHING ##
Check your pages performance with google's page speed online.
http://pagespeed.googlelabs.com/
See what your performance score is before and after adding that code.
(note..google pagespeed online may take a bit to acknowledge some of your htaccess updates. )
There is also a browser plugin available for firefox and chrome for instant checks.
here-a.
Also in a sitemap.xml you can set <changefreq>monthly</changefreq> <priority>0.5</priority> for each url. But in your case, it would be way too many urls. and a sitemap generator would really eat up your bandwidth I would assume.
Let me know if that helps. :-)