html, body {
	padding: 0;
	margin: 0;
	height: 100%;
	background: url('../img/cover.png') no-repeat center fixed; 
	-webkit-background-size: cover;
	background-size: cover;
	font-size: 14px;
	font-family: "Regular", calibri, arial;
}

*, *::before, *::after {
	box-sizing: border-box;
	outline: none;
}

a {
	text-decoration: none;
}

.content {
	margin: auto;
	width: 1100px;
}

#site {
	z-index: 1;
	position: relative;
	margin: auto;
	background: #fff;
	width: 1100px;
	padding-bottom: 12px;
	overflow: hidden;
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.6);
}

header {
	padding: 22px 12px 22px 12px;
	background: #024159;
	background: -moz-linear-gradient(left,  #024159 0%, #003652 100%);
	background: -webkit-linear-gradient(left,  #024159 0%,#003652 100%);
	background: linear-gradient(to right,  #024159 0%,#003652 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#024159', endColorstr='#003652',GradientType=1 );
	overflow: hidden;
}

header .header-logo {
	display: inline-block;
	margin: 4px 12px 0 0;
	background: url('../img/logo.png');
	width: 381px;
	height: 38px;
	background-size: 381px 38px;
	background-repeat: no-repeat;
	vertical-align: top;
}

header form {
	float: right;
	display: inline-block;
	margin: -2px 0 0 0;
}

header form input[type="text"] {
	display: inline-block;
	width: 240px;
	border: none;
}

header form button, header form button:hover {
	display: inline-block;
	margin: 0 0 0 -32px;
	padding: 6px;
	background: none;
	border: none;
	color: #999;
	font: normal normal normal 24px/1 "Material Design Icons";
	font-size: 18px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translate(0, 0);
}

header form button::before {
	content:"\F349"
}

nav {
	position: relative;
	z-index: 2;
	background: #014760;
	overflow: hidden;
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.6);
}


nav a.nav-link {
	display: inline-block;
	margin: 0 -4px 0 0;
	padding: 12px 8px 12px 8px;
	color: #eee;
	font-size: 16px;
	vertical-align: middle;
}

nav a.nav-link.first {
	border: none;
}

nav a.nav-link:hover {
	color: #fff;
}

nav .nav-icon {
	display: inline-block;
	margin-top: -2px;
	font-size: 20px;
	color: #eee;
	vertical-align: middle;
}

nav a.nav-link.active {
	background: #eee;
	color: #014760;
	cursor: default;
}

nav a.nav-link.active .nav-icon {
	color: #014760;
}

article {
	padding: 10px;
}

article h1 {
	font-size: 18px;
	color: #014760;
	text-transform: uppercase;
}

input[type="text"], input[type="email"], input[type="password"], textarea, select {
	display: block;
	padding: 6px 12px 6px 12px;
	margin: 6px 0 0 0;
	width: 100%;
	border: 1px solid #ddd;
	color: #333;
	font-size: 14px;
	font-family: "Regular", calibri, arial;
	border-radius: 2px;
	font-size: 14px;
}

input:hover, textarea:hover {
	border-color: #aaa;
}

input:focus, textarea:focus {
	border-color: #014760;
	color: #014760;
}

textarea {
	resize: vertical;
	height: 440px;
}

input[type="submit"] {
	padding: 6px 12px 6px 12px;
	margin: 6px 0 0 0;
	border: none;
	background: #fff;
	font-size: 16px;
	width: 100%;
	color: #014760;
	font-weight: bold;
	cursor: pointer;
	text-transform: uppercase;
	transition: all 0.1s;
	border-radius: 2px;
	border: 1px solid #014760;
	font-family: "Bold", calibri, arial;
}

input[type="submit"]:hover {
	background: #014760;
	color: #fff;
}

strong {
	display: block;
	margin: 6px 0 6px 0;
}

h2 {
	padding: 2px 12px 2px 12px;
	font-size: 18px;
	text-transform: uppercase;
}

fieldset {
	padding: 6px 6px 8px 6px;
	margin: 0 0 6px 0;
	border: 1px solid #aaa;
	border-radius: 3px;
}

fieldset legend {
	color: #014760;
	font-weight: bold;
}

fieldset i {
	color: #014760;
}

fieldset ul {
	margin: 0;
}

.onglets {
	position: absolute;
	margin: -10px -10px 0 -10px;
	background: #eee;
	border-bottom: 2px solid #ddd;
	width: 20%;
	height: 100%;
	border-right: 1px solid #ddd;
}

.onglets .onglet {
	display: block;
	padding: 10px 14px 10px 12px;
	width: 100%;
	font-size: 16px;
	cursor: pointer;
}

.onglets .onglet.active {
	background: #014760;
	box-shadow: 1px 0px 0 #014760;
	color: #fff;
}

.onglet-content {
	display: none;
}

.onglets .onglet.active .icon-onglet {
	color: #fff;
}

.onglets .onglet .icon-onglet {
	font-size: 16px;
	color: #000;
}

.content-right {
	float: right;
	margin: -15px 0 0 0;
	width: 80%;
}

button {
	display: block;
	padding: 8px 18px 8px 18px;
	margin: 20px 0 0 0;
	background: #fff;
	color: #014760;
	font-size: 14px;
	border: 1px solid #014760;
	font-weight: bold;
	border-radius: 3px;
	cursor: pointer;
}

button:hover {
	background: #014760;
	color: #fff;
}

#codes {
	display: none;
}

.error {
	padding: 6px;
	margin: 8px 0 2px 0;
	background: #C81F1F;
	color: #fff;
	font-size: 14px;
	border-radius: 2px;
}

.success {
	padding: 6px;
	margin: 8px 0 2px 0;
	background: #5BC41F;
	color: #fff;
	font-size: 14px;
	border-radius: 2px;
}

img.presImg {
	display: inline-block;
	padding: 4px;
	max-width: 250px;
	max-height: 250px;
	border: 1px solid #ddd;
	border-radius: 3px;
	vertical-align: middle;
}

input[name="pres"] {
	display: inline-block;
	padding: 4px;
	margin: 0 12px 0 12px;
	border: 1px solid #ddd;
	font-size: 15px;
	min-width: 320px;
	border-radius: 3px;
	vertical-align: middle;
}

table {
	width: 100%;
	border: none;
	border-collapse: collapse;
}

table tr th {
	width: 50%;
	padding: 10px 0 10px 0;
	text-align: center;
	font-size: 22px;
}

table tr td {
	padding: 6px;
}

table.table th {
	width: auto;
}

table.table td {
	border: 1px solid #ddd;
	font-size: 22px;
}

.cat {
	display: inline-block;
	padding: 6px;
	margin: 0 6px 10px 0;
	color: #000;
	text-align: center;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 2px;
	min-width: 185px;
	transition: all 0.1s;
}

.cat:hover {
	background: #eee;
	color: #014760;
}

.cat:hover .icon-cat {
	color: #014760;
}

.cat .icon-cat {
	display: block;
	margin: 0 0 6px 0;
	font-size: 55px;
	color: #333;
}

#diapo {
	position: relative;
	height: 280px;
	text-align: center;
	background: no-repeat center;
	background-size: cover;
	overflow: hidden;
}

