/*
ORDRE DES PRIORITE DES SPECIFICITÉ CSS (de la moins prioritaire à la plus prioritaire
p {color:red;}
p.largetext
p#largetext
body p#largetext
body p#largetext ul.mylist
body p#largetext ul.mylist li
*/

/*marge et padding = top right bottom left*/
* {margin:0;padding:0;}/*ici on annule les marges par defaut des naigateur pour etre sur de nos dimensions*/
body{
font-family:verdana, helvetica, sans-serif;/*sans-serif sert a definir la police du système par defaut (arial, helvetica...)*/
font-size:100%;/*par defaut la police est à l'échelle 1/1 des préférences de l'utilisateur*/
color:#000;
background-color:#fff;
text-align:center;
}

/*img{border:none;padding:0 25%;}*/
a{text-decoration:none;}/*enlève le soulignement des liens*/
img{border:0;}
/*toutes les lettres en majuscule=uppercase capitalize=première lettre en maj et lowercase=tout en minuscule none annule cette valeur*/
h1 {
text-align:center;
padding:.2em;
}

h2 {
font-size:1.5em;
font-weight:lighter;
text-decoration:underline;
text-transform:capitalize;
margin:1em .2em;
}

h3 {
font-size:1.2em;
font-weight:lighter;
text-decoration:underline;
text-transform:capitalize;
margin:.5em .5em;
}

h4 {
text-transform:capitalize;
}

form{display:none;}

p{
font-size:1em;
text-indent:3em;/*remplace la tabulation*/
text-align:justify;
line-height:1.5;/*interligne*/
margin:1em 1.5em;
}

p.intervalle{text-indent:0;text-transform:capitalize;text-align:center;}
p.intervalle img{margin:auto;}

p.exercice{font-size:.8em;line-height:1.2em;}
p.exercice:before{content:"EXERCICE : ";}

p.exemple{font-size:.8em;line-height:1.2em;}
p.exemple:before{content:"EXEMPLE : ";}

p.note{line-height:1em;}
p.note:before{content:"!-> NOTE <-! : ";font-weight:bold;color:#F00;}

p.arevoir{font-style:italic;font-size:.8em;color: #F00;}
p.arevoir:before{content:"note -=- brouillon";border :1px solid #F00;padding:.2em;}

p.navdetect{font-size:.8em;line-height:1em;}

/*=--=--=--=-- CORRECTION BUG IE --=--=--=--=*/

.clearfix:after{
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;}

/*backslash hack hides frpù IE mac */
* html .clearfix {height:1%;}
.clearfix {display:block;}
/* end backslash hack*/

/*=--=--=--=--=--  FIN CORRECTION BUG IE --=--=--=--=*/

div{margin-left:auto;
margin-right:auto;}

div#entete{display:none;}

div#menu{display:none;}

div#centre ul li {margin-left:5em;text-align:left;}

div#footer{
font-size:.6em;
}

div#staff{margin:45px 0 0 5px;}