/* Div Positioning */

#ad7leaderboard {
	margin: 0 auto;
}

#container {
	position: relative;
	margin: 0 auto;
	width: 900px;
	float:none;
	}
	
	#content {
		position: relative;
		float:left;
		width: 500px;
		/* height: 400px; */
		top: 50px; /* same as height of div: 'top' */
		left: 250px; /* move this div to the right of div: 'navigation' */
	}
	
	#navigation {
		position: relative;
		float:left;
		width: 230px;
		/*height: 400px;*/
		top: 50px; /* same as height of div: 'top' */
		left: -500px; /* move this div to the left of div: 'content' */
	}
	
	#adspace {
		position: absolute;
		right: 0px;
		width: 130px;
		height: 600px;
		top: 50px; /* same as height of div: 'top' */
		/*width: 120px; tijdelijk voor ING skyscraper
		right: 10px;*/
	}
	
	#top {
		position: absolute;
		width: 750px;
		height: 50px;
		top: 0px; /* move this div to top within div: 'container' */
		left: 0px;
	}
	
	#bot {
		position: relative;
		float:none;
		top: 50px; /* same as height of div: 'top' */
		left:0px;
		width: 750px;
		height: 26px;
		clear:left;
	}

