/*------------------Menu---------------*/
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

/*
Si problème avec sous-menu qui apparaît sous des ul/li du site, il faut : 

- Vérifier pour mettre position: absolute dans le conteneur;
- Vérifier s'il y a d'autre layers qui sont en absolute;
- Mettre position: relative dans le div général du menu;
*/

#menuPrincipal {
display: block;
position: relative;
z-index: 3;
height: 20px;
}

#menuJaune {
width:520px;
display:block;
height:20px;
border:0;
margin:0;
padding:0;
color:#EEDEA7;
z-index: 30;
position: relative;
}

/*Top level list items*/
#menuJaune li{
float: left;
display: block;
padding:0 10px 7px 10px;
list-style-type:none;
background: none;
z-index: 30;
}

/*Top level menu link items style*/
#menuJaune li a{
	color:#EEDEA7;
display: block;
float: left;
font-weight:bold;
text-decoration:none;
}
#menuJaune li a.selectionne,#menuPrincipal #menuJaune li a.selectionne:hover{
	color:#ebb73c;
}
#menuJaune li a:hover{
	color:#ebb73c;
}

/*1st sub level menu*/
#menuJaune li ul{
display: block;
visibility: hidden;
position: absolute;
left: 0;
top: 1em; /* no need to change, as true value set by script */
width: 170px;
height:auto;
padding: 0;
margin: 0;
background-image:none;
background-color:#000000;
border:#ffffff 1px solid;
border-top:none;
z-index: 4;
}

/*Sub level menu list items (undo style from Top level List Items)*/
#menuJaune li ul li{
display: block;
text-align:left;
margin: 0;
padding:0;
background-image: none;
background-color: #000000;
border-top:#ffffff 1px solid;
z-index: 40;
/*border-left:none;
float: none;
list-style-position:outside;
z-index: 2;
position: relative;*/
}

/*All subsequent sub menu levels offset after 1st level sub menu */
#menuJaune li ul li ul{ 
left: 145px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
#menuJaune li ul li a{
display:block;
width:170px;
padding:4px 0 4px 10px;
font-size:11px;
font-family:Arial;
color:#ffffff;
font-weight: normal;
z-index: 3;
position: relative;
}


/*.menuJauneAvecSousMenu {
background: url(http://www.quebecmaritime.ca/NouveauDesign/General/bg_menuJaune.gif);
}
.menuJauneAvecSousMenu:hover {
background: url(http://www.quebecmaritime.ca/NouveauDesign/General/bg_menuJauneOver.gif);
}*/

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html #menuJaune li { float: left; height: 1%; display: block; }
* html #menuJaune li a { height: 1%; }
/* End */
