
body 
{
/*   background-color: darkgray;  */
  /* background-color: yellow; */
	background-color: white;
  /*font-family: 'Open Sans Condensed', sans-serif;*/
  font-family: 'Roboto', sans-serif;
	padding-left:5%;
		padding-right:5%;
	padding-top:1%;
}
/* Mise en forme des titres */

small 
{font-size: 8px;}

h1,h2,h3,h4,h5
{
/*	font-family:'Sonsie One', cursive;*/
/*	font-style: italic;*/
	color:white;
	background-color:green;
	font-family: 'Roboto Condensed' ;
	font-weight:900;
	padding-top:0.9em;
	padding-bottom:0.9em;
	margin: 5px 0;
}

.tryellow
{
	background-color:yellow;
}


h1
{
    font-size: 50px ;
/*
	padding-top:5%;
	padding-bottom:30px;
*/
}

h2
{
    font-size: 40px ;
/*
	padding-top:5%;
	padding-bottom:30px;
*/
}
h1,h2,pre
{
text-align: center;	
}

h3
{ 
	font-size: 30px ; 
	padding-left:2px;
/*	
	padding-top:50px;
	padding-bottom:20px;
*/
}

/* Mise en forme paragraphe p */

p
{
  padding:0 2px ;
}

/* Mise en forme header */
header 
{
  padding: 15px;
  margin: 0px;
  float: top;
  background-color: darkgray;
}

header h1
{
	color:white;
  text-shadow: black 0 4px;
  margin : 0.1em 0;
}

/* Mise en forme logo */

.tf_sticky_logo  
{
  height: 100px;
  width: 100px;
  top: 10px;
  left: 10px;
  margin-right:10px;
  border:none;
  vertical-align:middle;
}

/* mise en forme nuage de mots */
.cloud1, .cloud2, .cloud3, .cloud4, .cloud5
{
	display: inline;
}

.cloud1
{
	color: blue;
	font-size: 1.2rem;
}
.cloud2
{
	color: red;
	font-size: 0.8rem;	
}

.cloud3
{
	color: green;
}

.cloud4
{
	color: brown;
	font-size: 1.4rem;
}

.cloud5
{
	color: purple;
	font-size: 0.7rem;
}


