#listMenuRootH {
	/*z-index:1;
	position:relative;*/
	margin:0 auto;
}

/* All <ul> tags in the menu including the first level */
#listMenuRootH, #listMenuRootH  ul {
	padding: 0;
	list-style: none;
 }

#listMenuRootH li {
	float: left;
	width: 113px;
	height: 30px;
	position:relative;
	background-color: white;
/* 	border-left: 1px solid white; */
	border-top: 1px solid white;
	border-bottom: 1px solid black;
	border-right: 1px solid black;
	font-size: 10px;
	text-align: center;
}

li#key{
	float:right;
	width:48px;
	height: 30px;
}

/* élément selectionne*/
#listMenuRootH a:hover, #listMenuRootH a.highlighted:hover, #listMenuRootH a:focus {
	color: black;
	text-decoration: none;
	background-color: white;
	height: 25px;
}

/*tete de colonne selectionnee*/
#listMenuRootH  a.highlighted {
	color: black;
	background-color: white;
	height: 25px;
}

/* Les sousmenus (<ul> tags) sont cachés et positionnés en absolute sous leur parents */
#listMenuRootH ul {
	 margin: 0;
	 visibility: hidden;
	 position: absolute;
	 /*top: 2.0em;  I'm using ems rather than px to allow people to zoom their font */
	 top:31px;/* r�gler sur la hauteur de div#menu*/
	 left: 0;
	 min-width: 100%;
	 text-align: left;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/


/* Items in submenus - override float/border/margin from above, restoring default vertical style */
#listMenuRootH ul li {
 float: none;
 margin-right: 0;
 margin-bottom: -4px;
}

/* Commenté pour résoudre une invalidité CSS */
/*#listMenuRootV ul>li:last-child {
 margin-bottom: 5px;
}*/

/* Element du menu menu */
#listMenuRootH a {
 display: block;
 padding: 3px;
 font-weight:bold;
 font-family:Verdana,Arial,Helvetica,sans-serif;;
 color: #666666;
 text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */


/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    #listMenuRootH a#xyz {
      background-image: url(out.gif);
    }
    #listMenuRootH a#xyz:hover, #listMenuRootH a.highlighted#xyz, #listMenuRootH a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
#listMenuRootH a .subind {
 display:  none;
}
#listMenuRootH ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
#listMenuRootH a {
 float: left;
}
#listMenuRootH ul a {
 float: none;
}

#listMenuRootH a {
 float: none;
}



/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html #listMenuRootH  ul li {
 float: left;
 height: 1%;
}
* html #listMenuRootH  ul a {
 height: 1%;
}
/* End Hack */

