You can only create 31 stylesheet objects with this method. After that, it throws an "Invalid argument" exception.
The same limit applies even if you create a STYLE element and append it to the document, as follows:
var ss = document.createElement('STYLE');
document.documentElement.firstChild.appendChild(ss);