	
	
	
	/* remove the list style */
	#nav {
		margin:0 auto; 
		padding:0; 
		list-style:none;
		width:1060px;
		display: flex;
		align-items: center;
		justify-content: center;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			display:block; 
			height:35px;
			position:relative;
			z-index:100; 
			text-align:left;
			background-image:url(../images/bull_menu.png);
			background-position:right;
			background-repeat:no-repeat;
			
		}

		#nav li:nth-child(3)
		{
			background: none;
		}
		
		/* this is the parent menu */
		#nav li a {
			font-family: 'latoblack';
			font-size:14px;
			letter-spacing:2px;
			padding:8px 28px 0px 18px;
			display:block; 
			height:29px;
			text-decoration:none;
			color:#ffffff;
			text-transform:uppercase; 
			-webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; transition: all 0.3s ease-out;			
		}


		
		#nav li a:hover {
		-webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; transition: all 0.3s ease-out;
			color:#9eb349;
			
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px;
			padding:10px; 
			list-style:none;
			width:170px;
			background-image:url(../images/bgmenu.png);
			padding-top:10px;
			

		}
		
		#nav ul li {
			width:170px;  
			float:left; 
			text-align:left;
			height:30px;
			border-bottom:1px solid #939598;
			
		}
				
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			color:#191816;
			text-decoration:none;
			font-style:italic;
			font-family: 'latoitalic';
			font-size:15px;
			padding:6px 0px 8px 15px; 
			letter-spacing:0px;
			background:url(../images/menublokje.png) top left no-repeat;
			font-weight:normal;
			text-transform:none;
		}
		
		#nav ul a:hover {
			display:block; 
			color:#2e2521; /*#0088CC;*/
			text-decoration:underline;
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav ul {
			margin:0 0 0 -2px;
		}

