@charset "utf-8";

/* CSS Document */

@font-face {
	font-family: gothic;
	src:url("GOTHIC.TTF");	
}
@font-face {
	font-family: gothicBold;
	src:url("GOTHICB.TTF");	
}
* {
	box-sizing: border-box;
	font-family: gothic;
	font-size: 16px;
	color: #1A1A1A;
}

body {
	margin: 0;
	padding: 65px 0 0 0;
	overflow-y:scroll;
	background-color: #232323;
}
.page {
	margin: 0 auto;
	background-color: #FFF;	
}
@media (max-width:479px) {
	.page {
		width: 320px;
	}
}
@media (min-width:480px) and (max-width:959px) {
	.page {
		width:  640px;
	}
}
@media (min-width:960px) {
	.page {
		width: 1280px;
	}
}

a {
	text-decoration: none;
	color: inherit;
}

/* header */
.header_section {
	width: inherit;
	height: 65px;
	background-color: #FFF;
	box-shadow: 0 0 10px 0 #999;
	position: fixed;
	z-index: 99;
	top:0;	
	padding: 10px 20px;
}
.header_section table {
	border-collapse: collapse;	
	margin: 0 auto;
	width: 100%;
}
.header_section th {
	font-weight:normal;
}
.header_section th:nth-of-type(1) {
    width: 200px;
	text-align: center;
}
.header_section th:nth-of-type(3)  {
	width: 160px;
	text-align: center;
}
.header_section ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.logo > div {
	overflow: hidden;
	width: 190px;
	height: 42px;
	margin: 0 auto;
}
.logo img {
	margin-top: -65px;
}
@media (max-width:959px) {
	.rubrique > ul > li > a:first-of-type {
		display: none;
		padding: 12px 0;
		cursor: pointer;
	}
	.rubrique_fixe > ul > li > a:first-of-type {
		display: block;
	}
	.rubrique > ul > li > ul {	
		position: relative;
		width: 320px;
	}
	.rubrique_fixe > ul > li > ul {
		display: none;
		position: absolute;
		box-shadow: 0 0 5px 0 #999;
	}
	.rubrique > ul > li:hover > ul {
		display: block;		
	}
	.rubrique > ul > li > ul a {
		display: block;
		background-color: #FFF;
		padding: 5px 18px;		
	}
	.rubrique > ul > li > ul a:hover {
		background-color: #eabb39;		
	}
}
@media (min-width:960px) {
	.rubrique {
		width: 850px;
	}
	.rubrique > ul > li > a:first-of-type {
		display: none;
	}
	.rubrique > ul > li > ul > li {
		display: inline-block;
		margin-right: -4px;
	}
	.rubrique > ul > li > ul > li > a {
		padding: 12px 18px;
	}
}

@media (max-width:479px) {
	.rubrique > ul > li > ul {
		left: 0;
	}
}
@media (min-width:480px) and (max-width:959px) {
	.rubrique > ul > li > ul {
		left:160px;
	}
}

.interface a:first-of-type > * {
	vertical-align: middle;
}
.interface {
	cursor: pointer;	
}
.interface > ul {
	width: 60px;
	margin: 0 auto;
}
.interface > ul > li > a {	
	display: block;
	padding: 12px 0;
}
.interface > ul > li > ul {
	display: none;
}
.interface > ul > li:hover > ul {
	display: block;
	position: absolute;
	box-shadow: 0 0 5px 0 #999;
}
.interface > ul > li > ul a {
	display: block;
	background-color: #FFF;
	padding: 5px 18px;		
}
.interface > ul > li > ul a:hover {
	background-color: #eabb39;		
}

/* footer */

.footer_section {
	background-color: #42210B;	
	padding: 32px 0;
}
.footer_section * {
	color: #FFFFFF;
	font-size: 14px;
}
.footer_section > div {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.footer_colonne {
	width: 50%;
	min-width: 320px;
	display: inline-block;
	margin-right: -4px;
	vertical-align: top;
}
.footer_colonne > div {
	width: 100%;	
	max-width: 480px;	
	vertical-align: top;
	padding: 0 20px;
}
.footer_section p {
	width: 100%;
	max-width: 280px;
	margin: 0 auto;
	padding: 18px 0;
}
.footer_section img {
	vertical-align:middle; 
	margin-right: 5px;
}
.footer_section input[name="newsletter"] {
	width: 190px;
	height: 25px;
	margin: 10px 5px 0 0;
	color: #000000;
}
.footer_section input[type="Submit"] {
	border-style: none;
	background: #EABB39;
	color: #42210B;
	width: 83px;
	height: 25px;
	cursor: pointer;
}
