/* DATEI: ratiosoft.css */

body { margin-left:10px; background-color:#ffffcc; color:#333333; }

/************************
    Standard Fonts
************************/
p,h1,h2,h3,h4,ul,ol,li,div,td,th,address,nobr,b,i
     { font-family:Verdana,Arial,Helvetica; }

/********************************************
   Größen-Definitionen: Überschriften
*********************************************/
h1 { font-size:18pt; } /* z. Zt. nicht benutzt */
h2 { font-size:14pt; } /* Seitenueberschriften */
/* Zwischenueberschriften wie 'Beispiel', 'Erlaeuterung' */
h3 { font-size:12pt; }
/* Zwischenueberschriften an manchen Stellen, Überschriften in Listings */
h4 { font-size:10pt; }

/********************************************
   Größe: normaler und spezieller Text
*********************************************/
/*p,ul,ol,li,div,td,th,address,nobr,b,i { font:10pt/12pt; }*/ /* normaler Text */
/*p,ul,ol,li,div,td,th,address,nobr,b,i { font-size:10pt; }*/
p,ul,ol,li,div,td,th,address,nobr,b,i { font-size:10pt; }

p.medium { font-size:9pt; } /* mittel halt */
p.small { font-size:8pt; } /* kleiner Text für Fußzeilen */

table.medium { font-size:9pt; } /* mittel halt */
td.medium    { font-size:9pt; } /* mittel halt */

/********************************************
    nicht-proportionale Formate
*********************************************/
/* Quelltext-Beispiele */
pre { font-family:Courier New,Courier; font-size:10pt; }

/* kurzes Code-Beispiel */
pre.oneline { font-family:Courier New,Courier; font-size:10pt;
              margin-top:-4pt; }

/* Quelltext-Befehle im normalen Fliesstext */
tt { font-family:Courier New,Courier; font-size:11pt; }
h2 tt { font-size:14pt; } /* <tt> in Seitenueberschriften */


/********************************************
    Besondere Hervorhebungen
*********************************************/

/*
 * Möglichkeiten:
 * "font-style:italic|obliqu|normal"
 * "font-size:12pt|120%|..." (x-small ... xx-large, larger, ...)
 *    s. auch: "font:12pt/14pt"
 * "font-weight:bold|bolder|lighter|normal ..." (100, ..., 900)
 */

/* color: aaaad6 = helles blau-grau*/
/*em.color { font-weight:bold; color:#aa5522; }*/
em.color { font-style:normal; font-weight:bold; }
em.kw    { font-weight:bold; color:#D15A1B; }   /* key word, z.B. Lint */

a:link { color:#cc0000; text-decoration:underline; }
a:visited { color:#330099; text-decoration:underline; }
a:active { color:#ff3300; text-decoration:underline; }
/* a:link = Verweise zu noch nicht besuchten Seiten */
/* a:visited = Verweise zu bereits besuchten Seiten */
/* a:active = Verweise, die gerade angeklickt werden */

a.an { text-decoration:none; } /* Bedeutung ?? */

