/*==============================================================================

	GRC multi-level script-free pure-CSS menuing system stylesheet.
   This code is hereby placed into the public domain by its author
   Steve Gibson. It may be freely used for any purpose whatsoever.

	Computed Geometries:	with a default 12px font, 1.0em == 12px and
	1px == 0.08333em.
	Thus, our 98px wide Freeware & Research buttons are 8.166666em wide.

==============================================================================*/

/*====== GLOBAL OVERRIDES FOR MAJOR ITEMS AND DIFFERING BROWSER DEFAULTS =====*/

table{
	text-align: left;
	border: none;
}

/* sert a gerer la partie gauche  (icones gratuits) du tableau dans l'element 44 */

table td .icopay
{
  border: 1px solid white;
}

  /* sert a gerer les icones payants dans l'element 44 */

.icopay2
{
 text-align:right;
 border: 1px solid white;
}

 /*========================= TOP OF THE MENU CASCADE =========================*/

.EL26 {
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin:0;
	padding-bottom: 5px;
	border:0;
	height:19px;								/* the menu's overall height */
    width:1004px;    /* we always want our menu to fill the available space */
	margin-top:5px;
	font:bold 8pt Verdana, Arial, Helvetica, sans-serif;
	border-top:5px solid #ccc;        /* give us a black border underneath */
}

.EL26 #EL26centered{
	float:left;
	display:inline; /*Ceci ne veut rien dire, c'est jsute pour corriger un bug IE6*/
}

.EL26 img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

.EL26 ul {
	float:left;
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

* html       .EL26 ul{
	float:none;
} 
.EL26 li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
}

.EL26 ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	margin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font:8pt Verdana, Arial, Helvetica, sans-serif;  /* this sets the base font size for our entire menu */
}




/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.EL26 ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}

.EL26 ul li a,
.EL26 ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:16px;
	border:solid 1px #ccc;
	border-top:none;
	margin-right:4px;
	padding:1px 5px;
	background:#F0F0F0;
	color:#444;

}


.EL26 ul li:hover a,
.EL26 ul li a:hover {                        /* selected top-level menu items */
	border-top:1px solid #444;    /* these 2 lines create the push-in illusion */
	height:16px;
	background:	#CCCCCC; 
	color:#444;
	text-decoration:none;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/



.EL26 ul li:hover ul,
.EL26 ul li a:hover ul {                          /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	/*top:19px;              /* place us just up underneath the top-level images */
	bottom:18px;
	left:-1px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	/*width:18em;*/
	color:black;                        /* this sets the unselected-text color */
	background:#F0F0F0;		/*  Couleur de fond*/
	/*border:solid 1px #666;*/

}

.EL26 ul li:hover ul.leftbutton,
.EL26 ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
}


.EL26 ul.rightmenu li:hover ul,
.EL26 ul.rightmenu li a:hover ul {    /* 2nd level neighborhood drop-down box */
	left:auto;
	right:0;         /* nudge the right menu right to line up under the border */
}

* html .EL26 ul.rightmenu li a:hover ul {         /* IE5/6 needs a tweak here */
	right:-1px;
}
.EL26 ul li ul li ,
.EL26 ul li a:hover ul li  
{    
clear:left;
width:100%;
overflow:hidden;
}

.EL26 ul li ul li ,
.EL26 ul li a:hover ul li  {    
overflow:visible;
}

.EL26 ul li ul li a{
	font:8pt Verdana, Arial, Helvetica, sans-serif;
	font-weight:normal;
}

.EL26 ul li:hover ul li a,
.EL26 ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding: 0px 0px 0px 4px; 
	height:auto;
	color:#444444;			/*  Couleur du texte pour les sous niveau x*/
	background:#F0F0F0;       /* this sets the drop-down menu background color */
	border-top: 1px #ccc solid;
	border-bottom: 0px #ccc solid;
	border-left: 1px #ccc solid;
	border-right: 1px #ccc solid;
	width:250px;
	text-align:left;
}

.EL26 ul li:hover ul li:hover a,
.EL26 ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:black;
	background:#ccc;
	/*width:246px;*/
	text-align:left;
	text-decoration:none;
	font-weight:bold;
}
