Found on Stack Overflow to put a custom style sheet in an iframe. Haven't tested it yet! https://stackoverflow.com/questions/217776/how-to-apply-css-to-iframe
var cssLink = document.createElement("link");
cssLink.href = "style.css";
cssLink.rel = "stylesheet";
cssLink.type = "text/css";
frames['iframe1'].document.head.appendChild(cssLink);