/* CSS du menu vertical, bieler batiste */

.menu{
    position:absolute;
    /* solve a Opera7/IE display bug */
    width:180px;
    width/**/:180px;
    margin:0;
    padding:0;
	margin-left:21px;
	top:-55px;
}
    
.menu span{
    display:none;
}
    
.menu ul{
    margin:0;
    padding:0;
    position:absolute; /* important */
    width:180px;
    width/**/:180px;
}

    
.menu li ul{
    visibility:hidden;
    }
            
.menu li ul{
    margin-left:230px; /* be careful */
    margin-top:-20px;
}
    
.menu a{
    text-align:left;
    background-color: #5E7B8D;
	border-bottom:1px dotted #FFFFFF; 
    color:#fff;
    display:block;
    width:167px;
    text-decoration:none;
	font-size:14px;
    margin:0;
    padding:3px 0 3px 10px; /* em units can creat little graphic bug in mozilla */
    }
    
.menu a:hover{
    background-color: #2F3D46;
	color: #FFF;
	font-weight:normal;
    }

.menu a.rouge{
    text-align:left;
    background-color: #ff0000;
    color:#fff;
    text-weight:bold;
    display:block;
    width:167px;
    text-decoration:none;
    margin:0;
    padding:3px 0 3px 10px; /* em units can creat little graphic bug in mozilla */
    }
    
.menu a.rouge:hover{
    background-color: #40607D;
    }

    
/* for a mozilla better display with key nav */
.menu a:focus{
    background-color: #40607D;
}

.menu a.rouge:focus{
    background-color: #40607D;
}

.menu span{
    /* hide some accessibility stuff */
    display:none;
    }
        
.menu li{
    width:180px;
    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: #40607D;
}
a.Rouge{
    background-color: #ff0000;
}
	
a.linkOut {
	background-color: #40607D;
}
