	
	
	
	/* remove the list style */
	#nav { 
		padding-left:0px; 
		list-style:none;
		width:175px;
		position:relative;
		margin-top:435px;
		margin-left:25px;
		float:left;
		
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			-webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; transition: all 0.3s ease-out;
			height:26px;
			position:relative;
			z-index:100; 
			text-align:left;
			margin-bottom:4px;
			background:url(../images/bullet.png) center left no-repeat;
			
		}
		
		/* this is the parent menu */
		#nav li a {
			font-size:13px;
			font-weight:700;
			letter-spacing:0px;
			padding:13px 15px 0px 17px;
			display:block; 
			height:16px;
			text-decoration:none;
			color:#333333;
			text-transform:uppercase; 
						
		}

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

		}
		
		#nav ul li {
			width:195px;  
			float:left; 
			text-align:left;
			height:30px;
		}
				
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			color:#ffffff;
			text-decoration:none;
			font-size:12px;
			padding:8px 0px 8px 27px; 
			letter-spacing:0px;
			background:url(../images/menublokje.png) top left no-repeat;
			text-transform:capitalize;
		}
		
		#nav ul a:hover {
			display:block; 
			color:#fff; /*#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;
		}

