/* CSS Document */
body {
	margin:0;
	padding:0;
	height:100%; /* this is the key! */
	height: 100%;
	background-color: #FFFFFF;
	color:#211f1e;
	font-size: 10px;
	text-align:center;
	font-family: Arial, sans-serif;
}

p {
	margin: 5px;
}

#left {
	position:absolute;
	left:0;
	top:0;
	padding:0;
	width:50%;
	height:100%; /* works only if parent container is assigned a height value */
	color:#333;
	background:#fff;
	text-align:left;
}

#right {
	position:absolute;
	right:0;
	top:0;
	padding:0;
	width:50%;
	height:100%; /* works only if parent container is assigned a height value */
	color:#333;
	background:#211f1e;
	text-align:left;
}

#interior {
	margin-left: auto;
	padding-right: 35px;
	width: 320px;
	text-align:right;
}

#furniture {
	width: 320px;
	padding-left: 35px;
}

html {
	height: 100%;
	overflow: hidden;
}

#myContent {
	height: 100%;
	padding-top: 25px;
}

.text_wit {
	color: #fff;
}

.text_zwart {
	color: #211f1e;
}

/**/
a.zwart {
	color:#211f1e;
	text-decoration: none;
}

a.zwart:link {
	color:#211f1e;
	text-decoration: none;
}

a.zwart:hover  {
	color:#fff;
	text-decoration: none;
	background-color: #211f1e;
}

/**/
a.grijs {
	color:#676767;
	text-decoration: none;
}

a.grijs:link {
	color:#676767;
	text-decoration: none;
}

a.grijs2 {
	color:#B7B7B7;
	text-decoration: none;
}

a.grijs2:link {
	color:#B7B7B7;
	text-decoration: none;
}


/**/
a.wit {
	color:#fff;
	text-decoration: none;
}

a.wit:link {
	color:#fff;
	text-decoration: none;
}

a.wit:hover  {
	color:#211f1e;
	text-decoration: none;
	background-color: #fff;
}

