/* CSS Document */

/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_pullup.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* style the outer div to give it width */
.menu {
width:960px;
height:36px;
font-size:0.85em;
}

/* 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:192px;
}

/* 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:192px;
position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
text-decoration:none; 
color:#fff; 
width:171px; 
height:36px; 
background:#e38e20;
background-image: url("../fr/img/fond_orange.png"); 
padding-left:21px; 
line-height:36px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:192px;
w\idth:171px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#501802;
}

/* style the second level hover */
.menu ul ul a.drop:hover {
background:#734635;
}
.menu ul ul :hover > a.drop {
background:#734635;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
bottom:36px;
left:0; 
width:192px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
bottom:35px;
b\ottom:36px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {border-collapse:collapse; border:0; position:absolute; left:0; bottom:-1px;}


/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#501802;
color:#fff;
font-size:11px;
height:auto; 
line-height:1em; 
padding:7px 10px; 
width:171px;

}
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:192px;
w\idth:171px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff; 
background:#501802;
background-image: url("../fr/img/fond_marron.png");
}
.menu :hover > a, .menu ul ul :hover > a {
color:#fff;
background:#501802;
background-image: url("../fr/img/fond_marron.png");
}

.menu ul ul :hover > a {
color:#fff;
background:#734635;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
height:auto;
background:transparent filter: alpha(opacity=80);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
opacity:0.8;
}
