/* ********************************************************************** general stuf */
html           { height:    100%; }
html, body     { min-height:100%; margin:0px; padding:0px; width:100%; background-color: #000; }
div, header, nav, article, footer, main { position: relative; } /* default for HTML5 tags */
img {border: 0px; vertical-align: middle; }

img[align='right'] { margin: 0 0    10px 10px;  } /* ipv LeftRightMarginFix */
img[align='left']  { margin: 0 10px 10px 0; }  /* ipv LeftRightMarginFix */

html { box-sizing: border-box; } /* force border-box model. Now width:300px is REALY 300px in all browsers. */
*, *:before, *:after {  box-sizing: inherit; }

img,                                     /* verklein afbeeldingen */
table { max-width: 100%; height: auto; } /* en tabellen als ze groter zijn dan de breedte van de content */

/* ********************************************************************** font styling */

div {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #CCC;
}

a:link    { color: #FFF; text-decoration: underline; }
a:visited { color: #FFF; text-decoration: none; }
a:hover   { color: #F00; text-decoration: underline; }
a:active  { color: #FFF; text-decoration: none; font-family: Verdana, Geneva, sans-serif; }

/* ************************************************************************* container */
#container{
	position:relative;
	width: 100%;
	max-width: 1000px;
	min-height: 100%;
	margin:0 auto;
/*	border: 1px solid green; */
}

#beeldtop {
	max-width: 70%;
}

#tekst {
	text-align: center;
	clear: left;
	max-width:300px;
	margin: 5%;
	width: 30%;
}

#naam{
	margin:8% 0 50% 0;
	float: right;
}

#logo {
	position:absolute;
	width:60%;
	max-width:700px;
	height:auto;
	right:0;
	top:0px;
}
#voettekst {
	position: absolute;
	bottom: 10px;
	clear: both;
	text-align: left;
	padding-left: 2%;
	font-size: 9px;
	font-style: normal;
	line-height: normal;
}

.clear { clear: both; }

