@charset "UTF-8";
/* CSS Document */

/* STYLE SHEET
CrÃ©Ã© par [Julie Hervieux]

	1. Reset CSS
	2. Font-Face
	3. Base
	4. Structure
	5. Texte et h1 ,h2
	6. Media Querry
	  */
	 
/*--------- 1. Reset CSS ---------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, section, article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, h1, p,a {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@font-face {
    font-family: 'bebas_neueregular';
    src: url('../font/bebasneue-webfont.eot');
    src: url('../font/bebasneue-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/bebasneue-webfont.woff2') format('woff2'),
         url('../font/bebasneue-webfont.woff') format('woff'),
         url('../font/bebasneue-webfont.ttf') format('truetype'),
         url('../font/bebasneue-webfont.svg#bebas_neueregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'signatureregular';
    src: url('../font/signature_regular-webfont.eot');
    src: url('../font/signature_regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/signature_regular-webfont.woff2') format('woff2'),
         url('../font/signature_regular-webfont.woff') format('woff'),
         url('../font/signature_regular-webfont.ttf') format('truetype'),
         url('../font/signature_regular-webfont.svg#signatureregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*--------- 3.Base ---------*/
html{
	height: 100%;
	font-family: Verdana, arial, sans-serif;
}

body{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background-color: #e8dcc6;
}
li, a, p, input{
	font-family: Verdana, arial, sans-serif;
	font-size: 1em;
}

/*--------- 4. Structure ---------*/
#wrapper{
	width: 100%;
	max-width: 960px;
	height: auto;
	margin: 0 auto;
}
header{
	width: 100%;
	height: auto;
	min-height: 150px;
	margin: 0;
	padding: 0;
	background-image: url(../img/fond_header_admin.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

/*--------- Header ---------*/
h1{
	font-family: 'bebas_neueregular', arial, sans-serif;
	font-size: 3em;
	color:#fff;
	padding:5% 0 5% 2%;
}
h2{
	display:block;
	float:left;
	width:30%;
	margin:0.25% 0 0 0;
	color:#1a150f;
	font-size: 1.2em;
}
h3{
	font-family: 'bebas_neueregular', arial, sans-serif;
	font-size: 1.5em;
	color:#563a2a;
	padding: 2%;
	text-align: center;
}
#form1 h3{
	margin:0 auto 3%;
}
h4{
	font-family: 'bebas_neueregular', arial, sans-serif;
	font-size: 1.9em;
	color:#563a2a;
	padding: 0 0 3% 1.5%;
}
header a{
	display:block;
	float:right;
	width:40%;
	padding:2% 1%;
	margin:2%;
	background-color: #fff;
	color:#563a2a;
	border-radius:5px;
	text-decoration: none;
	text-align: center;
}
#entetegauche{
	display:block;
	float:left;
	width:60%;
	height:auto;
	margin:1% 0.8%;
}
#entetedroit{
	display:block;
	float:left;
	width:35%;
	height:auto;
	margin:1% 0;
}
#entetedroit a:hover{
	color:#219ed7;
}

/*--------- Menu ---------*/
#container_menu{
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: -4% auto 1%;
	padding: 0;	
	background-image: url(../img/fondmenu.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}

#menu_principal ul{
	width: 100%;  
	max-width:960px;
	margin:auto;
	padding: 4% 0;  
	font-size: 0.9em;  
	font-weight: bold; 
	text-transform: uppercase;
	text-align: center; 
	list-style: none; 
}
#menu_principal li{  
    list-style: none;
    display: inline-block; 
    text-align: center; 
    padding: 0 1%;
}  
#menu_principal a{     
    width: 100%;   
    text-decoration: none; 
    color: #563a2a;  
}
#menu_principal a:hover{
	color:#b7926e;
}
#btn_menu{
	width:26px !important;
	height:26px;
	background:url("../img/btn_plus.png") no-repeat;
}
#btn_menu:active{
	background:url("../img/btn_plus_bleu.png") no-repeat;
}
#btn_menu:hover{
	background:url("../img/btn_plus_brun.png") no-repeat;
}

/*--------- boutons ---------*/
input[type="button"], input[type="submit"], input[type="reset"]{
	background-color: #219ed7;
	border:none;
	color:#fff;
	cursor:pointer;
	border-radius:5px;
}
input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover{
	color:#371805;
}
form li a{ 
	width:81px;
    	height:24px;
    	text-align: center;
    	line-height: 24px;
	border:none;
	color:#fff;
   	text-decoration: none; 
}
form li a:hover{
	color:#371805;
}
form ul li{
	display:block;
	float:left;
	padding:0.5%;
	margin:2% 1%;
	background-color: #219ed7;
	border-radius:5px;
}
#btnSupprimer{
	padding:1%;
	margin:1.25% 0 0 -15%;
}
#images input[type="button"]{
	padding:0.5%;
	font-size: 0.75em;
}
#images input[type="text"]{
	width:40%;
	clear:right;
}

/*--------- tableau ---------*/
table#admin tr th{
	font-weight: bold;
}
table#admin{
	width:100%;
	max-width:960px;
	margin:0 auto;
	font-size: 0.9em;
}
table#admin th:first-child, table#admin td:first-child{
	width:4%;
}
table#admin th, table#admin td{
	width:19%;
	text-align: left;
	padding:1.5% 1%;
}
table#admin tr:nth-of-type(odd){
	background:#f7f7f7;
}
table#admin tr:nth-of-type(even){
	background:#d8ebf3;
}
table#admin tr:first-of-type{
	background:#1a150f;
	color:#fff;
	margin-bottom: 100000%;
}
table#admin tr:last-of-type td:last-of-type{
	border-bottom-right-radius:5px;
}
table#admin tr:last-of-type td:first-of-type{
	border-bottom-left-radius:5px;
}
table#admin tr:first-of-type th:first-of-type{
	border-top-left-radius:5px;
}
table#admin tr:first-of-type th:last-of-type{
	border-top-right-radius:5px;
}

