﻿.coordonnee 
{
        padding : 0; /* pas de marge intérieure */
        margin : 0; /* ni extérieure */
        list-style : none; /* on supprime le style par défaut de la liste */
        line-height : 18px; /* on définit une hauteur pour chaque élément */
        text-align : right; /* on centre le texte qui se trouve dans la liste */
}
.coordonneetxt    
{
    font-size : 12px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	font-weight : bold;
}

.coordonneetxt:hover 
{
    font-size : 12px;
	font-family : Arial;
	color : #ffffff;
	text-decoration : none;
	font-weight : bold;
}
.tableau
{
	border-left : 1px solid #a4a4a4 ;
	border-right : 1px solid #a4a4a4 ;
	border-top : 0px solid #a4a4a4 ;
	border-bottom : 0px solid #a4a4a4 ;
}
.tableau2
{
	background     : url("./images/fond_table.jpg") repeat-x ;
}

#menu, #menu ul /* Liste */     
{
        padding : 0; /* pas de marge intérieure */
        margin : 0; /* ni extérieure */
        list-style : none; /* on supprime le style par défaut de la liste */
        line-height : 21px; /* on définit une hauteur pour chaque élément */
        text-align : center; /* on centre le texte qui se trouve dans la liste */
}

#menu /* Ensemble du menu */
{
        font-weight : bold; /* on met le texte en gras */
        font-family : Arial; /* on utilise Arial, c'est plus beau ^^ */
        font-size : 12px; /* hauteur du texte : 12 pixels */
}

#menu a /* Contenu des listes */
{
        display : block; /* on change le type d'élément, les liens deviennent des balises de type block */
        padding : 0; /* aucune marge intérieure */
		/*background     : transparent url(".\images\boutong.gif") repeat ;*/
        /*background : #fff;*/ /* couleur de fond */        
        color : #000000; /* couleur du texte */
        text-decoration : none; /* on supprime le style par défaut des liens (la plupart du temps = souligné) */
        width : 215px; /* largeur */
		border-right : 0px solid #bebebe ;
}

#menu li /* Elements des listes */      
{ 
        float : left; 
        /* pour IE qui ne reconnaît pas "transparent" */
        border-right : 0px solid #bebebe ;
		
}

/* IE ne reconnaissant pas le sélecteur ">" */
html>body #menu li
{
        border-right: 0px solid #6e6e6e ; /* on met une bordure transparente à droite de chaque élément */
}

#menu li ul /* Sous-listes */
{ 
        position: absolute; /* Position absolue */
        width: 215px; /* Largeur des sous-listes */
        left: -999em; /* Hop, on envoie loin du champ de vision */
		/*border: 1px solid #bebebe ; *//* on met une bordure blanche à droite de chaque élément */
		background : #fff; /* couleur de fond */ 
		border : 1px solid #a4a4a4 ;/* on met une bordure blanche à droite de chaque élément */
		
		
}


#menu li ul li /* Éléments de sous-listes */
{
        /* pour IE qui ne reconnaît pas "transparent" (comme précédemment) */
        border-left: 0px solid #bebebe; /* on met une bordure blanche en haut de chaque élément d'une sous liste */
}

/* IE ne reconnaissant pas le sélecteur ">" */
html>body #menu li ul li                
{
        border-top : 0px solid ##bebebe; /* on met une bordure transparente en haut de chaque élément */
}

#menu li ul ul 
{
        margin    : -22px 0 0 144px ; /* On décale les sous-sous-listes pour qu'elles ne soient pas au dessus des sous-listes */ 
        /* pour IE qui ne reconnaît pas "transparent" (comme précédemment) */
        border-left     : 0px solid #6e6e6e ; /* Petite bordure à gauche pour ne pas coller ... */      
}

/* IE ne reconnaissant pas le sélecteur ">" ... je me répète ;-) */
html>body #menu li ul ul                
{
        border-left     : 0px solid #6e6e6e ; /* on met une bordure transparente sur la gauche de chaque élément */
}

#menu li:hover ul ul, #menu li.sfhover ul ul /* Sous-sous-listes lorsque la souris passe sur un élément de liste */
{
        left: -999em; /* On expédie les sous-sous-listes hors du champ de vision */
}

