 /* ### HORIZONTAL LINES ### */
.tree .barre { 
	/* No margin around horizontal lines */
	margin:0; 
	/* Horizontal lines are black and 2px */
	border-bottom:2px solid black;
	
	position:relative;
	/* ??? */
	left:-32px;
	/* Length of the horizontal lines */
	padding-right:20px;
}

/* ### BOX (TREE NODE) ### */
.tree .noeud {
	border:1px ridge black;
	border-bottom:2px ridge black;
	border-right:2px ridge black;
	padding:10px;
	margin-left:0px;
	position:relative;
	left:-32px;
	background-color:#ddd;
}

.tree  li {
	list-style:none;
	/* écartement vertical entre boite */
	margin-bottom:30px;
}

.tree ul {
	 /* profondeur des niveaux */
	padding-left:30px;
	/* écartement gauche et trait vertical */
	margin-left:10px; 
	/* ???? écartement vertical entre haut texte boite père et haut boite fils */
	padding-top:40px; 	
	/* ????? */
	margin-top:-10px; 
	/* barres verticales */
	border-left:2px solid black;  
}


/** La suite ne sert qu'à tester la possibilité de déplacer l'organigramme */
.tree {
	position:relative;
	border:1px dashed red;
	left:50px;
	top:20px;
	width:300px;
}

