/* CSS de la barre de navigation*/

/* CB - MOA BDDF Entreprises - Novembre 2009 */
/* Projet Harmonisation des sites*/

.preload {background: url(/file?q=BCF&i=fond_nav_rollover1.gif);}

/*MENU - NIVEAU 1*/
#nav{
  padding: 0;
  margin: 0;
  list-style: none;
}

#nav li{
  float: left; /*alignement horizontal*/
  /*position: relative;*/
}

/* liens 1er niveau */
#nav a.menu{ /*Styles des liens du 1er niveau en normal*/
	border-left : 1px solid #FFFFFF;
	border-right : 1px solid #D3D0D0;
	
	font: bold 12px Arial, Helvetica, sans-serif;
	color:#212020;
	text-decoration: none;
	text-align: center;
	
	padding: 11px 10px 10px 10px;
	height: 37px;
	background:url(/file?q=BCF&i=fond_nav.gif) repeat-x;
	
	display: block; /*retire les espaces horizontaux entre les onglets*/
}

#nav a.menu:hover, #nav a.menu:focus{
	color:#000000;
	background:url(/file?q=BCF&i=fond_nav_rollover1.gif) repeat-x;
	border-left : 1px solid #FFFFFF;
	border-right : 1px solid #D3D0D0;
	height: 37px;
}

/* v9.3 Evol refonte Header MSA Med-IT */
#nav a.selected{/*Style pour gérer l"état selectionné des onglets*/
	border-left : 1px solid #FFFFFF;
	border-right : 1px solid #D3D0D0;
	font: bold 12px Arial, Helvetica, sans-serif;
	color:#000000;
	text-decoration: none;
	text-align: center;
	padding: 11px 10px 10px 10px;
	height: 37px;
	background:url(/file?q=BCF&i=fond_nav_rollover1.gif) repeat-x;
	display: block;

}


/*2ème niveau */
#nav li:hover ul,#nav li.sfhover ul { /* Affichage du 2ème niveau lors du roll-over */
	display: block; /* :hover pour Firefox, .over pour IE*/
	/*visibility: visible; */
}

#nav li ul { 
	display: none; /*non affichage de la sous-nav sous IE et Firefox*/
	/*visibility: hidden;*/
	position: absolute; /*mode de positionnement de la liste*/
	top: 37px; /*131px; /*Firefox : positionnement de la liste par rapport au haut*/
	*top: 37px;/*144px; /*IE : positionnement*/
	left: 70px;/*201px; /*positionnement de la liste par rapport à la gauche*/
	*left: 70px; /*228px; /* IE : positionnement*/
	height: 201px;
	z-index: 9000;	
	width: 196px; 
	background-color: #FFFFFF;
		border-right: 1px solid #CEC8C8;
		border-left: 1px solid #CEC8C8;
		border-bottom: 1px solid #CEC8C8;

}

#nav li/*:hover*/ ul li a.sous_menu {
    display: block;
    text-align: left;
    background-color: #fdfaf9; /*pas interprété sous IE*/
    color: #000000;
    text-decoration: none;
    font-family: Arial;
    font-size: 11px;
    height: 25px;
    width: 194px;
    padding-left: 13px;
    padding-top: 5px;
    border-top: 1px solid #f3edeb; /*#CEC8C8;*/
}

#nav li/*:hover*/ ul li a.sous_menu:hover {
  height: 25px;
  background-color: #F2EBEA; 
}

#nav table {border-collapse:collapse; width:0; height:0; position:absolute; top:0; left:0;}


