/* 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: #dd250d;
}

/* Voor IE/WIN; bekeken resolutie van 800*600, de afbeelding aan de rechterkant valt weg */

* html {
	overflow-x: hidden;
}

/* z-indexes zijn aantallen waar de positie in lagen bekeken weergegeven worden*/

#visual_effect {
	z-index: 10;
}

#content,
#menu {
	z-index: 100;
}

#logo,
#address {
	z-index: 1000;
}

/* Hide elements that are not needed on high resolution screens: */

.skip {
	display: none;
}

/* #wrapper */

#wrapper {
	position: relative;
	margin: 0 auto;
	background: #F2F4EE url(../img/visual.jpg) no-repeat top right;
	width: 995px;
	min-height: 100%;
}

/* for IE/WIN */
* html #wrapper {
	height: 100%;
}

html#pg_informatie #wrapper {
	background-image: url(../img/driepijlen.jpg);
}

html#pg_sponsoren #wrapper {
	background-image: url(../img/tops.jpg);
}

html#pg_locatie #wrapper {
	background-image: url(../img/verticaal.jpg);
}

html#pg_gastenboek #wrapper {
	background-image: url(../img/pijlenstaand.jpg);
}

html#pg_organisatie #wrapper {
	background-image: url(../img/pijlstaan.jpg);
}

html#pg_opgave #wrapper {
	background-image: url(../img/flight.jpg);
}

html#pg_pers #wrapper {
	background-image: url(../img/180.jpg);
}
/* for browsers with better CSS support that might read the preceding rule
html>body #wrapper {
	height: auto;
	height: 100%;
}
*/

/* #logo */

#logo {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 749px;
	height: 125px;
	margin-right: 246px;
	background-color: #F2F4EE;
}

#logo img {
	margin: 0 0 0 0;
}

/* #content */

#content {
	position: relative;
	height: 100%;
	margin-right: 246px;
	background-color: white;
}

#content #content_wrapper {
 	padding: 180px 50px 64px 50px;
}

h1,
h2 {
	margin-right: -25px;
	margin-left: -25px;
}

/* #menu */

#menu {
background-image: url(../img/bruinmenu.jpg);
background-repeat: no-repeat;
	position: absolute;
	top: 125px;
	left: 0;
	width: 100%;
    height: 33px;
}

#menu h2 {
	display: none;
}

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

#menu ul {
	/*background-color: #588B48;*/
	margin-right: 246px;
	padding-left: 18px;
}

/* clear float without source markup */
#menu ul:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* clear float for IE/WIN */
* html #menu ul {
	height: 1px;
}

/* undo this for IE/MAC */
html>body #menu ul {
	height: auto;
}


#menu ul li {
	float: left;
}

#menu ul li a {
	font-weight: bold;
	line-height: 24px;
	padding-top: 4px;
	text-decoration: none;
	display: block;
	margin: 0 8px;
	color: white;
}

#menu ul li a:hover {
	border-bottom: 5px solid #ffffff;
}

/* active menu-items */

#pg_activiteiten #menu #mi_activiteiten a,
#pg_informatie #menu #mi_informatie a,
#pg_opgave #menu #mi_opgave a,
#pg_sponsoren #menu #mi_sponsoren a,
#pg_locatie #menu #mi_locatie a,
#pg_gastenboek #menu #mi_gastenboek a,
#pg_organisatie #menu #mi_organisatie a,
#pg_links #menu #mi_links a,
#pg_pers #menu #mi_pers a,{
	border-bottom: 5px solid #ffffff;
}

/* #address */

#address {
	font-size: 85%;
	line-height: 1.1;
	position: absolute;
	top: 21px;
	right: 270px;
}

#address p {
	float: left;
	margin-left: 25px;
}

#address,
#address a {
	color: #588B48;
}

/* #visual_effect */
/* this element is used to achieve the effect of a white background for the content */
/* it was needed because height: 100% does not work in most modern browsers */
html>body #visual_effect {
	height: 100%;
	width: 749px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: white;
}


