/* All default text */
body{background-color: #FFFFFF;                           /* Color White */
     color: #000000;                                      /* Color black */
     margin: 0;                                           /* Margin full page none */
     font-family: Arial, Helvetica, Verdana, sans-serif;} /* Font sans-serif */

/* Headers in Content */
h1, h2{font-variant: small-caps;                            /* Font small-caps */
       color: #22CC55;                                      /* Color greenish */
       margin-bottom: 7px;                                  /* Margin below 7pt */
       font-size:120%;                                      /* Font 120% of regular */
       font-family: Arial, Helvetica, Verdana, sans-serif;} /* Font sans-serif */

/* Item and Tab in Content */
.sel{background-color: #EEFFFF; /* Color blueish-greenish-light-gray */
     font-variant: small-caps;} /* Font small-caps */

/* Content text */
.content{background-color: #EEFFFF;            /* Color blueish-greenish-light-gray */
         font-family: Times New Roman, serif;} /* Font serif */

/* Items not in Content */
.item a{color: #000000;           /* black */
        font-variant: small-caps; /* Font small-caps */
        text-decoration: none;}   /* Text non-blue-underlined */

/* Items not in Content (Hovered over) */
.item a:hover {text-decoration: underline;} /* Text underlined */

/* Tabs not in Content */
.tab a{background-color: #CCDDDD; /* Color blueish-greenish-gray */
       color: #000000;            /* Color black */
       text-decoration: none;}    /* Text non-blue-underlined */

/* Tabs not in Content (Hovered over) */
.tab a:hover {text-decoration: underline;} /* Text underlined */

/* Everything else */
pre, tt{font-family: monospace;} /* Font monospace */
