
	/* Put this inside a @media qualifier so Netscape 4 ignores it */
	 @media screen, print {
	
	ul.mktree { padding: 15px 20px 0px 20px; }

	/* Turn off list bullets */
	ul.mktree  li { list-style: none; } 
	
	/* Control how "spaced out" the tree is */
	 ul.mktree ul , ul.mktree li { margin-left:0px; padding-left:0px; }
	
	/* Provide space for our own "bullet" inside the LI */
	ul.mktree  li           .bullet { padding-left: 15px; }
	
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
	ul.mktree  li.liOpen    .bullet { cursor: pointer; background: url(../gfx/min_1.gif)  center left no-repeat; }
	ul.mktree  li.liClosed  .bullet { cursor: pointer; background: url(../gfx/plus_1.gif)   center left no-repeat; }

	ul.mktree  li li.liOpen    .bullet { cursor: pointer; background: url(../gfx/min_2.gif)  center left no-repeat; }
	ul.mktree  li li.liClosed  .bullet { cursor: pointer; background: url(../gfx/plus_2.gif)   center left no-repeat; }
	
	ul.mktree li li li.liBullet  .bullet { 
		cursor: default; 
		padding-left: 0px; 
		margin-left: 0px;
	}
	
	/* ul.mktree  li li.liBullet  .bullet { cursor: default; background: url(../gfx/bullet_oranje.gif) center left no-repeat; }*/

	/* Sublists are visible or not based on class of parent LI */
	ul.mktree  li.liOpen    ul { display: block; }
	ul.mktree  li.liClosed  ul { display: none; }
	/* Format menu items differently depending on what level of the tree they are in */
	
	ul.mktree {
		width: 480px;
		float: left;
		line-height: 30px;
		margin-left: 0px;
	}
	
	ul.mktree  li { 
		border-bottom: 1px solid #DAE3F3;
		font-weight: bold;
		color: #5C84BD;
	}
	
	ul.mktree  li ul{ 
		background-color: #F0F4FA;
	}
	
	ul.mktree  li ul li { /* subvragen */
		font-weight: normal;
		color: #0C479D;
		line-height: 20px;
		margin-left: 0px;
		padding: 4px 0px 5px 15px;		
	}
	
	ul.mktree li ul li ul {
		
		margin-left: 0px;
		padding-left: 0px;
	}
	
	
	ul.mktree  li ul li ul li{  /* antwoord */
		
		list-style-position: outside;
		font-weight: normal;
		color: #000000;
		padding-left: 15px;	
		margin-left: 0px;
		border: none;
	}
	

}