* {
	margin: 0;
	padding: 0;
}
html,body {
	height: 100%; /* HEEL BELANGRIJK! */
	background: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#5A5A5A;
}

a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #5A5A5A;
	text-decoration: none;
}

a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #5A5A5A;
	text-decoration: none;
}

a:hover {

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #333333;
	text-decoration: underline;
}

a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #5A5A5A;
	text-decoration: none;
}

.clear {
	clear: both; /* deze class gaan we gebruiken om de twee floats #left en #right te clearen. */
}

#container {
	min-height: 100%;
	width: 750px;
	margin: 0 auto; /* deze div centreren */
	background: #FFFFFF; /* Faux column */
	position: relative; /* De footer wordt absoluut gepositioneerd, relatief aan #container. Dus position: relative moet dan hier toegevoegd worden */
	background:url(http://www.activefysio.nl/graphics/bg.gif) left top repeat-y;
}

/* 	
	IE hack. IE kent geen min-height, maar gedraagt zich bij height: hetzelfde. 
	* html > bla is een hack die IE snapt en daarom ook de waarde van overneemt.
	Bedankt Kevin! -> http://ep2.nl/post/48822/#pid48822 
*/
* html > #container {
	height: 100%;
}

#header {
	height: 155px;
	background: #FFFFFF;
}
#navbar {
	height: 30px;
	line-height: 30px;	/* height, line-height en vertical-align: middle zorgen ervoor dat de inhoud van deze div altijd verticaal gecentreerd wordt. */
	vertical-align: middle;
	background: green;
}

#left {
	width: 550px;
	float: left;
	height: auto;
	margin-bottom: 53px; /* 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 {
	width: 200px;
	float: left;
	/*background: #CCCCCC;*/
	height: auto;
	margin-bottom: 53px; /* dezelfde hoogte als de hoogte van #footer, anders zal de tekst in deze div onderaan achter de footer vallen omdat #footer absoluut gepositioneerd is */
}

#footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 750px;
	height: 53px;
	line-height: 18px;
	/*vertical-align: top;*/
	text-align:center;
	background: #FFFFFF;
}

#faux {
	background: #FFF;
	height: 1%;
	margin: 0 auto;
	width: 750px;
}

.corner {
	float:right;
	width: 18px;
}

.newstitle {
	float:left; 
	margin:2px 0px 0px 5px; 
	width: 152px; 
	font-weight:bold;
}

.newsletter {
	float:left; width:180px; height:100px; margin:15px 0px 0px 10px; background-color:#5A5A5A; color:#FFFFFF;
}

.inhoud {
	float:left;
	margin-right:5px;
	width: 370px;
	height: 100%;
}

.inhoud ul {
	margin:20px;
}

.fotos {
	float:left;
	/*margin: 0px 10px 0px 20px;*/
	width: 170px;
	height: 100%;
}

.foto {
	float:left;
	margin-bottom: 10px;
	margin-left: 20px;
	border:solid 2px #CCCCCC;
	cursor:pointer;
}

.Titel
{
	font-weight: bold;
	font-size: 15px;
	color: #5A5A5A;
}

.Normaal
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	color: #5A5A5A;	
}