/* CSS du menu vertical, bieler batiste */

.menu{
    /*position:absolute;*/
    /* solve a Opera7/IE display bug */
    /*width:152px;*/
    width:170px;
    border-top: 1px #666 solid;
    border-left: 1px #666 solid;
    border-right: 1px #666 solid;
    margin:0;
    padding:0;
    }
    
.menu span{
    display:none;
    }
    
.menu ul{
    border-top: 1px #666 solid;
    
    
    margin:0;
    padding:0;
    position:absolute; /* important */
    width:170px;
    width/**/:170px;
    }
    
.menu li ul{
    visibility:hidden;
    }
            
.menu li ul{
    margin-left:170px; /* be careful */
    margin-top:-24px;
    }
    
.menu a{
    text-align:center;
    background-color: #e6e6e6;
    /*color:#000;*/
    font-weight:bold;
    display:block;
    width:170px;
    border-bottom: 1px #666 solid;
    border-left: 1px #666 solid;
    border-right: 1px #666 solid;
    text-decoration:none;
    margin:0;
    padding:3px 0 3px 0; /* em units can creat little graphic bug in mozilla */
    }
    
.menu a:hover{
    background-color: #fff;
    color:#ff6600;
    }
    
/* for a mozilla better display with key nav */
.menu a:focus{
    background-color: #aaf;
}

.menu span{
    /* hide some accessibility stuff */
    display:none;
    }
        
.menu li{
    width:150px;
    display:block;    
    float:left;  
    list-style:none;
    margin:0;
    padding:0;
    }
    
/* IE PC selector */
* html .menu li {
    display:inline; /* solve a IE PC list bug */
    float:none; /* solve a IE5 clav nav bug */
    }
    
a.linkOver{
    background-color: #eee;
    }
.menu  li.section{
  cursor: pointer;
  text-align:center;
  background-color: #e6e6e6;
  font-weight:bold;
  display:block;
  width:170px;
  border-bottom: 1px #666 solid;
  border-left: 1px #666 solid;
  border-right: 1px #666 solid;
  text-decoration:none;
  margin:0;
  padding:3px 0 3px 0;
}
.menu  li.separator{
  width: 150px;
  height: 0px;
  border-bottom: 1px solid #666;
  background-color: inherit;
  /*padding:2px 0;*/
}