#menu li:hover ul, #menu li li:hover ul, #menu li.sfhover ul, #menu li li.sfhover ul  /* Sous-listes lorsque la souris passe sur un élément de liste ET sous-sous-lites lorsque la souris passe sur un élément de sous-liste */
{
        left: auto; /* Repositionnement normal */
        min-height: 0; /* Corrige un bug sous IE */
}
#menu a:hover /* Contenu des listes */
{
        display : block; /* on change le type d'élément, les liens deviennent des balises de type block */
        padding : 0; /* aucune marge intérieure */
		
        /*background : #fff;*/ /* couleur de fond */        
        color : #ff8b00; /* couleur du texte */
        text-decoration : none; /* on supprime le style par défaut des liens (la plupart du temps = souligné) */
        width : 215px; /* largeur */
		font-weight : bold;
}


a.info {
   position: relative;
   color: black;
   text-decoration: none;
   border-bottom: 1px #ff9600 solid; /* on souligne le texte */
   
}
a.info span {
   display: none; /* on masque l'infobulle */
   
}
a.info:hover {
   background: none; /* correction d'un bug IE */
   z-index: 500; /* on définit une valeur pour l'ordre d'affichage */
   cursor: help; /* on change le curseur par défaut en curseur d'aide */
}
a.info:hover span {
   display: inline; /* on affiche l'infobulle */
   position: absolute;
   white-space: nowrap; /* on change la valeur de la propriété white-space pour qu'il n'y ait pas de retour à la ligne non-désiré */
   top: 30px; /* on positionne notre infobulle */
   left: 20px;
   background: white;
   color: #ff9600;
   padding: 3px;
   border: 1px solid #ff9600;
   border-left: 4px solid #ff9600;
}

ul 
{
   list-style-image: url("images/puce.gif");
}

.lien
{
  color : #f3a600;
  font-weight : bold;
  text-decoration : underline;
  font-family : Arial;
  font-size : 13px;
}
.lien:hover
{
  color : #58b2ff;
  font-weight : bold;
  text-decoration : underline;
  font-family : Arial;
  font-size : 13px;
}


#texte_info_site
{
	font-size : 12px;
	font-family : Arial;
	color : #555555;
	text-decoration : none;

}

.pole {
	font-size : 18px;
	font-family : Arial;
	color : #909090;
	text-decoration : none;
	font-weight : bold;
}

.pole:hover {
	font-size : 18px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;
	font-weight : bold;
}

#texte_n_it_12 {
	font-size : 12px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	font-style : italic;
}
#texte_defil {
	font-size : 14px;
	font-family : Arial;
	color : #ce7000;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}
#accueil {
	font-size : 14px;
	font-family : Arial;
	color : #909090;
	text-decoration : none;
	font-weight : bold;
}
#accueil:hover {
	font-size : 14px;
	font-family : Arial;
	color : #909090;
	text-decoration : underline;
	font-weight : bold;
}
#texte_n_it_12_lien {
	font-size : 12px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	font-style : none;
}
#texte_n_it_12_lien:hover {
	font-size : 12px;
	font-family : Arial;
	color : #000000;
	text-decoration : underline;
	font-style : none;
}
#texte_n_it_bold_16 {
	font-size : 16px;
	font-family : Arial;
	color : #ffffff;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}
#texte_n_it_bold_16:hover {
	font-size : 16px;
	font-family : Arial;
	color : #636363;
	text-decoration : none;
	font-style : italic;
	font-weight : bolder;
}
#texte_n_it_bold_16_menu {
	font-size : 16px;
	font-family : Arial;
	color : #aaaaaa;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}
#texte_n_it_bold_16_menu:hover {
	font-size : 16px;
	font-family : Arial;
	color : #ff9c00;
	text-decoration : none;
	font-style : italic;
	font-weight : bolder;
}


#texte_n_it_bold_11 {
	font-size : 11px;
	font-family : Arial;
	color : #ffffff;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}
#texte_n_it_bold_12 {
	font-size : 12px;
	font-family : Arial;
	color : #ffffff;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}
#texte_n_it_bold_15 {
	font-size : 15px;
	font-family : Arial;
	color : #ffffff;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}
