
     
.table {
  display: table;
  /*centreren van menu*/
  /*margin: 0 auto;*/
}

/* Menu */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	####	Header Menu #####
	#######################

	Horizontal Drop-Down Menu based off :
	http://www.tanfa.co.uk/css/examples/menu/tutorial-h.asp*/

#navcontainer {
	display:block;
	clear:both;
	padding:0px;
	z-index:100;
	position:relative;
	height: 75px;
	width: 1100px;
	color: #fff;
	margin: 0 auto;
}

/* Remove List Formattings
~~~~~~~~~~~~~~~~~~~~  */
 ul.menu, li.menu {
	list-style-type: none;
	list-style-image: none;
	margin: 0px;
}

/* Header menu */
#header_menu {position: absolute;}
#header_menu li {line-height: normal;}
ul#header_menu  {
    z-index: 10; 
    clear: both;
}

#nav {
  border: 0 none;
  float: left;
  height: 36px;
  position: relative;
  width: 100%;
}
#nav ul {
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
	width: auto;
	/*
	(Disappearing List-Background)
	http://www.positioniseverything.net/explorer/ie-listbug.html
	*/
	position: relative; /* Fix the Stupid IE6 Bug */
}

/* Root Level Link Formatting */
#nav ul li {
    color: #FFFFFF;
    float: left;
	font-family: 'Lato', sans-serif;    font-weight: 400;
    font-size: 24px;
    
    text-align: center;
}

#nav ul li a {
  border-right: 1px solid #ffffff;
  color: #ffffff;
  display: block;
  font-family: "Open Sans",sans-serif;
  font-size: 17px;
  font-weight: normal;
  height: 36px;
  letter-spacing: 1px;
  outline: medium none;
  padding: 0 15px;
  text-decoration: none;

}


@media screen and (max-width: 950px){
#nav ul li a {
  font-size: 16px;
}
	
}

@media screen and (max-width: 900px){
#nav ul li a {
  font-size: 14px;
}
	
}

/* Root Level link hover */
#nav ul li a:hover {
    color: #ffffff;
   background: url("images/curr.png") no-repeat scroll center bottom;
}

#nav ul li a.menu-current {
    color: #ffffff;
    background: url("images/curr.png") no-repeat scroll center bottom;
}

#nav a.menu-parent {
    color: #ffffff;    
    background: url("images/curr.png") no-repeat scroll center bottom;
}

#nav a.menu-parent:hover {
    color: #ffffff;    
    background: url("images/curr.png") no-repeat scroll center bottom;
}
#nav a.menu-last {

}


/* 2nd Child menu */
#nav .menu li ul {
    border: medium none;
    background:#b0bfd2;
    color: #ffffff;
    display: none;
	font-family: 'Lato', sans-serif;    height: auto;
    letter-spacing: 0.02em;
    outline: medium none;
    position: absolute;
    text-decoration: none;
    width: 300px;
    z-index: 9999;
}
#nav .menu li ul li {
  border: medium none;
  font-weight: bold;
  height: 23px;
  padding: 10px 0;
  text-align: left;
  width: 300px;
  background-image:none;
}
#nav .menu li ul li a {
  border: medium none;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  height: 18px;
  line-height: 15px;
  padding: 15px 15px 10px;
  background-image:none;
}
#nav .menu li ul .ultop {
    height: 0;
    padding:0;
    margin:0;

}
#nav .menu li ul .ulbot {
  height: 24px;
  margin: 0;
  padding: 0;
}

/* 3 up Child menu  */
#nav .menu li ul li ul {
    margin: -1px 0 0 -1px;
    z-index: 9999;
    
}
#nav .menu li ul li ul .ultop {
    height: 0;
}

/* 2nd Child link hover */

#nav .menu li ul a:hover {
    color: #ffffff; 
    background: #1e2c88;
}

#nav .menu li ul a.menu-parent {
    color: #ffffff;
    background: #1e2c88;
}
#nav .menu li ul a.menu-parent:hover {
    color: #ffffff;
    background: #1e2c88;
}
#nav .menu li ul a.menu-current {
    color: #ffffff;

}

/* Show and hide */
#nav .menu li:hover ul, #nav .menu li a:focus ul, #nav .menu li.subMenu ul {
    display: block;
}
#nav .menu li ul ul {
    display: none;
}
#nav .menu li:hover ul ul, #nav .menu li.subMenu ul ul {
    display: none;
}
#nav .menu li:hover > ul, #nav .menu li li:hover > ul, #nav .menu li.subMenu > ul, #nav .menu li li.subMenu > ul {
    display: block;
    z-index: 1000;
}

/* Positioning the Pop-out Drops */
#nav li {
    position: relative;
}
#nav ul ul ul {
    left: 100%;
    position: absolute;
    top: 1px;
}
#nav li:hover {
    white-space: normal;
    z-index: 10000;
}

 