/* #wrapper: Instellingen voor breedte en hoogte van de site. */

#wrapper {
	height: 100%;
	min-height: 100%;
	text-align: left;
}

#wrapper,
#width {
  /* max-width hack voor IE omdat deze de valid css property niet begrijpt. */
  width: expression(document.body.clientWidth > 1024 ? "1024px" : "96%");  
  max-width: 1024px;
  margin: 0 auto;
}

#wrapper[id],
#width[id] {
  width: 96%;
  height: auto;
}

/* #header: Plaatsing van de header-onderdelen. */

#header {
  position: relative;
  height: 200px;
}

/* Plaatsing van de header-images. */

#header img.right {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
}

#header img.left {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

/* #title: Plaatsing van de titel en subtitel. */

#header #title {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 120px;
  padding: 5px;
  text-align: right;
}

#header h1 {
	margin: 0;
	padding: 0;
	letter-spacing: normal;
	color: #3200fe;
	font-size: 8.5em;
	font-weight: 400;
	line-height: 100%;
	font-family: "Staccato222 BT", Mistral;
}

#header h2 {
	position: absolute;
	top: 110px;
	right: 15px;
	margin: 0;
	padding: 0;
	text-transform: none;
	color: #3200fe;
	font-family: "Staccato222 BT", Mistral;
	font-size: 2.8em;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 115%;
}

/* #topnav: Geeft mogelijkheid voor topmenu en crosslink naar andere talen. */

#topnav { 
  float: left;
  width: 100%;
  clear: both;  
}

#topnav ul {
  margin: 0;
  padding: 0;
}

#topnav li {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}

#topnav li a {
	float: left;
	text-decoration: none;
	text-transform: lowercase;
	color: #EE0000;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.6em;
	font-weight: 400;
	margin-top: 0;
	margin-right: 2px;
	margin-bottom: 0;
	margin-left: 2px;
	padding-top: 5px;
	padding-right: 0.4em;
	padding-bottom: 5px;
	padding-left: 0.4em;
}

#topnav li a:hover,
#topnav li a.active {
	color: #D6CCFF;
}

#topnav li a.last {
  margin-right: 0;
}

/**************************************************************
   .sideMenu: The side bar menu
 **************************************************************/

ul.leftnav {
  margin: 0;
  padding: 0;
}

.leftnav li {
	display: inline;
	/* Needed since IE fails when you give it list-style: none; */  
  list-style-image: url(foo.gif);
	font-family: "trebuchet ms", serif;
	font-size: 1.3em;
	font-weight: 500;
}

.leftnav li a {
  display: block;
  margin: 0.2em 0;
  padding: 3px 5px;    
  
  text-decoration: none;
  color: #FFF;
} 

.leftnav li a:hover {
	color: #3200FE;
	background: #7FBA00;
}

/* Active menu item */
.leftnav li.active {
	display: block;
	padding: 5px;
	color: #007600;
	background-color: #D4E700;
}

/* Submenu of active menu item */
.leftnav li.active ul {
  margin: 0;
  padding: 0;
}

.leftnav li.active ul li a {
	padding-left: 35px;
	color: #3200FE;
	background-image: url(../images/bullets/bullet_w_small.png);
	background-repeat: no-repeat;
	background-position: 10px 50%;
	font-family: verdana, arial, sans-serif;
	font-size: 0.55em;
	font-weight: 400;
}

.leftnav li.active ul li a:hover {
	color: #FEFE00;
	background-color: #7FBA00;
	background-image: url(../images/bullets/bullet_y.png);
	background-repeat: no-repeat;
	background-position: 10px 50%;
}



/**************************************************************
   #page: Holds the main page content.
 **************************************************************/

#content {
  float: left;
  width: 100%;
  clear: both;
  
  padding-bottom: 4em;
}




/**************************************************************
   #footer: The page footer - will stick to the bottom if not
            enough content.
 **************************************************************/

#footer {
	float: left;
	width: 100%;
	clear: both;
	margin-top: -3.8em;
	background-color: #a9d100;
	background-image: url(../images/backgrounds/footer_yg_fefe00_007600.png);
	background-repeat: repeat-x;
	background-position: left top;
}

/* Sets the width of the footer content */
#footer #width {
	position: relative;
	z-index: 2;
	font-size: 0.85em;
	padding-top: 30px;
	color: #007600;
}

#footer a:hover,
#footer a.active {
	color: #5B33FE;
}


/* Hier worden 10 voorgedefinieerde kolombreedtes als class weergegeven.
   Samen met floatclasses wordt de breedte en plaatsing bepaald. */

.width100 {
  width: 100%;
}

.width80 {
  width: 79.7%;
}

.width75 {
  width: 74.7%;
}

.width70 {
  width: 69.7%;
}

.width66 {
  width: 65.7%;
}

.width50 {
  width: 49.7%;
}

.width37 {
  width: 37.2%;
}

.width35 {
  width: 34.7%;
}

.width33 {
  width: 33%;
}

.width30 {
  width: 29.7%;
}

.width25 {
  width: 24.7%;
}

.width20 {
  width: 19.7%;
}


/* Floatclasses en Alignclasses voor uitlijnen van div en tekst */

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.alignleft {
  text-align: left;
}

.alignright {
  text-align: right;
}

.aligncenter {
	text-align: center;
}

/**************************************************************
   Generic display classes
 **************************************************************/

.clear {
  clear: both;
}

.block {
  display: block;
}

.small {
  font-size: 0.8em;
}

.green {
  color: #A1FF45;
}

.red {
  color: #EA1B00;
}

.orange {
  color: #F85A3E;
}

.grey {
  color: #666;
}

.grey a {
  color: #999;
}

.grey a:hover {
  color: #EEE;
}

.space {
  margin-left:5px;
}

.column_gradient {
	margin-bottom: 2em;
	background-color: #007600;
	background-image: url(../images/backgrounds/gradient_gb_007600_3200fe.jpg);
	background-repeat: repeat-x;
	background-position: left bottom;
}

.column_color {
	margin-bottom: 2em;
	background-color: #2A8D00;
	/* background-image: url(../images/backgrounds/color_478fdf.png);
	background-repeat: repeat-x;
	background-position: left bottom; */
}

.slideshowFlash {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 10px;
	padding-top: 15px;
	padding-bottom: 20px;
}
