﻿(function() {
    var head = document.getElementsByTagName("head")[0];
    if (head) {
        var scriptStyles = document.createElement("link");
        scriptStyles.rel = "stylesheet";
        scriptStyles.type = "text/css";
        scriptStyles.href = "/css/script-styles.css";
        head.appendChild(scriptStyles);
    } else {
        var link = document.createElement('link');
        link.setAttribute('rel', 'stylesheet');
        link.type = 'text/css';
        link.href = '/css/script-styles.css';
        document.head.appendChild(link);
    }
} ());