/* Mise en forme nav */
/**/
#mynav
{
	display:flex;
	justify-content: space-between;
	padding-left:unset;
	padding-right:unset;
	padding-top:unset;
}
/**/
#navencapsulate
{
	width:90%;
}
#site-logo
{
	padding: 0 5px;
}
/**/
nav, footer 
{
  padding: 15px 0;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color : white;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
/**/
/**/
nav ul, footer ul 
{ 
  margin:0;
  padding:0;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

nav ul li, footer ul li 
{ 
  list-style-type: none;

}

nav ul li a, footer ul li a
{ 
  text-decoration: none;
  color: #707070;

} 
nav ul li, footer ul li a
{ 
	vertical-align: middle;
	font-family: "Roboto Condensed" !important;
	font-weight: 700 !important;
	font-size: 1.4em !important;
	padding: 0.6em 0.94em;
	transition: color .2s ease-in-out;
} 

nav ul li input
{ 
	vertical-align: middle;
	font-family: "Roboto Condensed" !important;
	font-weight: 700 !important;
	font-size: 1em !important;
} 

nav ul li input::placeholder
{ 
	color: #c0c0c0;
	font-weight: 700 !important;
	font-size: 0.8em !important;
	padding: 0em 0em;
} 

nav ul li a.current-item, footer ul li a.current-item, nav ul li input.current-item
{
	color: #44bfe3;
}
/**/
.highlight-link > a 
{
    border: none;
    background-color: rgba(200,200,200,.25);
    color: #000;
    padding: 0.3em 1em;
    margin-left: 0.6em;
    margin-right: 0.6em;
    border-radius: 30px;
}	
nav ul li a:hover, footer ul li a:hover, nav ul li input:hover 
{ 
  color: orange;
	transition: color .2s ease-in-out;
}

nav form 
{ 
  width: 40%;
}

nav form input.button
{ 
  color: white;
  background-color: black;
}

/* menu burger 
source https://blog.lapasserelle.school/tutoriels/creer-un-menu-mobile-avec-css-et-javascript/
*/
#burger
{
	width:30px;
	height:2px;
/*	background-color:white;*/
	background:blue;
	display:inline-block;
	position:relative;
	margin-bottom: 6px;
}

#burger::before,
#burger::after
{
	content:'';
	width:30px;
	height:2px;
/*	background-color:white;*/
	background:blue;
	display:inline-block;
	position:absolute;
	transform-origin:center;
	transition: all 0.3s ease;
}

#burger::before
{
	top:-7px;
}

#burger::after
{
	top:7px;
}

#burger.open
{
	background:transparent; /* la barre du milieu disparait */
}

/* celles du haut et du bas s'inclinent pour former une croix */
#burger.open::before
{
	transform: rotate(45deg);
	top:0px;
}

#burger.open::after
{
	transform: rotate(-45deg);
	top:0px;
}

nav ul li ul 
{
  display: block;
/*  background:pink; */
	background:white; 
 position:absolute; 
width:100%; 
  left:0;
/*  top:100%; */
  padding:10px 0;
  transform:scaleY(0);
  transform-origin:center top;
  transition:all 0.3s ease;
}
nav ul li ul.open 
{
  transform:scaleY(1);
}
nav ul li ul li {
  padding:2px 0;
  text-align:center;
  
}

/* lien rapport des cartes */
.lien-rapport a
{
	background-color: #052937;
	color: white;
	text-decoration: none;
	padding: 5px 10px;
}

mark
{
	background-color: #FFFF00;
}
/* Mise en forme main */
main 
{
  margin-left: 5px;
  margin-right: 5px;

  font-style: normal;
  background-color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Mise en forme class notaside regroupant section et article */

.notaside
{
  width: 70%;
  margin: 0;  
  padding: 0;
}

/* Mise en forme section */
section
{
  padding: 15px 0;
  width: 100%;
}

/* Mise en forme article */
article
{
  padding: 5px 0;
/*  width: 100%; */
	width: 85%;
}

/* Mise en forme aside */

aside 
{
  display:block;
  float: right;
  /*width: 25%;*/
  width: 190px;
/*  padding-left: 5px;*/
/* padding-right: 5px; */
  font-style: italic;
  background-color: white;
}

/* Mise en forme footer */
footer
{
  width: 70%; 
  margin-top: 5px;
  float: left;
  font-style: normal;
  text-align: center;
  background-color: white;
}

/* specific layout */

.tabcodiftable
{
  table-layout: fixed;
  width: 100%;
  word-wrap: break-word;
}	

.tabcodiftableMax
{
  table-layout: fixed;
  width: 100%;
  word-wrap: break-word;
}	

div.tableEncapsulate
{
	width:100%;
}

table { border-collapse: collapse; }

td + td ,
th + th { border-left: 1px dotted; }
tr + tr { border-top: 1px  dotted; }

/*
td
{ 
	padding: 5px;
}

th
{ 
	padding: 10px;
}
*/

td
{ 
	padding-top: 5px;
	padding-bottom: 5px;
	vertical-align: top;

}

th
{ 
	padding-top: 10px;
	padding-bottom: 10px;
}

/* flex row */
.MyRow 
{
    display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.MyCol 
{
	padding: 1em;
/*	border: solid; */
}

strong
{
	color: darkblue;
}

.flexrow
{
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
	justify-content: flex-start;
}

.flexdiv
{
	width: 250px;
	padding: 10px;
/*	margin: 10px; */
/*
	align: center;
	margin-left: auto;
    margin-right: auto 
*/

/*
	display: block;	
*/
}

.imgflexdiv
{
	height: 100px;
/*	align: center; */
	margin-left: auto;
    margin-right: auto;
	display: block;	
}

.hide
{
	display:none;
}

/* The switch - the box around the slider */
.switch 
{
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}


/* Hide default HTML checkbox */
.switch input 
{
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider 
{
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before 
{
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider 
{
  background-color: #2196F3;
}

input:focus + .slider 
{
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before 
{
  -webkit-transform: translateX(13px) translateY(-1px);
  -ms-transform: translateX(13px) translateY(-1px);
  transform: translateX(13px) translateY(-1px);
}

/* Rounded sliders */
.slider.round 
{
  border-radius: 17px;
}

.slider.round:before 
{
  border-radius: 50%;
}


.center
{
	/* border: 5px solid; */
	margin: auto;
	/*width: 50%;*/
	width: 70%;
	text-align: center;
	padding: 10px;
	display: block;	
}

ul#footerlist li 
{ 
	list-style-type: none;
	vertical-align:middle;
	width: 250px;
	padding:0px 0 10px 0;
}

ul#footerlist
{ 
	display:flex;
	justify-content: space-between;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
}


/* compliance with mobile devices */ 
@media screen and (min-width:1026px) 
{
  /* CSS for screens that are 1026 pixels or more will be put in this section */
	header 
	{
	  height: 15%;
	}
	nav
	{
	  margin-left: 0;
	  margin-right: 0;
	}	
	footer 
	{
	  margin-left: 10%;
	  margin-right: 10%;
	}	
	footer 
	{
	  height: 15%;
	}	
	textarea[name="Adresse"]
	{
		/* width:55em;*/
	}
}

@media screen and (max-width:1025px) 
{
  /* CSS for screens that are 1025 pixels or less will be put in this section */

  /* removing space on the side */
	nav, footer, main 
	{

		width:100%;
		margin-left: 2px;
		margin-right: 2px;
	}
	h1
	{
		font-size: 50px ;
	}
	h2
	{
		font-size: 40px ;
	}
	textarea[name="Adresse"]
	{
		/*width:40em;*/
	}
	article
	{
		width: 100% !important; 
	}
	aside 
	{
	  display: none;
	  width: 0%;
	}

}
@media screen and (max-width:710px) 
{
  /* CSS for screens that are 710 pixels or less will be put in this section */

  /* aside is put underneath*/
  /* search form is put on a second line*/

	nav ul li, footer ul li a
	{ 		
		padding: 0.6em 0.1em;
	} 

	.notaside, nav form, nav ul
	{
		width:100%;
	}
	nav form
	{
		text-align: center;
		width: 80%;
	}
	.tf_sticky_logo  
	{
	  height: 75px;
	  width: 75px;
	}
	main 
	{
	  width: 100%;
	  margin-left: 2%;
	  margin-right: 2%;
		
	}

	article
	{
		width: 100%;
	}
	aside 
	{
	  display:none;
	  width: 0%;
	}
	pre
	{
	    white-space: pre-wrap;
	}
	.hidesmall
	{
		display:none;
	}
	textarea[name="Adresse"]
	{
		 width:20em; 
	}
	select {
        width: 90%;
    }
	h1
	{
		font-size: 40px ;
	}
	h2
	{
		font-size: 35px ;
	}
	.tNbEffetPfizer, .tNbEffetModerna, .tNbEffetAstraZeneca, .tIndice
	{
		display: none;
	}

}
@media screen and (max-width:350px) 
{
/*
	nav ul 
	{
		display:block;
		text-align: center;
	}
*/
	#notalternate, #gplus
	{
		display:none;
	}
	header
	{
		height: 1.5em;
		padding: 2px;
	}
	section, article
	{
		padding: 2px 0;
	}
	h1
	{
		font-size:1.4em;
		margin: 1px;
	}
	h2
	{
		font-size:1.2em;
		margin: 1px;
	}
	h3
	{
		font-size:1em;
		margin: 2px;
	}
	p
	{
		margin-block-start: 2px;
	}
	.logo 
	{
		height: 30px;
		width: 30px;
	}
	aside 
	{
		display:none;
		width: 0%;
	}
	.notaside
	{
		width: 100%;
	}
	nav, footer 
	{
		width:100%;
	}	
	nav form
	{
		width: 100%;
	}
	nav ul, footer ul 
	{ 
		width: 100%;
	}
	pre
	{
	    white-space: pre-wrap;
	}
	.hidesmall
	{
		display:none;
	}
	textarea[name="Adresse"]
	{
		width:15em;
	}
	select {
        width: 90%;
    }
	h1
	{
		font-size: 15px ;
	}
	h2
	{
		font-size: 13px ;
	}
}

@media screen and (max-width:320px) 
{

	#linkedin
	{
		display:none;
	}
}
