/**
* Loads the default set of properties, which may be overridden.
*/
private void loadDefaultProperties() {
try {
InputStream readStream = GeneralUtil.openStreamFromClasspath(new DefaultCSSMarker(), SF_FILE_NAME);
if (readStream == null) {
System.err.println("WARNING: Flying Saucer: No configuration files found in classpath using URL: " + SF_FILE_NAME + ", resorting to hard-coded fallback properties.");
this.properties = newFallbackProperties();
} else {