/*--------- fiche à modifier / ajouter ---------*/
#form_ajout{
	width:100%;
	max-width: 900px;
	margin:auto;
	padding:3%;
	background-color: #d8ebf3;
	border-radius:5px;
	color:#1a150f;
}
label{
	display: block;
	float:left;
	width: 30%;
	text-align: right;
	font-size: 1.2em;
	margin:0.5% 0.5% 2%;
	clear:both;
}

input[type="text"], input[type="file"], textarea {
	display: block;
	float:left;
	width:45%;
	font-size: 1.1em;
	margin:0 23% 2% 0;
	border:1px solid #bdbdbd;
	border-radius:5px;
}
input[type="password"]{
	display: block;
	float: left;
	width: 45%;
	font-size: 1.1em;
	margin:0 23% 2% 0;
	border:1px solid #bdbdbd;
	border-radius:5px;
}
input[type="tel"]{
	width:3.5%;
}
input[name="Tele3"]{
	width:4.5%;
}
input[type="file"]{
	font-size: 0.9em;
	border:none;
}
input[type="date"]{
	display: block;
	float:left;
	width:28.75%;
	font-size: 1.1em;
	margin:0 2% 2% 0;
	border:1px solid #bdbdbd;
	border-radius:5px;
}
input[type="checkbox"]{	
	margin:1% 1% 0;
}
input[type="submit"], input[type="reset"]{
	display:block;
	float:left;
	margin:2%;
	padding:0.7% 1%;
}
input[type="submit"]{
	margin:2% 0 2% 26%;
	clear:left;
}
textarea {
	display: block;
	float:left;
	width:65%;
	min-height:300px;
	font-size: 1.1em;
	margin:0 0 2% 0;
	border:1px solid #bdbdbd;
	border-radius:5px;
}
#images{
	display:block;
	float:left;
	width:100%;
	margin:0 5%;
}
#images input[id="nbrImg"]{
	display: block;
	float:left;
	width:4%;
	margin:0 2% 2% 0 ;
}
#images textarea{
	display: block;
	float:left;
	width:60%;
	min-height:100px;
}
#images > div{
	margin:5% auto 0;
} 
form p{
	float: left;
	width:50%;
	max-width: 960px;
	font-size: 0.8em;
	font-style: italic;
	margin:0 0 2% 25%;
}
#date{
	float:left;
	width:20%;
	margin:0.75%;
	font-size: 1em;
	font-style: normal;
}

/*--------- index connexion ---------*/
#login{
	display:block;
	width:60%;
	max-width: 750px;
	margin:5% auto;
	padding:0 22%;
}
#login label{
	width:35%;
	margin:0.5% 2% 2%;
}
#login input[type="text"], #login input[type="password"]{
	display: block;
	float:left;
	width:45.5%;
	font-size: 1.1em;
	margin:0 2% 2% 0;
	border:1px solid #bdbdbd;
	border-radius:5px;
}
#login input[type="submit"]{
	float:right;
	margin:2% 15.2% 0 0;
}
#login input[type="button"]{
	float:right;
	margin:2% 5% 0 0;
	padding: 0.7% 1%;
}
#login p{
	font-size: 0.8em;
	margin:12% 0 2% 15%;
	color:#219ed7;
}

/*--------- Accueil ---------*/
#accueil label, #accueil5 label{
	margin:0 0.5% 2% 0.5%;
	width:25%;
}
#accueil input[type="file"], #accueil5 input[type="file"]{
	width:35%;
	margin:0 0 2% 0;
	clear:right;
}
#accueil input[type="submit"], #accueil5 input[type="button"]{
	margin:0 0 2% 0;
	float:left;
	clear:right;
	font-size: 0.8em;
	padding:0.3% 0.7%;
}
#accueil2 label{
	width:50%;
	margin:3% 0 1% 5%;
	padding:0;
	text-align:left;
}
#mceu_14{
	width:90%;
	max-width: 960px;
	margin:auto;
}
#accueil2 input{
	float:right;
	margin:2% 1%;
}
#accueil2 input[type="submit"]{
	float:right;
	margin:2% 5% 2% 1%;
}
#accueil5 select{
	float:left;
	margin:0 3% 2% 0.5%;
}
#telephone{
	clear:both;
}
#DateDebut, #DateFin{
	width:10%;
}
/*---------nonfloat ---------*/
.separateur{
	clear: both;
}

/*--------- menu actif ---------*/
.active{
	color: #219ed7 !important;
	font-size: 1.1em;
}
/*--------- 404 ---------*/
#wrapper404{
	width: 100%;
	max-width: 960px;
	height: auto;
	margin: 12% auto;
}
#page404{
	color:#371805;
	text-align: center;
}
.page404{
	width:70%;
	margin:auto;
}
.page404 a{
	color:#0088dd;
	text-decoration: none;
	text-align: center;
}
.page404 a:hover{
	color:#371805;
}
.page404 img{
	display: block;
	margin:2% auto;
}
/*--------- motdepasse ---------*/
#motdepasse{
	padding:5% 0 5% 0;
}
#motdepasse a{
	width:30%;
    	padding:1%;
    	text-align: center;
	border:none;
	color:#fff;
   	text-decoration: none; 
   	background-color: #219ed7;
	border-radius: 5px;
}
#motdepasse a:hover{
	color:#563a2a;
}
#formuMdp fieldset{
	width: 100%;
	margin: auto;
}
#formuMdp input[type="submit"], #formuMdp input[type="button"]{
	display:block;
	float:left;
	margin:2%;
	padding:0.7% 1%;
}
