/*
                    a         s         l   _    s        t        y        l        e
		                                      .
                                   c                  s                 s
*/

/*the default text color and font parameters*/
body
{ 
    color:#999933;
    background-color:#000000;
    font-family:'monaco','consolas','ocr b mt','lucida console',monospace;
    font-size:7pt;
}

/*the global link treatment*/
a{
text-decoration:none}

a:link{color:#999933}
a:visited{color:#999933}
a:hover{color:#ffff99}

/*an underused style waiting in the backscenes...it's for emphasizing links hidden within text blocks, darkening them with a hover color to match the surrounding text...use it more? leave it? also used as a small darkheader for nonlinks*/
.hide
{
    color:#666600;
    font-size:7pt;
}

.hide a:link{color:#666600;}
.hide a:visited{color:#666600;}
.hide a:hover{color:#999933;}

/*our header style. thick and beefy*/
.darkheader
{
    color:#666600;
    font-size:11pt;
}

.darkheader a:link{color:#666600;}
.darkheader a:visited{color:#666600;}
.darkheader a:hover{color:#999933}

/*since we can't just have table text be the same as body text, we have to duplicate the style*/
vv.table, .table td, .table th
{
    color:#999933;
    background-color:#000000;
    font-family:'monaco','consolas','ocr b mt','lucida console',monospace;
    font-size:7pt;
}

/*the dark red text originally made for a table header (since found use in more places)*/
.headertable, .headertable td, .headertable th
{
    color:#663333;
    background-color:#000000;
    font-family:'monaco','consolas','ocr b mt','lucida console',monospace;
    font-size:7pt;
}

.headertable a:link{color:#663333;}
.headertable a:visited{color:#663333;}
.headertable a:hover{color:#ffff99;}

/*a fun and totally unneccessary class*/
.reverse
{
    unicode-bidi:bidi-override;
    direction:rtl;
}

/*a way to implement centered text without <div align="center"></div>*/
p{
    text-align:center;
}

/*a way to center images without <div align="center"></div>*/
IMG.centered
{
    display:block;
    margin-left:auto;
    margin-right:auto;
    text-align:center; /*this line is necessary for the idiocy of IE on Win*/
}

/*and now i know that <img border="0"> that i keep forgetting to put in is not only supremely annoying but DEPRECATED. so let's get rid of it*/
a img{border: 0px;}
img{border:0px;}