/* FRAME DEFINITIES */

/* definitie standaardpagina */
body {background-color: #000066; 
      background-attachment: fixed;      
      margin-right: 75px;
      text-align: left;
      font-family: verdana;
      font-size: 13;
      color: #B59629;
      scrollbar-base-color: #B59629}

body.main {margin-top: 8px} 

body.bedankt{text-align: center} 

body.menu {text-align: center;
           margin-top: 25 px;
           margin-left: 8px;
           margin-right: 15px}


/* HEADER DEFINITIES  */
/* definitie header 1, titelheader, gebruiken we eigenlijk niet */
h1 {font-size: 30;
    text-align: center;
    font-weight: normal}

/* definitie header 2, subheader */
h2 {font-size: 17;
    text-align: center;
    font-weight: normal}

/* definitie header 6: de kleine lettertjes */
h6 {font-size: 10;
    text-align: center;
    font-weight: normal}
    
h5 {font-size: 10;
    text-align: left;
    font-weight: normal}    

/* TEKST DEFINITIES */
/* definitie standaard tekst */
p {}
                
/* definitie voetnoten, kleiner lettertype, alleen bij list-items, 
   lijst op volgorde met getallen */
li.voetnoot {font-size:9;
             list-style-type: decimal}

/* italic-font ofwel schuingedrukt */
i {}

/* TABLE DEFINITIES */

/* table definities */    
table {font-size: 13;
       text-align: left;
       font-weight: normal}   

/* definitie cel in tabel, standaard tekst links uitgelijnd  */
td {text-align:left}

/* definitie cel in tabel, tekst gecentreerd  */
td.c {text-align:center}

/* definitie cel in tabel, tekst rechts uitgelijnd  */
td.r {text-align:right}

/* LINK DEFINITIES */

/* normale link, altijd zwarte tekst */
a {color: #B59629}
   a:link (color: #B59629)}

/* normale link, maar dan zonder onderlijning */
a.kaal {text-decoration: none}

/* er zijn nog andere pseudo-klassen mogelijk, misschien voor later interessant:
a:link (color: #B59629)
a:visited (color: #B59629)
a:active (color: #B59629)
*/

a.box {color: #B59629;
       text-decoration: none;              
       border: 2px;
       border-style: solid;
       border-color: #B59629
       }
 
/* LINK DEFINITIES VOOR MENU */

/* standaard menu-link */
a.menu { font-family: verdana;         
         font-size: 18;
         font-weight: bold;
         text-align: center;
         text-decoration: none;
         color: #A2A0A0;
         width: 130;
         border-top;1}

/* link bij muis erover */
a.menu:hover {color: #800000}

/* aanpassing voor eerste letter in menu-link */
a.menu:#test:first-letter {font-size: 23;
                      color: #808080;
                      font-weight: bold}

/* eerste letter bij muis over */
a.menu:hover:#test:first-letter{color: #A9A3A3}

/* ID DEFINITIES 
   - ofwel aparte opmaak, gebruik:
   span id="naam" om op te nemen in de tekst op te laten nemen
   div id="naam" om los te koppelen van de omliggende tekst */

/* ID voor verwijzing naar voetnoot */
#link_voetnoot {font-size: 8;
                font-weight: bold;
                display: inline}
                
