head {
	min-height: 100%;
	size: 120%;
	background: #000000;
	background-repeat: repeat;
}

body {
	margin: 0px;
	min-height: 100%;
	size: 120%;
	padding: 0;
	background: #ffffff;
   	background-size: 100% auto;
	background-repeat: no-repeat;
	font-family: "RockfordSans";
}

#global {
	width: 1400px;
	height: auto;
	min-height: 1500px;
	text-align: center;
	margin: auto;
}

#extension-tableau {
	width: 1900px;
	height: auto;
	text-align: center;
	margin: auto;
}

#navigation {
	width: 1400px;
	margin: auto;
	background:#000000;
}

#navigation ul {
	list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0092BB;
}

#navigation li {
	float:left;
	margin:auto;
	padding:0;
	background-color:#0092BB;
}

#navigation li a {
	display:block;
	color:#F5F5F5;
	text-align: center;
	text-decoration:none;
	padding: 15px 25px;
}

#navigation li a:hover {
    color:#FFA500;
	font-weight: bold;
}
#tag {
	font-family: "RockfordSans";
	font-size: 14px;
	width: 100px;
	text-align: center;
	border-radius: 8px;
	border: 2px solid #999;
	color:#0092BB;
	border-color: #000e12;
	background-color: #FFFFFF;
	transition: transform 0.2s;
	font-weight: bold;
}

#tag:hover {
    color:#0092BB;
	transform: scale(0.98);
	cursor: pointer;
}

#cadre {
	text-align: center;
	width: 500px;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 30px;
	padding-top: 10px;
	border-radius: 10px;
	border: 2px solid #999;
	border-color: #000e12;
	background-color: #d8e2e6;
}

#champ {
	height: 25px;
	width: 270px;
	font-family: "RockfordSans";
	text-align: left;
	border-radius: 6px;
	border: 0px;
	border-color: #FFFFFF;
	background-color: #FFFFFF;
}

#text-area {
	resize: none;
	height: 140px;
	width: 270px;
	font-family: "RockfordSans";
	text-align: left;
	border-radius: 6px;
	border: 0px;
	border-color: #FFFFFF;
	background-color: #FFFFFF;
}

#bouton {
	font-family: "RockfordSans";
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 6px;
	border: 2px solid #999;
	border-color: #000e12;
	background-color: #FFFFFF;
}

#petit-bouton {
	font-family: "RockfordSans";
	text-align: center;
	border-radius: 6px;
	border: 2px solid #999;
	border-color: #000e12;
	background-color: #FFFFFF;
}

#boutons input:hover { 
    color:#0092BB;
}

.footer {
	background-color: #0092BB;
	margin-top: 100px;
	padding-top: 5px;
	height: 60px;
	width: 100%;
	color: white;
	text-align: center;
}

@font-face {
	font-family: "RockfordSans";
	src: url('RockfordSans-Light.otf');
}

.fade-out-message {
	width: auto;
	text-align: center;
	border-radius: 3px;
	transition: transform 0.3s;
	animation: fadeIn 1.5s;
	animation-fill-mode: both;
	animation-timing-function: ease;
}
.fade-out-text {
	padding: 10px;
}

.fade-out-message:hover {
	transform: scale(0.99);
	box-shadow: 0px 0px 0px 2px white inset;
	cursor: pointer;
}
.fade-out-message:active {
	animation: trigger 0.1s;
	animation-fill-mode: both;
}
.fade-out-message.in-progress-anim {
	animation: fadeOut 2s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.fade-out-message.did-fade-out {
	display: none;
}
.fade-out-text:active {
	animation: trigger 0.1s;
	animation-fill-mode: both;
}
.fade-out-text.in-progress-anim {
	animation: fadeOut 1.5s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.fade-out-text.did-fade-out {
	display: none;
}
@keyframes fadeOut {
    0% { opacity: 1; height: 44px;}
    100% { opacity: 0; color: white; height: 0; margin: 0; padding: 0; border: 0 solid;}
}
@keyframes fadeIn {
	0% { opacity: 0; color: white; height: 1px; margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; border: 0px solid;}
    100% { opacity: 1; height: 44px; width: auto; padding: auto; border: 1px solid;}
}
@keyframes trigger {}