body {
    background-color: #f3f3f3;
    font-family: Helvetica,Verdana,Arial,sans-serif;
    font-size: 12px;
}

h1 {
    text-align: center;
    font-size: 20px;
    text-decoration: underline;
}

h2 {
    text-align: left;
    font-size: 16px;
}

hr {
    border-top: solid 1px #9c9c9c;
    border-bottom: none;
} 

a {
  color: black;
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

table {
  border-collapse: collapse;
  font-size: 12px;    
}	

#bottomBox {
    position: absolute;
    margin: auto;
    left: 0; 
    right: 0; 
    width: 200px;
    text-align: center;
    bottom: 5px;
}

#contenu
{
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 10000px;
  float: left;
}

/* MSG */
.error{
    border: 1px solid red;
    padding: 5px;
    width: 500px;
    color: red;
    text-align: center;
      position: absolute;
      left: 50%;
      top: 20px;
      margin-left: -250px;
      background-color: #ffcccc;
  }
  .info{
    border: 1px solid green;
    padding: 5px;
    width: 500px;
    color: green;
    text-align: center;
      position: absolute;
      left: 50%;
      top: 20px;
      margin-left: -250px;
      background-color: #ccffcc;
  }
  
/* HEADER */
  #header {
    min-height: 40px;
  }
  
  #headLeft{
    float: left;
  }
  #headRight{
    float: right;
    text-align: right;
  }
  
  @media print
  {    
      .no-print, .no-print *
      {
          display: none !important;
      }
  }

  /* TABLE */
  #zebre td {
    border: 1px dotted black; 
    padding: 2px;
  }

  #zebre tr:nth-child(even){
    background-color: #EFEFEF;
  }	
  
  #zebre tr:hover
  {
    cursor: pointer;
    background-color: #91c6ff;
  }
  
  #grid td {
    border: 1px dotted black; 
    padding: 2px;
  } 
  
  #title td {
		font-weight: bold; 
    font-size: 13px;
		text-align: center; 
		padding: 5px; 
		background-color: #d7dbdd;
		border: 1px solid black;
	}	


  /* DIALOG */  
	#dialog{
		visibility: visible;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		text-align: center;
		z-index: 1000;
	}

	#dialog div{
		width: 400px;
		min-height: 50px;
		margin: 100px auto;
		background-color: #f2f2f2;
		padding: 15px;
		text-align: center;
		font-size: 15px;
		border: 1px solid black;
		position: absolute;
		left: 50%;
		top: 100px;
		transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
	}

	#fondGris{
		background-color: gray;
		opacity: 80%;
		visibility: visible;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 500;	
	}