/* By Timo Wentink */
/* This stylesheet sets advanced styling and layout (positioning, floating etcetera) for high resolution screens. */
/* It will be used by CSS-capable user agents that understand the mediatype "screen". */

/* some useful hacks:

Show only to IE/MAC:
*>html body element {}

Show only to IE/WIN/MAC
* html element {}

Show to modern browsers like Opera, Safari, Mozilla and Firefox, but also IE/MAC
html>body element {}
}

When an element visually disappears in IE/WIN, try to apply position: relative to the element, or apply a width or height to the element.
When unwanted white space is visible in IE/WIN, try to set a height of 1px for that element using a hack that only feeds to IE/WIN.

*/


html, 
body {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	background-color: #CACACA;
}

.skip {
	display: none;
}

/* #wrapper */

#wrapper {
	position: relative;
	width: 1000px;
	min-height: 100%;
	margin: 0 auto;
	background: #E8E8E8 url(../img/faux_columns.gif) repeat-y top left;
}

html>body #wrapper {
	height: auto;
	min-height: 100%;
}

/* emulate min-height for ie */
* html #wrapper {
	height: 100%;
}

/* #logo */

#logo {
	width: 800px;
	height: 306px;
	position: relative;
	left: 100px;
	top: 0;
	background: url(../img/header.jpg) no-repeat top left;
}
/* #content */

#content {
	position: relative;
	left: 370px;
	top: 0;
	width: 435px;
	margin: 1em 5em 0 0;
	padding-bottom: 1em;
	background: url(../img/content_bg.gif) repeat-x top left;
	background-position: 0 25px;
}

/* #producten */

#producten {
	float: right;
	text-align: left;
}

/* #menu */
#above_menu {
	position: absolute;
	top: 260px;
	left: 100px;
	height: 33px;
	width: 185px;
	text-align: right;
}

#menu {
	position: absolute;
	top: 340px;
	left: 100px;
	width: 185px;
	text-align: right;
	letter-spacing: 5px;
}

#menu h2 {
	display: none;
}

#menu ul,
#menu ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu ul li a {
	font-weight: bold;
	line-height: 1.7em;
	text-decoration: none;
	color: #D57096;
	display: block;
	padding: 0 10px 0 21px;
	border-bottom: 1px solid white;
}
/*
#page_home #mi_home a,
#page_nagels #mi_nagels a,
#page_haren #mi_haren a,
#page_producten #mi_producten a,
#page_contact #mi_het_contact a,
#menu ul li.active a:hover {
	color: #D57096;
	background-color: #E0E0E0;
}*/

#menu li.active a {
	background-color: #E0E0E0;
}


#page_home h1 {
	font-size: 175%;
}


#menu ul li a:hover {
	background-color: #EFEFEF;
}

/* fix ie/win whitespacebug */
* html #menu ul li a {
	height: 1px;
}

/* undo fix ie/win whitespacebug for ie/mac */
*>html #menu ul li a {
	height: auto;
}

/*clear both*/

.clearboth {
	clear: both;
}



