/* De algemene CSS stylesheet */

/* HTML tags */

* {
	margin:0;
	padding:0;	
}

HTML, BODY {
	width: 100%;
	height: 100%;
}


BODY {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height:18px;
	color:#333333;	
	background:url(../images/bg.png);
	background-repeat:repeat-y;
	background-position:center;
	background-color:#eee;
	
}



/* Container */

#container {
	width:1000px;
	margin:0px auto 0px auto;
	height:100%;
	min-height:100%;
	background-color:#FFFFFF;	
}

HTML > BODY #container {
	height:auto;
}