#diapo .diapo {
	display: none;
	position: relative;

}

#diapo .diapo-text {
	display: inline-block;
	margin: 120px 0 0 0;
	color: #fff;
	font-size: 45px;
	border-radius: 2px;
	text-shadow: 1px 1px 0 #000;
	font-family: calibri, arial;
	text-transform: uppercase;
}

#diapo .diapo-desc {
	display: block;
	margin: auto;
	margin-top: -5px;
	padding: 10px 15px 10px 15px;
	color: #fff;
	font-size: 18px;
	text-shadow: 1px 1px 0 #000;
	font-family: calibri, arial;
	text-transform: uppercase;
}

#diapo .diapo-remove, #diapo .diapo-update {
	z-index: 4;
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 6px;
	font-size: 34px;
	color: #fff;
	text-shadow: 1px 1px 0px #000;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 3px;
	cursor: pointer;
}

#diapo .diapo-update {
	right: 60px;
}

#diapo .diapo-remove:hover, #diapo .diapo-update:hover {
	background: rgba(0, 0, 0, 0.6);
}

#diapo .diapo-action {
	position: absolute;
	bottom: 15px;
	left: 10px;
	right: 10px;
	text-align: right;
}

#diapo .diapo-select {
	display: inline-block;
	padding: 14px 12px 10px 12px;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 3px;
}

#diapo .diapo-select-circle {
	display: inline-block;
	margin: 0 6px 0 6px;
	border: 3px solid #fff;
	width: 13px;
	height: 13px;
	background: #333;
	border-radius: 50%;
	cursor: pointer;
}

#diapo .diapo-select-circle:hover {
	background: #eee;
	border-color: #eee;
}

#diapo .diapo-select-circle.active {
	cursor: default;
	background: #fff;
}

#diapo .content {
	position: relative;
	height: 280px;
}

#diapo .diapo-temp {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	background: no-repeat center;
	background-size: cover;
}

