/*  -- Styles pour le menu déroulant --
   ------------------------------------ */
.suckertreemenu {
	position: absolute;
	left:400px;
	top: 16px;
	width: 500px;
	z-index:999;
}

.suckertreemenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	color: #333333;
}

/*Top level list items*/
.suckertreemenu ul li{
	position: relative;
	display: inline;
	float: left;
	list-style-type: none;/*background-color: #A6D05D;*/ /*overall menu background color*/
}
/*Top level menu link items style*/
.suckertreemenu ul li a{
	display: block;
	/*border: 1px solid black;*/
	border-left-width: 0;
	text-decoration: none;
	color: #000;
	font-size: 12px;
	font-weight: bold;
	line-height: 16px;
	text-align: left;
	padding: 5px 8px 5px 8px;
	z-index:999;

}

/*
.suckertreemenu ul li.menu-actif {
	position: relative;
	display: inline;
	float: left;
	list-style-type: none;// background-color: #A6D05D; // overall menu background color //
	display: block;
	// width: 100px; // Width of top level menu link items
	padding: 2px 24px 2px 24px;
	// border: 1px solid black;
	border-left-width: 0;
	text-decoration: none;
	color: #B90010;
	background-image: url(../img/vert-degrader-menu.png);
	background-repeat: repeat-x;
}
*/

/* 1st sub level menu */
.suckertreemenu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;
margin-bottom: 0px;
}

/*All subsequent sub menu levels offset after 1st level sub menu */

/*.suckertreemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
/*top: 0;
}
*/

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
	display: block;
	width: 180px; /*width of sub menu levels*/
	height: 18px;
	color: #FFF;
	font-size: 11px;
	text-decoration: none;
	border-right: 1px solid #224C95;
	border-bottom: 1px solid #224C95;
	border-left: 1px solid #224C95;
	border-top: 1px solid #FFF;
	background-color: #0099FF;
	font-weight: normal;
	line-height: 20px;
	padding: 2px 5px 2px 5px;
	filter : Alpha(opacity=70, finishopacity=70, style=1);
	-moz-opacity: 0.70;
	opacity:0.7;
	z-index:999;
}

.suckertreemenu ul li a:hover{
	color: #224C95;
	background-color:#FFCC33;
}

.suckertreemenu ul li ul li a:hover{
	color: #000000;
	background-color:#FFF;
}

/*Background image for top level menu list links */
/*.suckertreemenu .mainfoldericon{
/*	background-color: none; */
/*	background-image: url(../img/arrow-down.gif);
	background-repeat: no-repeat;
}*/

/*Background image for subsequent level menu list links */
/*.suckertreemenu .subfoldericon{
	background-color: #F3F3F3;
	background-image: url(../img/arrow-right.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
*/
* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
/* html .suckertreemenu ul li { clear: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */

