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

.menuD {
	width:630px;
	height:24px;
	position:relative;
	margin: 0 0 0 70px;
	z-index:100;
	/* border-right: 1px solid #fff;*/
}
/* hack to correct IE5.5 faulty box model */
* html .menuD {
	width:631px;
	w\idth:630px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menuD ul {
	padding:0;
	margin:0;
	text-align: left;
	list-style-type:none;
}
.menuD ul ul {
	width:150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menuD li {
	float:left;
	width:90px;
	position:relative;
}
/* style the links for the top level */
.menuD a,
.menuD a:link,
.menuD a:visited {
	display:block;
	font-size:1em;
	text-decoration:none;
	color:#fff;
	width:78px;
	border: 1px solid transparent;
	border-width: 0 1px 0 0; /* chaque option de menu */
	height:24px; /* menuD - marges  */
	padding-left:10px;
	line-height:23px;
	font-weight:bold;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menuD a,
* html .menuD a:link,
* html .menuD a:visited {
	width:89px; w\idth:78px;
}
.menuD li.pair a,
.menuD li.pair a:link,
.menuD li.pair a:visited {
	background-color: #EF2074; /*rose foncé */
}
.menuD li.impair a,
.menuD li.impair a:link,
.menuD li.impair a:visited {
	background-color: #193D82; /*bleu foncé */
}
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menuD ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:24px;
	left:0;
	width:149px;
	border-top:1px solid transparent; /* entre ss menu et menu */
}
/* another hack for IE5.5 */
* html .menuD ul ul {
	top:22px;t\op:23px;
	}
 
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menuD table {position:absolute; top:0; left:0; border-collapse:collapse;}
 
/* style the second level links */
.menuD ul ul a,
.menuD ul ul a:link,
.menuD ul ul a:visited {
	color:#fff;
	height:auto;
	line-height:1.2em;
	padding: 4px 8px;
	width: 128px;
	/* background-color: #ccc; */
	border: 1px solid transparent; /* entre chaque option de ssmenu */
	border-width: 0 1px 1px 1px;
	font-weight: normal;
}
/* yet another hack for IE5.5 */
* html .menuD ul ul a,
* html .menuD ul ul a:link,
* html .menuD ul ul a:visited {
	width:150px;w\idth:128px;
}
.menuD li.pair ul a,
.menuD li.pair ul a:link,
.menuD li.pair ul a:visited {
	background-color: #F26391; /* rose moyen */
}
.menuD li.impair ul a,
.menuD li.impair ul a:link ,
.menuD li.impair ul a:visited {
	background-color: #33679D; /*bleu moyen */
}

/* style the top level hover */
.menuD li.pair a:hover,
.menuD li.pair ul a:hover{ /* IE6 */
	color:#fff;
	background-color: #EF2075; /*rose foncé + 1*/
	/* changer de couleur par rapport à la couleur du LI : #EF2075 au lieu de #EF2074 */
}

.menuD li.pair :hover > a,
.menuD li.pair ul :hover > a {
	color:#fff;
	background-color: #EF2074; /*rose foncé */
}
 
.menuD li.impair a:hover,
.menuD li.impair ul a:hover{ /* IE6 */
	color:#fff;
	background-color: #193D83; /* bleu foncé + 1*/
}
.menuD li.impair :hover > a,
.menuD li.impair ul :hover > a {
	color:#fff;
	background-color: #193D82; /* bleu foncé */
}
 
/* make the second level visible when hover on first level list OR link */
.menuD ul li:hover ul,
.menuD ul a:hover ul{
	visibility:visible;
}

