/*   Een _ aan het begin van een CSS propertyname:
     Wordt alleen door Internet explorer 5+, (EXCLUSIEF IE7!!!) geinterpreteerd.
	
	Een # aan het begin van een CSS propertyname:
     Wordt alleen door Internet explorer 5+, (INCLUSIEF IE7!!!) geinterpreteerd.
	Bijvoorbeeld: 
				color : blue:
				_color: red;
	
	levert in IE5+ red op en in IE7 en in alle andere browsers blue
	
	Bijvoorbeeld: 
				color : blue:
				#color: red;
	
	levert in IE5+ (incl. IE7) red op en in alle andere browsers blue
*/	
body, html 
{   font-family: times new roman, arial; 
	font-size: 1.1em; 
	padding: 0;
	margin: 0;
	background: transparent; 
}

td
{   font-family: times new roman, arial; 
	font-size: 1.1em; 
}

p
{   margin: 0; 
	padding: 0;
}

a:link
{   color: red;
	text-decoration: underline;
}

a:visited
{   color: red;
	text-decoration: underline;
}

a:active
{   color: red;
	text-decoration: underline;
}

a:hover
{   color: red;
	text-decoration: underline;
	font-size: 1em; 
} 

.kop
{   font-family: times new roman, arial;
    font-size: 1.5em; 
	margin: 0px; 
	color: #005191; 
	font-weight: bold; 
	font-variant: small-caps;
}

.geen
{
}

.groot
{	font-family: times new roman, arial;
    font-size: 1.5em;
	font-weight: bold;
}

.grootCursief 
{	font-family: times new roman, arial;
    font-style: italic;
	font-weight: bold;
	font-size: 1.5em;
}

.vrolijkgroot
{   font-family: Curlz MT;
    font-size: 1.5em;
}

.vrolijkgrootgroen
{   font-family: Curlz MT;
    color: #00cc00;
	font-size: 1.5em;
	font-weight: bold;
	text-decoration: underline;
}

	
