#nav /* All elements properties */
{       
    font-weight : normal;
    font-family : "Tahoma", "Arial", sans-serif;
}


#nav, #nav ul {
    font-size : 16px;
    line-height : 24px;
    padding: 0;
    margin : 0;
    list-style : none;
    text-align : left;
}

#nav a
{
    display : block; 
    padding-left: 6px;
    color : #ffffff; /* white */
    text-decoration : none;

}

#nav .menuTab /* Menu items */      
{ 
    width: 100px;        
    float : left;
    background-color: #dc3627; /*concepto red */
}

#nav .menuTab span /* Menu items */      
{ 
        
    display:block; 
    color : #ffffff; /* white */
    padding-left: 6px;
}

#nav #lastMenuTab /* last menu item */      
{        
    width: 434px;         
    max-width:434px;        
    margin:0px;
    padding:0px;        
    text-align: right;        
    float : left; 
    background-color : #dc3627; /* concepto red */   
    color : #ffffff; /* white */
}

#nav #lastMenuTab a 
{       
    width:100px;        
    padding-right:6px;
    float: right;
}

#nav .menuTab  ul /* Sublist properties */
{ 
        
    font-size: 14px;
    position: absolute; /* Position absolue */
    width: 200px; /* Largeur des sous-listes */
    left: -999em; /* Hop, on envoie loin du champ de vision */
}

#nav .menuTab  ul li /* subTabs */
{
    border-top : 1px solid #d7d7d7;
    height: 24px;
    background-color: #dc3627; /* concepto red */ 
    /*background-image: url(../img/subitem_bck_op70.png);*/
    background-repeat: repeat-x;
}

#nav .menuTab  ul li a /* subTab text */
{
    color: #ffffff;
	      
}

/* Quand on passe la souris sur les items */
    /* changement d'apparence */
#nav a:hover, #nav #lastMenuTab a:hover
{
    background-color : #ffffff; /* white */   
    color: #000000;
}


/* Quand on passe la souris sur les items */
    /* changement comportement */
#nav .menuTab:hover span, #nav .menuTab.sfhover span 
{
    background-color : #ffffff; /* white */   
    color: #000000;    
    cursor: default;
}

/* Quand on passe la souris sur les items */
    /* apparition des subitems */
#nav .menuTab:hover ul, #nav .menuTab.sfhover ul 
{
    left: auto;
    min-height: 0; /* IE bug correction */
}


/* Quand on passe la souris sur les subitems */
    /* changement d'apparence */
#nav .menuTab  ul li a:hover /* subTab text */
{
    color: #000000;
	      
}







