/*

editors.css - Andys Editors Stylesheet

Document is black on white.
Everything uses a nice font, and inherits color and background.
Top level headings are yellow on red.
Lower headings are yellow.
Eliminate effect of use of BORDER in table definition.
Table headings and cells have gray background.
Links are white or grey, and background turns red when hovered.
On IE you need to use a:hover to select links, but not anchors.
Elsewhere a[href]:hover selects links, a:hover selects links and anchors.
Addresses in fixed width font.

*/

body { color: #ccc; background: #000; }
* { font-family: Arial, Verdana, sans-serif; color: inherit; background: inherit; }
h1 { color: #cc0; background: #c00; }
h2 { color: #cc0; background: #c00; }
h3 { color: #cc0; background: #c00; }
h4 { color: #cc0; background: #c00; }
h5 { color: #cc0; background: #c00; }
h6 { color: #cc0; background: #c00; }
table { border-collapse: seperate; empty-cells: show; border-spacing: 4px; border-style: none; }
th { background: #666; border-style: none; font-style: bold; text-align: left; }
td { background: #333; border-style: none; text-align: left; }
td.layout { border-style: none; text-align: left; }
pre { margin-left:30px; font-family: Courier, monospace; color: #ccc; background: #333; }
*:link { text-decoration: underline; }
a:link { color: #cc0; }
a:visited { color: #990; }
a[href]:hover { color: #cc0; background: #999; }
*:link.nav { font-size: 200%; text-decoration: underline; }
a:link.nav { font-size: 200%; color: #cc0; }
a:visited.nav { font-size: 200%; color: #990; }
a[href]:hover.nav { font-size: 200%; color: #cc0; background: #999; }
address { font-family: Courier new, monospace; font-style: normal; }
code { font-family: Courier, monospace; color: inherit; background: inherit; }
img.center { display: block; margin-left: auto; margin-right: auto; }
