/* ================================================================ 
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_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu { width:138px; position:relative; z-index:1000; font-family:Verdana,Helvetica; font-size: 10px; }
	/* hack to correct IE5.5 faulty box model */
	* html .menu {width:138px; w\idth:137px;}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0; margin:0; list-style:none;}
.menu ul ul {width:149px; list-style:none;}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {padding:0; margin:0; margin-left:-2px; float:left; width:138px; position:relative; }

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse; }



/**********************************************
 NIVEAU 1
**********************************************/

/* Liens */
.menu a, .menu a:visited 
{ display:block;  background:#f1f1f1; text-decoration:none; color:#000000;
  border: none; border-bottom:#fff solid 1px; border-left:#758ca5 solid 5px;
  width:126px; height:25px; line-height:21px; padding-left:5px; }
  /* a hack so that IE5.5 faulty box model is corrected */
  * html .menu a, * html .menu a:visited {width:126px; w\idth:126px;}
  
/* Hover */
.menu a:hover
{ color:#000; background:#758ca5; text-decoration:none; border-left:#0000ff solid 5px;
  border-right: #fff solid 1px; }

.menu :hover > a, .menu ul ul :hover > a {color:#000; background:#758ca5;}



/**********************************************
 NIVEAU 2 
**********************************************/

/* 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:25px; top:0; left:139px; width:149px; }
	/* another hack for IE5.5 */
	* html .menu ul ul {top:30px;t\op:0px;}

/* Background */
.menu ul ul a.drop, .menu ul ul a.drop:visited { background:#f1f1f1; }

/* Links */
.menu ul ul a, .menu ul ul a:visited 
{ background:#f1f1f1; color:#000; height:auto;
  border-right:#ccc solid 1px; border-bottom:#ccc solid 1px; border-left:#758ca5 solid 5px;
  line-height:1.4em; padding:5px 5px; width:128px; }
  /* yet another hack for IE5.5 */
  * html .menu ul ul a, * html .menu ul ul a:visited {width:150px;w\idth:128px;}
	
/* Hover */
.menu ul ul a:hover
{ color:#000; background:#758ca5; text-decoration:none; border-left:#cc0000 solid 5px;
  border-right: #fff solid 1px; }
.menu ul ul a.drop:hover{ color:#000; background:#758ca5; text-decoration:none; }
.menu ul ul :hover > a.drop { background:#c9ba65; }



/* 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;}	



/**********************************************
 NIVEAU 3 
**********************************************/

/* background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#e2dfa8;}

/* hover */
.menu ul ul ul a:hover {background:#b2ab9b;}

/* position the third level flyout menu */
.menu ul ul ul{left:149px; top:-1px; width:149px;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-149px;}

/* keep the third level hidden when you hover on first level list OR link */
.menu 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;}














