/************* algemeen ****************/

/* alle margins 0 */
* {
  margin: 0;
  padding: 0;
  }

/* geen borders bij image links */
a img {
  display:block;
  border: none;
  }
 
/* unordered list bullets binnen div houden */
ul {
  padding-left: 20px;
  }

/* ordered lists binnen div */     
ol {
  padding-left: 20px;
  }

/* firefox scrollbar altijd aan */
html {
  overflow-y: scroll;
  }    

/*********** /algemeen *****************/


/*********** plaatsing div's ***********/

/*body en centreren */    
body {
	margin-top: 30px;
	text-align: center; /*centreer div's voor IE*/
	background-color: #88aec2;/*9f9586; */
	}
	
/* container waarin alle div's komen ***/
div#container {
	width: 900px;
  margin: 0 auto;   /* align for good browsers */
	text-align: left; /* counter the body center */
  background-color: #ffffff;
  }

/*********** /plaatsing div's **********/


/*********** lang div ****************/
 
div#lang {
  float: right;
  width:670px;
 height: 20px;
  text-align: right;
  font-size: 12px;
  font-family: verdana, sans-serif;
  color:#9f9586;

border:none
  }

/*********** /footer div ***************/

/*********** header div ****************/

div#header {
  width: 888px;
  height: 110px;
  background-image: url(images/header6.jpg); 
  border-right: solid #766f63 2px;
  border-left: solid white 10px;
  }

/*********** /header div ***************/ 

	

/*********** menu div ******************/

/* menu */
div#menu {
  padding: 0px;
  width: 150px;
  border-style: solid;
  border-color: white; 
  border-width: 10px 0px 0px 10px;
  float: left;
  clear: left;
  text-align: left;
  font-size: 11px;
  line-height: 15px;
  font-family: verdana, sans-serif;
  background-color: #e1efff;
  }

/* menu links */
div#menu a { 
	text-decoration: none;
	color: #020C23;
	}
	
/* menu visited links */
div#menu a:visited {
	  color:#020C23;
	}

/* menu hover links */
div#menu a:hover {
	color: #475063;
	text-decoration: bold;
	}

/* menu active links */
div#menu a:active {
  color:#475063;
	}

/* menu bold items */
div#menu b {
  font-size: 12px;
  font-family: Georgia, serif;
  font-style: italic;
  letter-spacing: 1px;
  color: #133e64;
  
  }

/*********** /menu div *****************/


/*********** main div ******************/

/* opmaak main */
div#main {
  width: 678px;
  float:left;
  padding: 30px 30px 300px 30px; 
  word-wrap: break-word ;
  overflow: visible;
  font-size: 13px;
  font-family: verdana, sans-serif;
  color: #000000;
  background-color: #ffffff; 
  	  border-style: solid;
  border-color: #766f63; 
  border-width: 0px 2px 0px 0px;
  }

/* main tabellen */
div#main table {
    border-collapse: collapse;
    }

	
/*main donkere vlakken*/    

div#main table.segmentheader{
    background-color:#dfd4c3;
    width:100%;
    text-align:center;
	border-style: solid;
  border-color: #c6bcad; 
  border-width: 1px 1px 1px 1px;
   }
   
     
div#main table.segment{
    border-collapse: collapse;
    width:100%;
    background-color:#f4f1ee;

	border-style: solid;
  border-color: #ddd2c1; 
  border-width: 0px 1px 1px 1px;
    }
	
	    
div#main table.segment td{
    padding: 20px;
    }

	
div#main table.navi{
    background-color:#f4f1ee;
    width:100%;
	height: 30px;
    text-align:center;
	border-style: solid;
  border-color: #ddd2c1; 
  border-width: 1px 1px 1px 1px;

   }
       
/* main tabellen class met border */


div#main table.border td {
  border: 1px solid #ddd2c1;
    background-color:#f4f1ee;
  padding: 5px;
  }
  
div#main table.border th {
  border: 1px solid #c6bcad;
    background-color:#dfd4c3;
  padding: 0px 10px 0px 10px;
  }
     
/* main cellen */
div#main td {
	padding: 3px;
	border: none;
	font-size: 13px;
	font-family: verdana, sans-serif; /* IE inherit geen opmaak uit main */
  }
  
/* main boldface tekst */
div#main b{
	font-size: 12px;
	font-family: verdana, sans-serif;
	color: #9f9586;
	}

/* main headers 1*/
div#main h1 {
  font-size: 24px;
  text-align: center;
  line-height: 2;
  letter-spacing: 2px;  
  text-transform: capitalize;
  font-family: Georgia, serif;
  font-style: italic;
  color: #717b84;
  }
    
/* main headers 2*/  
div#main h2 {
  font-size: 18px;
  text-align: center;
  line-height: 3;
  letter-spacing: 1px;             
  font-family: Georgia, serif;
  font-style: italic;
  text-transform: capitalize;
  color: #717b84;
  }
    
/* main headers3 */
div#main h3 {
  font-size: 12px;
  line-height: 3;
  letter-spacing: 1px;
  font-family: Georgia, serif;
  font-style: italic;
  color: #795017; /* #415034; */
  }
    
/* main links */
div#main a { 
	color: #000000;
	}

/* main visited links */
div#main a:visited {
	color: gray;
	}

/* main hover links */
div#main a:hover {
	color: gray;
	}

/* main active links */
div#main a:active {
	color: #133e64;
	}
	
/*********** /main div *****************/
 

/*********** footer div ****************/
 
div#footer {
  float: right;
  width: 900px;
  height: 100px;
  text-align: right;
  font-size: 9px;
  font-family: verdana, sans-serif;
  color:#555e4d;
	background-color: #88aec2; 
	  border-style: solid;
  border-color: #766f63; 
  border-width: 2px 0px 0px 0px;
  }

/*********** /footer div ***************/



