/* common styling */
/* set up the overall width of the menu div and the margins with a relative position*/

.menu2 {
font-family: verdana, arial, sans-serif; 
width:840px;
margin:0 auto; 
position:relative;
z-index:1;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu2 ul {
padding:0; 
margin:0;
list-style-type: none;
border:0;
}
/* float the list so that the items are in a line */
.menu2 ul li {
float:left; 
border-bottom: 1px solid #B3B3B3;
}
/* style the links to be 124px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu2 ul li a, .menu2 ul li a:visited {
display:block; 
float:left;
text-align:left; 
text-decoration:none; 
width:90px; 
height:20px; 
color:#B3B3B3; 
border:1px;
border-width:1px 1px 0 0;
background:#171713; 
line-height:20px; 
font-size:11px;
}
.menu2 ul li a.pfond, .menu2 ul li a.pfond:visited {
width:110px; 
}
.menu2 ul li a.fmenu, .menu2 ul li a.fmenu:visited {
width:170px; 
}
.menu2 ul li a.droite, .menu2 ul li a.droite:visited {
text-align:right; 
width:98px; 
}
/* make the dropdown ul invisible */
.menu2 ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu2 ul li:hover a{
color:#fff; 
background:#171713; 
}
/* make the sub menu ul visible and position it beneath the first list item */
.menu2 ul li:hover ul {
text-align:left;
display:block; 
position:absolute; 
top:21px; 
left:0; 
}
/* make the sub menu ul li the full width with padding and border. */
.menu2 ul li:hover ul li {
width:830px;
border:0px;
background:#171713;
color:#000;
position:relative;
padding:10px 10px 20px 0px;
}
/* style the size, background color, border and margin of the submenu links */
.menu2 ul li:hover ul li a {
color:#B3B3B3;
background:#171713;
border:0px;
margin:0px;
}
.menu2 ul li:hover ul li.accueil a{
padding-left:0px;
width:830px;
}
.menu2 ul li:hover ul li.actions a{
padding-left:90px;
width:740px;
}
.menu2 ul li:hover ul li.constats a{
padding-left:180px;
width:650px;
}
.menu2 ul li:hover ul li.textes a{
padding-left:270px;
width:560px;
}
.menu2 ul li:hover ul li.fondation a{
padding-left:360px;
width:470px;
}
.menu2 ul li:hover ul li.chronologie a{
padding-left:450px;
width:380px;
}
.menu2 ul li:hover ul li.rpn a{
width:830px;
text-align: right;
}
/* style position of the links on hover */
.menu2 ul li:hover ul li a:hover {
position:relative;
color:#fff;
}
