@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix(http) { /* include https */

/* *** disable-colors.css *** */

/*
* Disable colors and backgrounds on a web page.
*/

html, body,
        div, span,
        p, h1, h2, h3, h4, h5, h6, h7, h8, h9,
        table, thead, tbody, tfoot, tr, th, td,
        ol, ul, li,
        iframe, img {
    color: black !important;
    border-color: white !important;
    background: none !important;
}

a:link {
    color: blue !important;
    border-color: white !important;
    background: none !important;
}

a:visited {
    color: purple !important;
}

a:hover {
    color: blue !important;
}

a:active {
    color: red !important;
}



/* *** disable-fonts.css *** */

/*
* Disable fonts on a web page.
*/

/* Obviate need to zoom on many sites. */
html, body,
        div, span,
        p, h1, h2, h3, h4, h5, h6, h7, h8, h9,
        table, thead, tbody, tfoot, tr, th, td,
        ol, ul, li,
        iframe, a {
    font-size: 100% !important;
    line-height: normal !important;
}

/* Disable the deprecated HTML <font> tag. (Like above,
   reduces need to zoom.) */
font {
    font-family: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
}

/* Disable marquee display */
marquee {
    -moz-binding: none;
    display: block;
    height: auto !important;
    /* This is better than just display:none !important;
       because you can still see the text in the marquee,
       but without scrolling. */
}




} /* moz document */
