/** Parses the next rule set, which is a selector followed by a declaration block. */
 private void parseRuleSet() throws IOException {
   if (parseSelectors()) {
     callback.startRule();
     parseDeclarationBlock();
     callback.endRule();
   }
 }