* 
	{
		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: 800px;
		text-align: center;
	}

.separation
	{
		background-color: #666666;
		position: relative;
		text-align: center;
		overflow: hidden;
		margin: auto;
		z-index: -1;
	}

.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%;
	}

/* 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;
}