// ==UserScript==
// @name           metra pre
// @namespace      http://meat.net/
// @description    Clean up Metra style
// @include        http://metrarail.com/Sched/*/*.shtml
// ==/UserScript==


function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}


addGlobalStyle("pre h4 { font-family: Lucidatypewriter, Andale Mono, Courier New, Courier, monospace; }");
