* 
	{
		box-sizing: border-box;
	}

.responsive
	{
		margin: auto;
		width: 1200px;
	}

@media screen and (max-width: 1200px)
	{
		.responsive
		{
			width: 100%;
		}
	}
	
.capsule-left-20
	{
		float: left;
		height: 100%;
		width: 20%;
	}
	
.capsule-right-80
	{
		float: right;
		height: 100%;
		width: 80%;
	}
	
.logo
	{
		height: 80px;
		padding-right: 25px;
	}

@media screen and (max-width: 1200px)
	{
		.logo
		{
			display: none;
		}
	}

.content
	{
		padding: 16px;
		min-height: 450px;
		text-align: center;
	}

.titre
	{
		position: absolute;
		top: 80%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
	}
	
.inline-block
{
	display: inline-block;
}

.sticky 
	{
	  position: fixed;
	  top: 0;
	  width: 100%;
	}

.sticky + .content
	{
	  padding-top: 60px;
	}

/* Apparence du contenu de page*/

#bgsilver
	{
		background-color: silver;
	}

#bg333333
	{
		background-color: #333333;
	}

#bg333333
	{
		background-color: white;
	}

.tab
	{
		overflow: hidden;
		border-top: 2px solid #FFCC00;
		background-color: #666666;
	}

/* Style the buttons that are used to open the tab content */
.tab button
	{
		background-color: inherit;
		float: left;
		border: none;
		outline: none;
		cursor: pointer;
		padding-top: 12px;
		padding-bottom: 12px;
		transition: 0.3s;
		color: white;
		font-size: medium;
		width: 25%;
	}

/* Responsive  */
@media screen and (max-width: 1200px) 
{
.tab button
  {
    font-size: small;
  }
}

/* Change background color of buttons on hover */
.tab button:hover
	{
		background-color: #333333;
	}

/* Create an active/current tablink class */
.tab button.active
	{
		background-color: #FFCC00;
		color: black;
	}

/* Style the tab content */
.tabcontent 
	{
		display: none;
		padding-top: 12px;
		height: 400px;
	}

.capsule-left
	{
		float: left;
		top: 20px;
		right: 20px;
		bottom: 20px;
		left: 20px;
		height: 100%;
		width: 50%;
	}	

.capsule-right
	{
		float: right;
		top: 20px;
		right: 20px;
		bottom: 20px;
		left: 20px;
		height: 100%;
		width: 50%;
	}
	
.capsule-responsive
	{
		display: inline-block;
		float: center;
		top: 20px;
		right: 20px;
		bottom: 20px;
		left: 20px;
		height: 100%;
		width: 27.5%;
	}

@media screen and (max-width: 1200px) 
{
.capsule-responsive
  {
    width: 45%;
  }
}

@media screen and (max-width: 1000px) 
{
.capsule-responsive
  {
    width: 90%;
  }
}

/* Apparence du texte */
h1
	{
		text-decoration: none;
		text-align: center;
		color: black;
		font-family: Arial;
		font-size: large;
		font-weight: bold;
		border-bottom: 2px solid #FFCC00;
		margin: 40px;
	}

h2
	{
		text-decoration: none;
		text-align: center;
		color: black;
		font-family: Arial;
		font-size: medium;
		font-weight: bold;
		border-bottom: 2px solid #FFCC00;
		background: rgba(255,255,255,0.5);
	}
	
h3
	{
		text-decoration: none;
		text-align: center;
		color: black;
		font-family: Arial;
		font-size: xxlarge;
		font-weight: bold;
		background: rgba(255,204,0,0.5);
	}
	
h4
	{
		text-decoration: none;
		text-align: center;
		color: #333333;
		font-family: Arial;
		font-size: 25px;
		font-weight: bold;
		background: rgba(255,204,0,0.5);
		height: 40px;
		padding-top: 5px;
	}
	
	
h6
	{
		text-align: justify;
		font-family: Arial;
		font-size: large;
		font-weight: normal;
		padding: 5px;
	}

p
	{
		text-align: justify;
		font-family: Arial;
		font-size: medium;
		font-weight: normal;
		padding: 5px;
	}

#triangle 
	{
		display: inline-block;
		width: 0;
		height: 0;
		border-top: 9px solid transparent;
		border-bottom: 9px solid transparent;
		border-left: 15px solid #333333;
	}
	
#copyright
{
  position: fixed;
  bottom: 0px;
  left: 40px;
  padding: 5px;
  width: 280px;
  height: 20px;
  border-radius: 7px 0 0 7px;
  background-color: silver;
  text-align: center;
  font-size: x-small;
}

#button-modal1
{
		color: #232939;
		font-size: medium;
		text-decoration: none;
		border: 2px solid #232939;
		padding: 5px;
}

@media screen and (max-width: 1280px)
{
#button-modal1
	{
		font-size: small;
	}
}

@media screen and (max-width: 900px)
{
#button-modal1
	{
		font-size: x-small;
	}
}

#button-modal1:hover
	{
		color: #e6e7e8;
		text-decoration: none;
		border: 2px solid #232939;
		padding: 5px;
		background-color: #232939;
	}

.modal1 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  bottom: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal1-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close-modal1 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal1:hover,
.close-modal1:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#button-modal2
{
		color: #232939;
		font-size: medium;
		text-decoration: none;
		border: 2px solid #232939;
		padding: 5px;
}

@media screen and (max-width: 1280px)
{
#button-modal2
	{
		font-size: small;
	}
}

@media screen and (max-width: 900px)
{
#button-modal2
	{
		font-size: x-small;
	}
}

#button-modal2:hover
	{
		color: #e6e7e8;
		text-decoration: none;
		border: 2px solid #232939;
		padding: 5px;
		background-color: #232939;
	}

.modal2 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  bottom: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal2-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close-modal2 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal2:hover,
.close-modal2:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 

#button-modal3
{
		color: #232939;
		font-size: medium;
		text-decoration: none;
		border: 2px solid #232939;
		padding: 5px;
}

@media screen and (max-width: 1280px)
{
#button-modal3
	{
		font-size: small;
	}
}

@media screen and (max-width: 900px)
{
#button-modal3
	{
		font-size: x-small;
	}
}

#button-modal3:hover
	{
		color: #e6e7e8;
		text-decoration: none;
		border: 2px solid #232939;
		padding: 5px;
		background-color: #232939;
	}

.modal3 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  bottom: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal3-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close-modal3 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal3:hover,
.close-modal3:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 

#myVideo {
  top: 50%;
  right: 50%;
  transform: 50% 50%;
  min-width: 60%;
  min-height: 60%;
}