/** styles de base **/ 
/** utilisés par le site & l'editeur ! **/ 
p, div, td, li {
  color:#FFF;
  font-family: 'Lato', sans-serif;
  font-weight:300;
  font-size:16px;
}



a {
  color:#FFF;
  text-decoration:none;
}
a:hover {
  color:#eb6e15;
  text-decoration:none;
}

div.spacer{

	clear: both;
    margin:0px;
    padding:0px;

}



h1 { /* titre de la page */
  padding:0px;
  margin:10px 0px;
  font-size:42px;
  font-family: 'Lato', sans-serif;
  font-weight:normal;
  color:#eb6e15;
  text-transform:uppercase;
   
}

h2 {
      color:#4E83B7;
      text-align:left;
      font-size:16px;
      border-bottom:1px solid #4E83B7;
         
      margin:5px;
      margin-left:0px;
      margin-right:0px; 
}
h3 {
    margin:0px;
    padding:0px;
}


textarea {
    overflow: auto;
}


/*
styles photos  pour alignement (utilisés par éditeur)
*/
.align_right {
  margin: 0 0 10px 10px;
  float:right;
}
.align_left {
  margin: 10px 10px 0 0;
  float:left;
}

/*
  styles pour les tableaux
  dispo dans tinymce > Format et plugin tinymce > Table notamment
*/

/* grille : bords sur toutes les cases */
.table_grille {
  display:table;
}
 .tr_grille {
    display:table-row;
 }
 .td_grille {
  width:auto;
  display:table-cell;
  padding:20px;
  vertical-align:middle;
 }

/* listing : bords bas */ 
table.table_listing {
  
}
 table.table_listing td {
  border-bottom:1px solid #999;
 }
 
 
/* liens */
a.lien_telecharger, div.lien_telecharger {

    width:60px;
    margin-top:5px;
    background-color: #83cde0;
    color:#fff;
    padding:4px;
    padding-left:24px;
    padding-right:6px;

    text-decoration: none;
    
    background-image:url('../../upload/puces/fleche_bas.png');
    background-repeat:no-repeat;
    background-position:2px 1px;
    
    border-bottom:2px solid #118fb5;
}
a.lien_telecharger:hover, div.lien_telecharger:hover {
    color:#000;
    background-color: #cfe9f0;
    text-decoration: none;
    background-image:url('../../upload/puces/fleche_bas_on.png');
}

a.lien_feuilleter, div.lien_feuilleter {

    width:60px;    
    margin-top:5px;
    background-color: #83cde0;
    color:#fff;
    padding:4px;
    padding-left:24px;
    padding-right:6px;

    text-decoration: none;
    
    background-image:url('../../upload/puces/feuilleter.png');
    background-repeat:no-repeat;
    background-position:2px 1px;
    
    border-bottom:2px solid #118fb5;
}

a.lien_feuilleter:hover, div.lien_feuilleter:hover {
    color:#000;
    background-color: #cfe9f0;
    text-decoration: none;
    background-image:url('../../upload/puces/feuilleter_on.png');
} 
 
/*
STYLES UTILISES PAR EDITEUR
NE PAS SUPPRIMER !!
*/

/** divs plugins **/
div.divplugin {
	font-size: 13px;
	line-height: 16px;
	height: 16px;
	display:block;
	color:#000;
	text-decoration: none;
	font-weight: bold;
	border: 1px dotted #a7a7a7;
	background-color: transparent;
	background: url(../images/spacer.gif);
}

.backtop {
        float:left;
        width:100%;
        text-align:right;
}

ul.liste_fleche li {
 display : list-item;
 list-style-type: none;
 background-image: url(../images/li_fleche_blanche.png);
 background-repeat: no-repeat;
 background-position: left center;

 margin-left:10px;
 padding:10px 0 10px 50px;  

}

ol {
  counter-reset: compteur;/* on initialise et nomme un compteur */
  margin:10px 0;
  padding:0;
} 
/*
ol li {
	list-style-type: none;
	counter-increment: compteur;
	margin: 10px 0;
}
ol li:before {
	content: counter(compteur); 
	padding: 10px;
	margin:0 10px 10px 0;
	vertical-align: top;
	background-color: #fff;
	-moz-border-radius: 10px;
	border-radius: 10px;
	font-weight: bold;
	font-size: 20px;
	color: #444;		
}
*/


ol li {
    position: relative;
    margin: 1em 2em;
    padding: 0px 10px 0 20px;
    list-style: none;
    counter-increment: compteur;
}
ol li:before {
	content: counter(compteur); /* on affiche le compteur */
    position: absolute;
    top: -2px;
    left: -1em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    
    margin-right: 20px;
    padding: 4px 10px;
    font-size:30px;
    color: #222;
    background: #fff;
    font-weight: bold;
    text-align: center;	
}

ol a {
  color:#eb6e15;
}