@charset "UTF-8";
/* very simple: just define a style for "showstopper" bugs. */
body { color: black; background-color: white; }
/* sans-serif fonts look better on screen. */
@media screen { body { font-family: Verdana, Helvetica, Arial, sans-serif; } }
/* serif fonts look better on paper. */
@media print { body { font-family: serif; } }
a:target { color: red; background-color: yellow; font-weight: bold; }
a[href]:hover { color: black; background-color: #ccc; }
a:link { color: blue; }
a:visited { color: purple; }
a:active { color: red; background-color: yellow; }
 
.showstopper { color: #b00; }
/* that's all, folks! */

