URL url = getClass().getResource("/com/volantis/mcs/runtime/default.css");
InputStream stream = url.openStream();
defaultCompiledStyleSheet = cssCompiler.compile(
new InputStreamReader(stream), null);
} catch (IOException e) {
throw new ExtendedRuntimeException(e);
}
stylingEngine.pushStyleSheet(defaultCompiledStyleSheet);
if (protocol != null &&
protocol.getCompiledDefaultStyleSheet() != null) {