/* 
Deze css is voor alle pagina's
gebruik <link href="style.css" rel="stylesheet" type="text/css" /> in head
*/
*{margin:0; padding:0;} /*Marges op 0 zetten*/
body{
	background-color:#ffffef;
	color:#000000;
}
a{
	color:#000033;
}
a:hover{
	text-decoration:none;
	color:#006699;
}
img{
	border:1px #000000 solid;
}

/***Container bevat alles***/
#container{
	background-color:#ddccbb;
	margin:10px auto 0 auto;
	width:750px;
	position:relative;
}
/***Het gedeelte waar de banner komt***/
#boven{
	width:750px;
	height:150px;
	overflow:hidden;
}
#boven img{
	border:none;
}
/**link voor over navigatie te springen**/
#skipMenu{
	display:none;
}
/***De navigatie***/
#nav{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:12pt;
	width:180px;
	padding:1em 0 1em 0;
	margin:0;
	position:absolute;
	left:0;
	top:150px;
	overflow:visible;
}
#nav ul{
	list-style:none;
}
#nav #beelden{
	padding-left:10px;
}
#nav a{
	color:#000000;
	line-height:1.3em;
	padding-left:10px;
	text-decoration:none;
	display:block;
	width:180px;
}
#nav a:hover{
	background:url(img/menuStreep.png) no-repeat 0 center;
}
/**een kleine inspring voor de subnavigatie**/
#nav #subnav a{
	line-height:1.1em;
	padding-left:20px;
}

#nav #selected{
	background:url(img/menuStreep.png) no-repeat 0 center;
}


/***De inhoud***/
#inhoud{
	background-color:#ffffef;
	width:545px;
	min-height:500px;
	margin-left:auto;
	padding:1em 0px 2em 20px;
}
#inhoud p{
	margin-bottom:1em;
	/*text-align:justify;*/
}
#inhoud h1{
	margin-bottom:0.4em;
	margin-top:0.2em;
	font-family:Arial, Helvetica, sans-serif;
	word-spacing:1px;
	letter-spacing:1px;
}
#inhoud a img:hover{
	border:1px #000000 dashed;
}
.posL{
	float:left;
	margin: 15px 15px 10px 0;
}
.posR{
	float:right;
	margin: 15px 0 10px 15px;
}
/***THE END***/