I've looked at the code and didn't see anything obvious that would limit it to 2M. There is a php setting "upload_max_filesize" that seems to have a default of 2M, but since this isn't an uploaded file I don't see why it would apply. But it's probably worth trying to increase it and see what happens.
Another thought is that in the file includes/class_css_parser.php there's a function at the top, fetch_file_via_socket() that gets the data. It looks like it tries to use curl functions if available, and if not it uses a socket. You might try editing it and chaging the line:
Code:
if (function_exists('curl_init') AND $ch = curl_init())
to
Code:
if (0 AND function_exists('curl_init') AND $ch = curl_init())
to force it to use a socket instead of curl. But that's just a stab in the dark.