// Detach the app while we manipulate the styles to avoid rendering issues
RootPanel.get().remove(app);
// Remove the old style sheets
for (Element elem : toRemove) {
headElem.removeChild(elem);
}
// Load the GWT theme style sheet
String modulePath = GWT.getModuleBaseURL();
Command callback = new Command() {