#menugal {
position:relative; 
/*z-index:10;*/
font-size:90%;
}

/* remove all the bullets, borders and padding from the default list styling */
#menugal ul {
padding:0;
margin:0;
list-style-type:none;
width:148px;
}

/* hack for IE5.5 */
* html #menugal ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */

#menugal li {
position:relative;
z-index:89;
}

/* get rid of the table */
#menugal table {position:absolute; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
#menugal a, #menugal a:visited {
display:block; 
text-decoration:none;
height:22px;
line-height:22px;
width:147px;
color:#000;
/*background:#d4d8bd;*/
/*background:#618200; vert*/
background:#ccc;
text-indent:5px;
border:1px solid #fff;
border-width:0 1px 1px 0;
border-right: 1px solid #ccc;
}

/* hack for IE5.5 */
* html #menugal a, * html #menugal a:visited {width:148px; w\idth:147px;}
/* style the link hover */

#menugal a:hover{
color:#fff; 
/*background:#949e7c;*/
/*background:#9a986e; brun*/
background:#666;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#menugal ul ul {
visibility:hidden;
position:absolute;
top:0;
left:-148px; 
}

/* make the second level visible when hover on first level list OR link */
#menugal ul :hover ul{
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
#menugal ul :hover ul ul{
visibility:hidden;
height:200px;
overflow:auto;
}


/* keep the fourth level hidden when you hover on second level list OR link */
#menugal ul :hover ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
#menugal ul :hover ul :hover ul{ 
visibility:visible;
}

/* make the fourth level visible when you hover over third level list OR link */
#menugal ul :hover ul :hover ul :hover ul { 
visibility:visible;
}