﻿
* {
    margin: 0;
    padding: 0;
}
html,body {
	height: 100%; /* HEEL BELANGRIJK! */;
	background-image: url(http://www.stupna.info/Images/achtergrond.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: top center;
	scrollbar-track-color: #f5ffa0;
	scrollbar-base-color: #ffffcc;
	scrollbar-arrow-color: #ffffcc;
	scrollbar-face-color: #abe926;
}

.clear {
    clear: both; /* deze class gaan we gebruiken om de twee floats #left en #right te clearen. */
}

#container {
    min-height: 100%;
    _height: 100%;
    width: 800px;
    margin: 0 auto; /* deze div centreren */
    position: relative; /* De footer wordt absoluut gepositioneerd, relatief aan #container. Dus position: relative moet dan hier toegevoegd worden */
}

#header {
    text-align: center;
    height: 25px;
}
#navbar {
	height: 75px;
	line-height: 35px; /* height, line-height en vertical-align: middle zorgen ervoor dat de inhoud van deze div altijd verticaal gecentreerd wordt. */;
	vertical-align: middle;
	font-family: 'Comic Sans MS',Verdana,Helvetica,sans-serif;
	font-size: 25px;
	font-weight: bold;
	color: #009933;
	text-align: center;	
}

#onderwerp_c {
	font-family: 'Comic Sans MS',Verdana,Helvetica,sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #009933;
	text-decoration: underline;
	text-align: center;
}


#onderwerp {
	font-family: 'Comic Sans MS',Verdana,Helvetica,sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #009933;
	text-decoration: underline;
	text-align: left;
}
#body {
	font-family: 'Verdana',Helvetica,sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
    width: 800px;
    float: left;
    height: auto;
    margin-bottom: 30px; /* dezelfde hoogte als de hoogte van #footer, anders zal de tekst in deze div onderaan achter de footer vallen omdat #footer absoluut gepositioneerd is */
}
    #right h1, #right p {
        line-height: 18px;
        padding: 10px;
    }
#footer {
    position: absolute;
    font-family: 'Comic Sans MS',Verdana,Helvetica,sans-serif;
    font-size:small;
    color: #009933;
    bottom: 0;
    left: 0;
    width: 800px;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
}
