// ==UserScript==
// @name        UnJustify for Safari Reader
// @namespace	http://madeincr.com/notess/readability
// @description A simple rule to disable the silly Justified text that ships with this awesome feature.
// @include     *
// @author      Josue Salazar  (http://www.salazarstudios.com) 
// ==/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('#container #centered #article .page { text-align: left !important;}');
