protected void outputStyle(String styleSheet) {
String style = null;
if (styleSheet != null) {
StyleSheet ssheet = new StyleSheet();
try {
if (styleSheet.startsWith("url(")) {
styleSheet = styleSheet.substring(5);
int pos = styleSheet.lastIndexOf(')');
styleSheet = styleSheet.substring(0, pos);
ssheet.parseFromFile(styleSheet);
} else {
ssheet.parseFromString(styleSheet);
}
style = styleSheetToSVG(ssheet);
} catch (IOException e) {
e.printStackTrace();