/* NAVIGATION DE CATALOGUE - PUBLICATIONS */
/* Premier bloc - tout le monde en herite - contient toute la nav */
#navCatalogue ul {
	list-style-type:none;
	margin: 0px;
	padding: 0px;
	color: #666666; /* Couleur des puces */
}
/* Bloc de niveau 2 - contient toutes les sous nav */
#navCatalogue ul ul {
	background-color: #d4d3d4;
	padding-left: 30px;
	padding-bottom: 10px;
	
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFF;
	border-bottom-color: #908f90;
}
/* Listes de niveau 2 - contient toutes les sous nav */
#navCatalogue ul ul li {
	background: none;
	list-style: outside disc;
	padding-left: 0px;	
}
/* Listes de niveau 3 */
#navCatalogue ul ul ul li {
	
}

/* Elements de niveau 1 */
#navCatalogue ul a {	
	background-color: #F4F4F6;
	background-repeat: repeat-x;
	padding-left: 10px;
	height: 20px;
	padding-top: 3px;
	display: block;
	/* Affichage des liens */
	text-decoration: none;
	font-size: 10px;
	text-transform: uppercase;
	color: #666666;	
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFF;
	border-bottom-color: #a6a6a7;
}

#navCatalogue ul a:hover {
	color: #FF0000;
}

#navCatalogue ul a.selected {
	background-color: #d4d3d4;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFF;
	border-bottom-color: #908f90;
}

/* Elements de niveau 2 */
#navCatalogue ul ul a {
	background: none;
	padding-left: 0px;
	height: 15px;
	border: 0px;
}

#navCatalogue ul ul a.selected {
	background: none;
	color: #FF0000;
	border: 0px;
}

/* Elements de niveau 3 */
#navCatalogue ul ul ul a {
	height: 12px;
}

#navCatalogue ul ul ul a.selected {
	
}


