
/* This part of the file is under the LGPL license version 2.1
 * It is an adaptation of the script found here:
 * http://www.seoconsultants.com/css/menus/tutorial/
 *
 */

/* Horizontal CSS Dropdown and Popout Menu */
#menuEchecs {
width: 100%;
background: #eee;
float: left;
}
#menuEchecs ul {
list-style: none;
margin: 0;
padding: 0;
width: 12em;
float: left;
}

 /* Partie avec les couleurs et autres éléments graphiques */

#menuEchecs a, #menuEchecs h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-style: solid;
border-color: #ccc #888 #555 #bbb;
margin: 0;
padding: 2px 3px;
}

#menuEchecs h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}
/* SIMON */
#menuEchecs ul h2 a {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menuEchecs a {
color: #000;
background: #efefef;
text-decoration: none;
}

#menuEchecs a:hover {
color: #a00;
background: #fff;
}

/* Positioning the Popout Menus and Dropdown Menus */

#menuEchecs li {position: relative;}

#menuEchecs ul ul {
position: absolute;
z-index: 500;
}

#menuEchecs ul ul ul {
top: 0;
left: 100%;
}

/* Hiding and Revealing using :hover */

div#menuEchecs ul ul,
div#menuEchecs ul li:hover ul ul,
div#menuEchecs ul ul li:hover ul ul
{display: none;}

div#menuEchecs ul li:hover ul,
div#menuEchecs ul ul li:hover ul,
div#menuEchecs ul ul ul li:hover ul
{display: block;}

/* Workaround for bugs in IE */
/* s'applique uniquement à IE et est identique pour les menus verticaux ou horizontaux */

/* RETIRE: p-e cause un conflit our IE avec d'autres trucs dans JS. */
/* <!--[if IE]>
<style type="text/css" media="screen">
body {
behavior: url(csshover.htc);
font-size: 100%;
}
*/

#menuEchecs ul li {float: left; width: 100%;}
#menuEchecs ul li a {height: 1%;} 

#menuEchecs a, #menuEchecs h2 {
font: bold 0.7em/1.4em arial, helvetica, sans-serif;
}
</style>
<![endif]-->


/*****************************************************/
.horizontalcssmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.horizontalcssmenu ul li{
position: relative;
display: inline;
float: left;

}

/*Top level menu link items style*/
.horizontalcssmenu ul li a{
display: block;
width: 120px; /*Width of top level menu link items*/
padding: 2px 8px;
border: 1px solid #202020;
border-left-width: 0;
text-decoration: none;
background: url(menubg.gif) center center repeat-x;
color: white;
font: bold 13px Tahoma;
}
	
/*Sub level menu*/
.horizontalcssmenu ul li ul{
left: 0;
top: 0;
border-top: 1px solid #202020;
position: absolute;
display: block;
visibility: hidden;
z-index: 100;
}

/*Sub level menu list items*/
.horizontalcssmenu ul li ul li{
display: inline;
float: none;
}


/* Sub level menu links style */
.horizontalcssmenu ul li ul li a{
width: 160px; /*width of sub menu levels*/
font-weight: normal;
padding: 2px 5px;
background: #22316C;
border-width: 0 1px 1px 1px;
}

.horizontalcssmenu ul li a:hover{
background: url(menubgover.gif) center center repeat-x;
}

.horizontalcssmenu ul li ul li a:hover{
background: #4B0082;
}

.horizontalcssmenu .arrowdiv{
position: absolute;
right: 0;
background: transparent url(menuarrow.gif) no-repeat center left;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .horizontalcssmenu ul li { float: left; height: 1%; }
* html .horizontalcssmenu ul li a { height: 1%; }
/* End */
