
* {
  box-sizing: border-box;
}

body {
	background-image: url("images/zertxtr.gif");
	font-family: Calibri, Arial, Helvetica, sans-serif; 
	font-size: 16px;
	margin: 0; 
	text-decoration: none;
}	

/* definitions */
.DivInfo {
	max-width: 400px;
	margin: auto;
	background-color:#FFFFDD;
	color: black;
	padding: 3px;
	border: 3px solid #FFA07A;
	border-radius: 15px;	
	text-align: center;
}
h2 {
	text-align: center;
	margin: 0px;
}

h3 {
   color: blue; 
	font-size: 16px;	
	text-indent: 16px;
	margin: 5px 5px;		
}	

table {
	border-collapse: collapse;
	width: auto;	margin: auto;
}
tr, th, td {
	text-align: center;
	border-bottom: 1px solid grey;
  	padding: 3px 10px;
}
tr :hover {
	background-color: #D6EEEE;
}

a:link {
	color: blue; 
   text-decoration: none;
}

a:visited {
   text-decoration: none;
}
a:hover { 
   color: white;
	background-color: blue;	
   text-decoration: none;
}
a:active {
   text-decoration: none;
}

a  { 
   text-decoration: none; 
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* ------ conteneur horizontal ---- */
.mycontainer {
  display: flex;
}
.mycontainer > div {
  width: auto;
}

/* ---------------------- RESPONSIVE -------------------------------- */
.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0px 4px;
}


/* Creation de 3 colonnes identiques a l'horizontale */
.column {
  -ms-flex: 33%; /* IE10 */
  flex: 33%;
  max-width: 33%;
  padding: 0px 4px;
}

.column div{
	border-radius: 10px;
	margin-top: 5px;
	padding: 3px;
	width: 100%;
}

/* colonnes  Image*/
.column img {
  margin-top: 5px;
  vertical-align: middle;
  width: 100%;
}

/* 2 colonnes  */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}



/*--- zoom image --- 

.responsive {
  padding: 0 6px;
  float: left;
  width: 10%;
}


@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 400px) {
  .responsive {
    width: 100%;
  }
} 
*/ 