/* CSS expressions for fixed-position divs in IE 6 (the "* html" makes IE 7 ignore these rules [and Firefox/Safari as well],
	since IE 7 standards-compliant mode (which is our doctype) supports normal position:fixed fine, just like Firefox & Safari) */
/* From http://www.gunlaug.no/contents/wd_additions_15.html */

* html,* html body {
	background: #fff url(foo) fixed;
}
* html #header {
	position: absolute;
	top: expression((eval(document.compatMode && document.compatMode == 'CSS1Compat') ?
			documentElement.scrollTop : document.body.scrollTop) + 0);
	width: expression(((bodyWidth = eval(document.compatMode && document.compatMode == 'CSS1Compat') ?
		documentElement.clientWidth : document.body.clientWidth) > 990) ? bodyWidth : 990);
}
* html #footer {
	position: absolute;
	top: expression(eval(document.compatMode && document.compatMode == 'CSS1Compat') ?
		documentElement.scrollTop + (documentElement.clientHeight - this.clientHeight) :
		document.body.scrollTop + (document.body.clientHeight - this.clientHeight));
	width: expression(((bodyWidth = eval(document.compatMode && document.compatMode == 'CSS1Compat') ?
		documentElement.clientWidth : document.body.clientWidth) > 990) ? bodyWidth : 990);
}


* html #navigation {
	position: absolute;
	top: expression(eval(document.compatMode && document.compatMode == 'CSS1Compat') ?
		documentElement.scrollTop + (documentElement.clientHeight - this.clientHeight) :
		document.body.scrollTop + (document.body.clientHeight - this.clientHeight));
	width: expression(((bodyWidth = eval(document.compatMode && document.compatMode == 'CSS1Compat') ?
		documentElement.clientWidth : document.body.clientWidth) > 990) ? bodyWidth : 990);
}


::-moz-selection{
	background:#0000FF;
	color:#FFFFFF;
}

::selection {
	background:#0000FF;
	color:#FFFFFF;
}




body {
	background: #FFF;
	height: 100%;
	/*width: 100%;*/
	margin: 0px;
	text-align: center;
	font-family: Courier, Tahoma, Monaco, Monotype;
	font-size: 12px;
	line-height: 11pt;
	letter-spacing: 0px;
}
	 


a {
	color: #000;
	text-decoration: none;
  }

a:hover {
    color: #00F;
  }

a:active {
	color: #00F;
	
}


a img {
	border: 0px;
}



/*-----------------PLAYER----------------------------------------------------------------*/



/* styling of the player's container. */
a.myPlayer {
	display:block;
	width: 512px;
	height: 300px; 
	text-align:center;
	float:left;
	border: 0px solid #000000;
	margin-left: 10%;
	margin-right: 30%;
}

/* play button */
a.myPlayer img {
	margin-top:100px;
	border: 0px;
}

/* when container is hovered we alter the border color */
a.myPlayer:hover {
	border: 0px solid #00F;
	
}













/*-----------------NAVIGATIE----------------------------------------------------------------*/

#header {
	position: fixed;
	top: 0px;
    left: 0px;
	width: 1024px;
	height: 30px;
	text-align: left;
	float: left;
	min-width: 700px;
	z-index: 4;
	//*background-color:#0FF;*//
}



#footer {
	position: fixed;
	bottom: 0px;
	left: 0px;
	height: 52px;
	width: 1024px;
	text-align: left;
	min-width: 700px;
	z-index: 4;
	//*background-color:#00F;*//
}




#navigation {
	position: fixed;
	left: 9px;
	height: 400px;
	width: 100px;
	text-align: left;
	min-width: 250px;
	z-index: 1;
	//*background-color:#0FF;*//
}





/*-----------------INFOBOXEN----------------------------------------------------------------*/

.infobox {
	width: 600px;
	height: 780px;
    text-align: center;
	position: relative; top: 5px; left: 80px; z-index: 2;
	//*background-color:#EEE;*//
	
}

.infobox .video {
	width: 600px;
	color: #000;
	//*border: 1px solid #00F;*//
}

.infobox .description {
	width: 335px;
	text-align: left;
	float: left; 
	position: relative; top: 19px; left: 318px; z-index: 2;
	margin-top: 11px;
	//*border: 1px solid #00F;*//
}