#texte_n_bold_1_lien {
	font-size : 12px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_1_lien:hover {
	font-size : 12px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_12_lien {
	font-size : 12px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_12_lien:hover {
	font-size : 12px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_12 {
	font-size : 12px;
	font-family : Arial;
	color : #555555;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_12_txt {
	font-size : 12px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_it_bold_16_titre {
	font-size : 16px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}
#texte_n_it_bold_16_simple {
	font-size : 12px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}

#texte_n_bold_12_lien {
	font-size : 12px;
	font-family : Arial;
	color : #acacac;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_12_lien:hover {
	font-size : 12px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;
	font-weight : bold;
}

#texte_normal_noir {
	font-size : 12px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	
}
#liens_mot {
	font-size : 12px;
	font-family : Arial;
	color : #acacac;
	text-decoration : none;
	font-weight : bold;
}
#liens_mot:hover {
	font-size : 12px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_description {
	font-size : 12px;
	font-family : Arial;
	color : #acacac;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_plaquette {
	font-size : 10px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_plaquette:hover {
	font-size : 10px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_14_lien {
	font-size : 14px;
	font-family : Arial;
	color : #acacac;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_bold_14_lien:hover {
	font-size : 14px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_it_bold_14 {
	font-size : 14px;
	font-family : Arial;
	color : #ffffff;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}
#texte_n_bold_10_lien {
	font-size : 09px;
	font-family : Arial;
	color : #acacac;
	text-decoration : none;
}
#texte_n_bold_10_lien:hover {
	font-size : 09px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;
	
}

#slogan2 {
	font-size : 14px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;
	font-weight : bold;
}
#slogan2v {
	font-size : 14px;
	font-family : Arial;
	color : #7dcc20;
	text-decoration : none;
	font-weight : bold;
}
#texte_news {
	font-size : 12px;
	font-family : Arial;
	color : #555555;
	text-decoration : none;
	
}
#texte_news2 {
	font-size : 11px;
	font-family : Arial;
	color : #555555;
	text-decoration : none;
	
}
#texte_news2:hover {
	font-size : 11px;
	font-family : Arial;
	color : #555555;
	text-decoration : none;
	
}
#texte_news:hover {
	font-size : 12px;
	font-family : Arial;
	color : #555555;
	text-decoration : underline;
	
	
}
#bd_n_bold_14_lien {
	font-size : 14px;
	font-family : Arial;
	color : #a4a4a4;
	text-decoration : none;
}
#bd_n_bold_10_lien {
	font-size : 12px;
	font-family : Arial;
	color : #a4a4a4;
	text-decoration : none;
}
#bd_n_bold_10_lien:hover {
	font-size : 12px;
	font-family : Arial;
	color : #8c8c8c;
	text-decoration : none;
}

#texte_news_12 {
	font-size : 12px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : none;

}
#texte_news_12:hover {
	font-size : 12px;
	font-family : Arial;
	color : #ff8b00;
	text-decoration : underline;
}
#texte_n_it_bold_16n {
	font-size : 16px;
	font-family : Arial;
	color : #414141;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}


#hr1 {
	color: #ededed;
}
#back {
	background: white url(images/gris.gif) no-repeat;
	
}

#pgest {
	font-size : 12px;
	font-family : Arial;
	color : #ff7e00;
	text-decoration : none;
	font-weight : bold;
	}
	
#pclient {
	font-size : 12px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	
}
#metier {
	background-color : #77bbd4;
}

#metier:hover {
	background-color : #77bbd4;
}

#texte_n_bold_14_lien_metier {
	font-size : 14px;
	font-family : Arial;
	color : #4d4d4d;
	text-decoration : none;
	font-weight : none;
	
}
#texte_n_bold_14_lien_metier:hover {
	font-size : 14px;
	font-family : Arial;
	color : #4d4d4d;
	text-decoration : underline;
	font-weight : none;
	
}
#texte_n {
	font-size : 12px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	font-weight : bold;
}
#texte_n_16 {
	font-size : 16px;
	font-family : Arial;
	color : #000000;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}
#texte_o_16 {
	font-size : 20px;
	font-family : Arial;
	color : #ff8400;
	text-decoration : none;
	font-style : italic;
	font-weight : bold;
}

.materiel {
	border : 0px solid #ffffff ;

}