.enable {
	float: right;
	width: 80px;
	height: 25px;
	border: 1px solid #014760;
	border-radius: 3px;
	overflow: hidden;
	text-align: center;
	cursor: pointer;
}

.enable-position {
	display: inline-block;
	padding: 4px 0 5px 0;
	text-align: center;
	width: 50%;
	font-size: 12px;
	vertical-align: top;
	font-family: calibri, arial;
}

.enable.enabled {
	border-color: #014760;
	color: #014760;
}

.enable.disabled {
	border-color: #bbb;
	color: #bbb;
}

.enable.enabled .enable-position {
	float: right;
	background: #014760;
	color: rgba(255, 255, 255, 0.6);
}

.enable.disabled .enable-position {
	float: left;
	background: #ccc;
	color: #eee;
}

.enable .enable-position::before {
	content: "|||";
}

.enable .enable-text {
	display: inline;
	font-family: "Light", calibri, arial;
	font-size: 14px;
	opacity: 0;
}

.enable.enabled .enable-text::before {
	content: "ON";
}

.enable.disabled .enable-text {
	float: right;
	margin: 3px 8px 0 0;
}

.enable.disabled .enable-text::before {
	content: "OFF";
}

input[name="image"] {
	padding: 4px;
	margin: 0 0 6px 0;
	border: 1px solid #ddd;
	font-size: 15px;
	min-width: 320px;
	border-radius: 3px;
	vertical-align: middle;
}

input[name="image"]:hover {
	border-color: #aaa;
}

.g-recaptcha {
	margin: 6px 0 0 0;
}

/* Réalisations */
.gallery-img {
	display: inline-block;
	width: 80px;
	height: 80px;
	padding: 4px;
	margin: 0 6px 0 0;
	border: 1px solid #ccc;
	border-radius: 2px;
	box-shadow: 0px 0px 4px -2px rgba(0, 0, 0, 0.4);
	vertical-align: top;
	cursor: pointer;
}

.gallery-img:hover {
	background: #fafafa;
}

.gallery-remove {
	display: inline-block;
	margin: -8px -0 0 -20px;
	padding: 2px 6px 2px 6px;
	background: #E50D0D;
	color: #fff;
	text-shadow: 1px 1px 0 #333;
	text-align: center;
	border-radius: 50%;
	border: 2px solid #fff;
	transition: all 0.1s;
	cursor: pointer;
}

.gallery-remove:hover {
	box-shadow: 0px 0px 4px 0px #E50D0D;
}

#gallery {
	position: relative;
	margin: 0 0 12px 0;
	height: 400px;
	background: #000;
	text-align: center;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	cursor: default;
}

#gallery img {
	height: 100%;
}

#gallery .gallery-left {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	cursor: pointer;
}

#gallery .gallery-right {
	z-index: 2;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	cursor: pointer;
}

#gallery .gallery-go-left {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	padding: 150px 42px 0 22px;
	font-size: 60px;
	color: #fff;
	width: 30px;
	text-shadow: 1px 1px 0 #000;
}

#gallery .gallery-left:hover, #gallery .gallery-right:hover {
	background: rgba(255, 255, 255, 0.1);
}

#gallery .gallery-go-left::before {
	content: "‹";
}

#gallery .gallery-left:hover .gallery-go-left, #gallery .gallery-right:hover .gallery-go-right {
	opacity: 1;
	transition: all 0.1s;
}

#gallery .gallery-go-right {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 150px 42px 0 22px;
	font-size: 60px;
	color: #fff;
	width: 30px;
	text-shadow: 1px 1px 0 #000;
}

#gallery .gallery-go-right::before {
	content: "›";
}

#gallery .gallery-text {
	z-index: 3;
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	font-size: 16px;
	color: #fff;
	text-shadow: 1px 1px 0 #000;
	text-align: center;
	background: rgba(255, 255, 255, 0.2);
}

#gallery .gallery-text-content {
	display: inline-block;
	padding: 8px 12px 8px 12px;
	border-radius: 2px;
}

#gallery .gallery-text input, #gallery .gallery-text button {
	margin: 0;
	display: inline-block;
	vertical-align: top;
}

#gallery .gallery-text button {
	padding: 8px 12px 7px 12px;
	font-size: 12px;
	margin: 0 0 0 2px;
	border: none;
}

#gallery .gallery-text button:hover {
	background: #eee;
	color: #000;
}

#gallery .gallery-text input[type="text"] {
	width: 360px;
	border: none;
}

#modBloc {
	background: #eee;
	margin-top: -14px;
	padding: 12px;
}