
/* A basic color scheme. */

/*
Because of Opera, we set hr's color, background-color
and border-color, and all to the same value.
*/

/* Traditional defaults: link = blue, active = red, visited = purple */
/* IE quirk: active color sticks much longer than it should,
   so I'll make active (was lime (which is hard to read on some of
   my backgrounds, but that's what I wanted before the stickiness))
   same as hover */
a:link { color: blue }
a:visited { color: #C0F }
a:active { color: green } /* lotsa green... i'm going! */
a:hover { color: green } /* greenish... i might go... */

.bgcolor, body { background-color: #FC9 }
.fgcolor, body { color: black }
.hicolor, hr, h1, h2, h3, h4, h5, h6 { color: #930 }

h1, h2, h3, h4, h5, h6 { background-color: transparent }

hr { background-color: #930 } /* make this same as .hicolor's color */

hr, .boxed, .livatabelo, .dekstratabelo { border-color: #930 } /* make this same as .hicolor's color */

.livatabelo, .dekstratabelo { background-color: #DDD }

div.msgheader { color: green }
div.msgquoted { color: navy }

