/* By www.meercommunicatie.nl */
/* 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: #840C49 url(../img/branding/background.jpg) repeat-x 0 125px;
}

.heading {
	font-weight: bold;
	font-size: 125%;
}

/* z-indexes */

#address {
	z-index: 1000;
}

#logo {
	z-index: 1500;
}

#menu {
	z-index: 1000;
}

/* Hide elements that are not needed on high resolution screens: */

.skip {
	display: none;
}

/* #wrapper */

#wrapper {
	position: relative;
	left: 50%;
	width: 750px;
	height: 100%;
	margin: 0 -375px;
}

/* #logo */

#logo {
	position: absolute;
	top: 29px;
	left: 18px;
}

/* #content */

#content {
	position: relative;
	background: white url(../img/branding/secondarycontent_bg.gif) repeat-y right;
	height: 100%;
}

html>body #content {
	height: auto;
	min-height: 100%;
}


#breadcrumb {
	position: absolute;
	bottom: 5px;
	left: 25px;
}


#primaryContent {
	padding: 145px 250px 25px 25px;
}

#secondaryContent {
	font-size: 80%;
	color: white;
	position: absolute;
	top: 0;
	right: 0;
	width: 229px;
	padding-top: 125px;
}

#secondaryContent a {
	color: white;
}

#secondaryContent .wrapper {
	padding: 15px 5px 15px 13px;
}

#secondaryContent .wrapper img {
	border: 1px solid white;
}

#info {
	background-color: #D16D0F;
}

/* #menu */

#menu {
 	font-size: 80%;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
	width: 750px;
	height: 125px;
	background-color: #840C49;
	border-bottom: 1px solid black;
}

#menu h2 {
	display: none;
}

#menu ul {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 750px;
	background-color: #840C49;
}

#menu ul,
#menu ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* for IE/WIN, fix disappearing elements */
* html #menu ul * {
	position: relative;
}

/* tab styling */

#menu ul li {
	top: 1px;
	float: left;
	margin: 0 2px 0 0;
}

#menu ul li a {
	line-height: 25px;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	color: white;
	display: block;
	margin: 0 6px;
	padding: 0 1px;
	background-color: #D16D0F;
	border-top: 1px solid white;
}

/* for IE/WIN, fix disappearing elements */
* html #menu ul li a {
	width: 1px;
}

#menu ul li span {
	display: block;
	background: url(../img/branding/tab_corner_left.gif) no-repeat top left;
}

#menu ul li span span {
	background: url(../img/branding/tab_corner_right.gif) no-repeat top right;
}

/* tab styling when active */

#menu ul li.active span {
	display: block;
	background: url(../img/branding/tab_corner_active_left.gif) no-repeat top left;
}

#menu ul li.active span span {
	background: url(../img/branding/tab_corner_active_right.gif) no-repeat top right;
}

#menu ul li.active {
	top: 2px;
}


#menu ul li.active a {
	color: #177385;
	background-color: white;
}


/* different styling for #mi_informatie */

#menu ul li#mi_informatie {
	float: right;
	margin-right: 0;
}

#menu ul li#mi_informatie span {
	background-image: url(../img/branding/tab_corner_special_left.gif);
}

#menu ul li#mi_informatie span span {
	background-image: url(../img/branding/tab_corner_special_right.gif);
}

#menu ul li#mi_informatie span span a {
	background-color: #6C0037;
}


/* submenu styling */

#menu ul li ul {
	display: none;
	font-size: 125%;
	position: absolute;
	bottom: auto;
	left: auto;
	width: 16em;
	background-color: transparent;
	border-top: 1px solid black;
	border-left: 1px solid #177385;
	border-right: 1px solid #177385;
}

/* hover effect */

#menu ul li:hover ul,
#menu ul li.hover ul {
	display: block;
}

#menu ul li ul * {
	position: static;
}


#menu ul li ul li {
	float: none;
	margin: 0;
	top: 0;
}

#menu ul li ul li a {
	text-transform: none;
	margin: 0;
	padding: 0 12px;
	width: auto;
	border: none;
	border-bottom: 1px solid #177385;
	color: #840C49;
	background-color: white;
}

#menu ul li ul li.active a {
	color: #840C49;
}


/* get rid of unwanted whitespace in IE/WIN*/
* html #menu ul li ul li {
	float: left;
}


* html #menu ul li ul li a {
	height: 1px;
}


/* #address */

#address {
	font-size: 80%;
	line-height: 16px;
	position: absolute;
	top: 33px;
	right: 5px;
}

#address p {
	float: left;
	margin-left: 25px;
}

#address,
#address a {
	color: white;
}

/* #visual_effect, the green border at the top of the page */

#visual_effect {
	font-size: 1px;
	z-index: 10000;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 12px;
	background-color: #177385;
}

