ul {list-style-type:none;}

/* style the outer div to give it width */
.menu {
float:left;
padding-left:0px;
padding-right:0px;
margin:0;
width:1042px;
font-size:12px;
line-height:32px;
/*padding-bottom:200px;*/
background: url(../images/fond_menu.jpg) repeat-x top left;


}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
.menu ul ul {
width:150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
width:auto;
padding: 0 0 0 0;
position:relative;

}
/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:12px;
font-weight:bold;
text-decoration:none;
color:#fff;
width:auto;
height:32px;
border:0;
/*background-image:url("../images/menu_font.jpg");*/
padding:0 10px 0 10px;
line-height:32px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:150px;
}

/* le 2eme ul qui a un autre sous menu*/
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#6D96C4;
color:#fff;
height:32px;
line-height:32px;
padding-top:0;
}

/* le 3eme ul qui a un autre sous menu*/
.menu ul ul ul a.drop, .menu ul ul ul a.drop:visited {
background:#6D96C4;
color:#fff;
height:32px;
line-height:32px;
padding-top:0;
}

/* style the second level hover */
.menu ul ul a.drop:hover{
height:32px;
line-height:32px;
padding-top:0px;
}

/* style the 3ème level hover */
.menu ul ul ul a.drop:hover{
height:32px;
line-height:32px;
padding-top:0px;
}

.menu ul ul :hover > a.drop {
height:20px;
line-height:25px;
color:#6D96C4;
background-image:url("../images/font_rose.jpg");;
}

.menu ul ul ul :hover > a.drop {
height:20px;
line-height:25px;
color:#6D96C4;
background-image:url("../images/font_rose.jpg");;
}

/* style the third level background */
/*
.menu ul ul ul a, .menu ul ul ul a:visited {
background-color:#6D96C4;
}*/
/* style the third level hover */
/*
.menu ul ul ul a:hover {
background:#6D96C4;

}
.menu ul ul ul :hover > a {
background:#6D96C4;
}

.menu ul ul  ul:hover > a.drop {
height:20px;
line-height:25px;
color:#6D96C4;
background-image:url("../images/font_rose.jpg");;
}*/

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
text-align:left;
top:32px;
left:0;
width:150px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:32px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:150px;
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a {
background:#6D96C4;
color:#fff;
height:auto;
line-height:1em;
padding:5px 10px 5px 10px;
width:120px
/* yet another hack for IE5.5 */
}

.menu ul ul a:visited {
background:#6D96C4;
color:#fff;
height:auto;
line-height:1em;
padding:5px 10px;
width:120px
/* yet another hack for IE5.5 */
}

* html .menu ul ul a{
width:auto;
}

/* style the top level hover */
.menu a:hover{color:#fff;}

.menu ul ul a:hover{
color:#000;
background:#6D96C4;
}

.menu :hover > a {
color:#fff;
background-image:url("../images/menu_hover.jpg");
background-repeat:repeat-x;
}

/****************/
.menu :hover > li {
color:#fff;
background:url(../images/menu_02.jpg) no-repeat top left;
}

.menu li {
color:#fff;
background:url(../images/menu_02.jpg) no-repeat top left;
}
/**********************/
.menu ul ul :hover > a {
color:#000;
background-color:#6D96C4;
}

.menu ul {
/*background-image:url("../images/menu_001.jpg");*/
background-repeat:repeat-x;
}

/* make the second level visible when hover on first level list OR link display:block;  */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;

}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;

}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{
visibility:visible;

}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {
visibility:visible;
}