@charset "utf-8";

/***************
 * Importation *
 ***************/
/*@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");*/
@import url("fonts/fontawesome/css/fontawesome.css");
@import url("fonts/fontawesome/css/regular.css");
@import url("fonts/fontawesome/css/solid.css");
@import url("fonts/convergence/stylesheet.css");
@import url("fonts/ubuntu/stylesheet.css");
@import url("w3-colors-signal.css");
/*@import url("rangeslider.css");*/
@import url("rangeslider.css?v=M88Pm2lAEx");

/*****************
 * Style général *
 *****************/
html
{
	top: -40px;
}

html, body
{
	font-size: 16px;
	text-align: justify;
}

html, body, h3, h4, h5, h6
{
	font-family: convergenceregular, sans-serif;
}

h1, h2
{
	font-family: ubunturegular, sans-serif;
}

body
{
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

:focus
{
	outline: none;
}

a
{
	text-decoration: none;
	font-weight: bold;
}

.w3-bar a, .w3-bar-block a
{
	font-weight: normal;
}

/****************
 * Colorisation *
 ****************/
.video
{
	border: 0;
	width: 100%;
	height: 43em;
}

.blur
{
	filter: blur(5px);
	-webkit-filter: blur(5px);
	padding: 4px;
}

/***********
 * Tooltip *
 ***********/
.tooltip
{
	position: relative;
	display: inline-block;
}
.tooltip .tooltiptext
{
	visibility: hidden;
	width: 64px;
	background-color: #555;
	color: #fff;
	text-align: center;
	padding: 2px;

	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -32px;

	opacity: 0;
	transition: opacity 0.3s;
}
.tooltip .tooltiptext::after
{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}
.tooltip:hover .tooltiptext
{
	visibility: visible;
	opacity: 1;
}
