
	
	ul,li {
		display:block;
		margin:0;
		padding:0;
		border:0;
	}

	ul {
		width:200px;
		border:1px solid #9d9da1;
		background:#000000;		/* couleur de fond des menus */
		list-style:none;
	}

	li {
		position:relative;
		padding:1px;
		padding-left:5px;
		background:url("#") no-repeat;		/* dossiers sans sous-dossiers */
		z-index:9;
	}
		li.folder	{ background:url("#") no-repeat; }	/* dossiers avec sous-dossiers */	
		li.folder ul {
			position:absolute;
			left:120px; /* IE */
			top:15px;
		}		
			li.folder>ul { left:20px; } /* others */
	a {
		padding:2px;
		border:0px solid white;
		text-decoration:none;
		color:grey;
		font-weight:bold;
		width:100%; /* IE */
	}
		li>a { width:auto; display:block} /* others */

	li a.submenu {
		background:url("#") right no-repeat;
	}

	/* regular hovers */

	a:hover {
		border-color:gray;
		background-color:#bbb7c7;
		color:black;
	}
		li.folder a:hover {
			background-color:#bbb7c7;
		}
	
	/* hovers with specificity */
	
	li.folder:hover { z-index:10; }		
		
	ul ul, li:hover ul ul {
		display:none;
	}

	li:hover ul, li:hover li:hover ul {
		display:block;
	}	
	
