/* ALG */

html, body, div, span {
	margin: 0;
	padding: 0;
}

/*
body.werk a.werk {
text-decoration: underline;
background-color: #F00;
}
*/

body, html, p, h1, h2, h3 {
    height: 100%;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: normal;
	color: #000;
}


/* LAYOUT */

#wrapper {
	margin-top:65px;
	width: 700px;
	margin-left: auto; 
	margin-right: auto;
}

#header {
	width: 700px;
}

#naam {
	position: relative;
	float: left;
}


#menubalk {
	position: relative;
	float: right;
}
	
#container {
	margin-top: 20px;
	margin-bottom: 25px;	
}

.clear {
	clear:both;
}


/* TEKST */


p {
	/*	tbv zelfde tonen op gehele site */	
	margin: 0;
	padding-top: 0;
	padding-bottom: 12px;
	padding-left:0;
	padding-right:0;
}

h1.zichtbaar {
	padding-top: 10px;
	padding-bottom: 15px;

}
	
h1.verborgen {
/* Tbv H1 tag 
Zit wel in pginacode maar is niet zichtbaar op site 
(is alt-text van transparante pixel)
Code hieronder zorgt ervoor dat H1 geen ruimte boven en onder zich inneemt.
*/
	margin: 0;
	padding: 0;
}

a			{color: #000; text-decoration:none;}
a:visited	{color: #000; text-decoration: none;}
a:hover		{color: #333; text-decoration: none;}


/* Tekst over meerdere kolommen */
/* CSS-3 Specific styles */
div.kolommen  {
-moz-column-count: 2;
-moz-column-gap: 2em;
-moz-column-rule: 1px solid black;
 column-count: 2;
-webkit-column-count: 2;
-webkit-column-gap: 2em;
-webkit-column-rule: 1px solid black;
 text-align: justify;
}


/* MENU  */

#menu { /* the menu container */
	background-color: #cccccc;	
}

#menu ul { /* menu ul style */
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu li { /* horizontal menu */
	float: left;
	position: relative;
	list-style: none;
}

#menu a { /* the link style of menu */
	display: block;
/*	padding rondom items */
	padding-left: 20px;
	text-decoration: none;
}


 /*  This block of CSS is to deal with the sub-menu (nested menu).
 	 The CSS defines how the sub-menu and sub sub menu must be shown and positioned. */

 /* The sub menu is hidden by default and its position is placed right under the parent menu  */
#menu ul ul {
	display: none;
	position: absolute;
	float: left;
	top: 26px;
	left: 0;
	width: 180px;
	z-index: 99999;
}

/* The sub menu list element is given a minimum width  */
#menu ul ul li {
	min-width: 180px;
	list-style: none;
}

/* the third level menu (sub sub menu) is placed to the left side of its parent  */
#menu ul ul ul {
	left: 100%;
	top: 0;
}

#menu ul ul a {
	background: #ffcc00;
	line-height: 26px;
/*	padding: 10px; */
	width: 160px;
	height: auto;
}

/* Styles the anchor (a) tag when mouse over */
#menu li:hover > a,
#menu ul ul :hover > a {
/*	background: #ffcc33; */
/*	background-image: url(../images/graphics/menubalk-hover.png); */
	color: #333;
}

/*   The following part defines how and when the sub menu must be hidden and shown.
	 The sub menu is shown when mouse over and hidden when the mouse leaves.  */


/* When the mouse is over a list (li) element with unordered-list (ul) element inside then show it. The position when its shown is defined in the previous block of CSS*/
#menu ul li:hover > ul {
	display: block;
}


ul {
}

li {
	list-style-type: square;
	/*	list-style-image: url(../images/graphics/bullet.png); */
}

ul.werklijst {
	margin: 0;
	/*	vanwege afstand tot header op pag. 'werk' */
	padding-top: 4px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	line-height: 20pt;

}

.werklijst li {
	list-style-type:none;

}


/* TABEL  */

.tabel {
border: 0;
}

.tabel td {
}

.tabelkop td {
font-weight: bold;
}

/* IMG */

img {
border: 0;
}
