@charset "iso-8859-1";

@media screen {

 
 /*==============================
            MISE EN PAGE
   ==============================*/
  /* === CENTRER SUR LA PAGE ===
    Source : http://edu.ca.edu/article207.html
  */
 body {
    text-align: center;
    margin : 0;
 }
 #page {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align:left;

    border : 5px solid black;
    background-color : #C6BB80;
    color: #000000;
    
    padding : 0;
 }
 
  /* === BLOCS D'INFORMATION === */
  /* stylage général d'un blocs d'information */
  #image img, #nom, #info-desc, #info-eau, #infolong, .section-rapport{
    margin : 4%;
    padding : 1%;
    
    border : 5px solid black;
    
    background-color : #CCCCCC;
    color: #000000;
  }
  
  /* Image du poisson */
  #image img{
    float :left;
    padding : 0%;    
    width : 40%;
    max-height : 40%;
  }
  
  /* stylage spécifique pour certains blocs */
  #nom, #info-eau{
    float :right;
    width : 38%;
  }
  #info-desc {
    float :left;
    width : 38%;
  }
  #info-desc, #info-eau, #infolong{
    margin-top : 0;
  }
  
  /* === CLEARER ===
  Pour ajuster les retours à la ligne*/
  .clearer{
    clear :both;
    width:100%;
    height : 0;
  }
  

 /*==============================
            EFFETS VISUELS
   ==============================*/
  /* === DÉGRADÉ DE COULEURS EN CSS ===*/
 body {
    /*Image contenant un dégradé sur 1px de largeur (source : http://www.discoverthecoast.com/)*/
    background : transparent url(../images/bg.jpg) repeat-x;
    /*Ceci est la couleur du background à la fin du repeat pour donner un effet de continuité*/
    background-color : #BBE0FA;
 }


 /*==============================
          POLICE ET TEXTE
   ==============================*/
  body{
      font-size : 1em;
      color: #000000;
  }
  /* Titre de la page (nom scientifique du poisson)*/
  h1 {
    text-align: center;
    color: #FFFFFF;
    font-size : 3em;
  }
  dt{
    font-weight : bold;
    font-size : 1.2em;
    color : #000066;
    margin-top : 1em;
  }
  
.encadré{
  border-collapse :collapse;
  border: 5px double black;
}
.encadré th, .encadré td{
  border : 1px solid black;
}
.encadré th{
  text-align : center;
}

  
 /*==============================
        POPUPS D'INFORMATION
   ==============================*/
  /* Popup du pH*/
   #popup-ph, #popup-gh{
    background-color: #FFFFFF;
    border : 3px solid black;
    
    font-size:0.75em;
    color :black;
    text-align :justify;
    
    position: absolute;

    width : 300px;
  
    overflow: hidden;
    visibility: hidden;
    
    margin-left : 1em;
    margin-top : -2em;
    padding : 1em;
    
    z-index: 100;
   }
   
   
}