body, html{
	background-color: #252525;
	margin:0;
	padding:0;
	font-family: 'Dosis', sans-serif;
	/*color:#7f7f7f;*/
	color:#7f7f7f;
	/*background: #7f7f7f url('../graphismes/gen/fond-souris-gris.jpg') top left no-repeat;*/
}

a{
	color:#e9a600;
	outline:none;
}
a:hover {
	color:#ffd05b;
}
img{
	vertical-align:middle;
}

.custom-dropdown--large {
			font-size: 1.5em;
		}

		.custom-dropdown--small {
			font-size: .7em;
		}

		.custom-dropdown__select{
			font-size: inherit; /* inherit size from .custom-dropdown */
			padding: .5em; /* add some space*/
			margin: 0; /* remove default margins */
		}

		.custom-dropdown__select--white {
			background-color: #fff;
			color: #444;    
		}	
		
		.custom-dropdown__select--emerald {
			background-color: #20b390;
			color: #fff;    
		}				

		.custom-dropdown__select--red {
			background-color: #d53a22;
			color: #fff;
		}				

		.custom-dropdown__select--brown {
			background-color: #e9a600;
			color: #fff6df;
		}

		@supports (pointer-events: none) and
				  ((-webkit-appearance: none) or
				  (-moz-appearance: none) or
				  (appearance: none)) {

			
			h2+p {
				color: green; /* Demo only */
			}

			.custom-dropdown {
				position: relative;
				display: inline-block;
				vertical-align: middle;
			}

			.custom-dropdown__select {
				padding-right: 2.5em; /* accommodate with the pseudo elements for the dropdown arrow */				
				border: 0;
				/*border-radius: 3px;*/
				-webkit-appearance: none;
				-moz-appearance: none;
				appearance: none;    
			}

			.custom-dropdown::before,
			.custom-dropdown::after {
				content: "";
				position: absolute;
				pointer-events: none;
			}

			.custom-dropdown::after { /*  Custom dropdown arrow */
				content: "\25BC";
				height: 1em;
				font-size: .625em;
				line-height: 1;
				right: 1.2em;
				top: 50%; margin-top: -.5em;
			}

			.custom-dropdown::before { /*  Custom dropdown arrow cover */
				width: 2em;
				right: 0; top: 0; bottom: 0;
				/*border-radius: 0 3px 3px 0;*/
			}

			.custom-dropdown__select[disabled] {
				color: rgba(0,0,0,.3);
			}

			.custom-dropdown.custom-dropdown--disabled::after {
				color: rgba(0,0,0,.1);
			}

			/* White dropdown style */
			.custom-dropdown--white::before {
				top: .5em; bottom: .5em;
				background-color: #fff;
				border-left: 1px solid rgba(0,0,0,.1);
			}

			.custom-dropdown--white::after {
				color: rgba(0,0,0,.9);
			}					

			/* Emerald dropdown style */
			.custom-dropdown--emerald::before {
				background-color: #1aa181;
			}

			.custom-dropdown--emerald::after {
				color: rgba(0,0,0,.4);
			}


			/* Red dropdown style */
			.custom-dropdown--red::before {
				background-color: #d53a22;
			}

			.custom-dropdown--red::after {
				color: rgba(0,0,0,.4);
			}


			/* Brown dropdown style */
			.custom-dropdown--brown::before {
				background-color: #906600;
			}

			.custom-dropdown--brown::after {
				color: rgba(0,0,0,.4);
			}

			/* FF only temporary & ugly fixes */
			/* the "appearance: none" applied on select still shows a dropdown arrow on Firefox */
			/* https://bugzilla.mozilla.org/show_bug.cgi?id=649849 */
			@-moz-document url-prefix() {
				.custom-dropdown__select 						 { padding-right: .9em }
				.custom-dropdown--large .custom-dropdown__select { padding-right: 1.3em }
				.custom-dropdown--small .custom-dropdown__select { padding-right: .5em }
			}	

		}
		
		
.outils_form input[type="text"], .outils_form input[type="number"], .outils_form textarea {
	border: 1px solid #7f7f7f;
	color: #000;
	outline:none;
	padding:0.8em 1em;
	background:#fff6df;
	font-weight: 400;
}
.contact_form input[type="text"], .contact_form input[type="email"], .contact_form textarea {
	border: 1px solid #7f7f7f;
	color: #000;
	outline:none;
	padding:0.8em 1em;
	background:#fff6df;
	width: 65%;
	font-weight: 400;
}
.contact_form textarea {
  height:250px;
  width: 95%;
}
input[type="submit"], input[type="button"] {
	padding: 0.8em 2em;
	color: #fff6df;
	background:#906600;
	outline: none;
	border: 1px solid #e9a600;
}
input[type="submit"]:hover, input[type="button"]:hover {
	cursor:pointer;
	background-color: #fff6df;
	color:#906600;
}
input[type="submit"].btcherche {
	padding: 0.2em 1em;
	color: #fff6df;
	background:#906600;
	outline: none;
	border: 1px solid #e9a600;
}
input[readonly], input[readonly="readonly"] {
	background:#8A9597;
	border: 1px solid #e9a600;
}

/************************* CLASSE JS POUR LES INPUT FILE *************************/ 
.js .input-file-container {
	position: relative;
	display:inline;
	float:left;
	width: 100%;
	text-align: center;
}
.js .input-file-trigger {
	display: block;
	padding: 10px;
	background: #2d2d2d;
	color: #7f7f7f;
	font-size: 1em;
	
	cursor: pointer;
}
.js .input-file {  
	position: absolute;
	top: 0; left: 0;
	width: 250px;
	padding: 10px 0;
	opacity: 0;
	cursor: pointer;
}
/* quelques styles d'interactions */
.js .input-file:hover + .input-file-trigger,
.js .input-file:focus + .input-file-trigger,
.js .input-file-trigger:hover,
.js .input-file-trigger:focus {
	background: #7f7f7f;
	color: #fff6df;
}
/* styles du retour visuel */
.file-return {
	display:inline;
	float:left;
	margin: 0px;
	padding-left:10px;
}
.file-return:not(:empty) {
	margin: 1em 0;
}
.js .file-return {
	font-style: italic;
	font-size: .9em;
	font-weight: bold;
}
/* on complète l'information d'un contenu textuel
	uniquement lorsque le paragraphe n'est pas vide */
.js .file-return:not(:empty):before {
	content: "Fichiers : ";
	font-style: normal;
	font-weight: normal;
}
/* pour casser la mise sur la même ligne */
.clearboth {
	float:left;
	clear:both;
}
/************************* ************************* *************************/ 


.lienBouton {
	background-color: #906600;
	border: 1px solid #e9a600;
	color:#fff6df;
	text-decoration:none;
	padding:5px;
}
.lienBouton:hover {
	background-color: #fff6df;
	color:#906600;
}
.lienUp{
	display:block;
	position:fixed;
	left:0;
	bottom:0;
	/*border: 1px solid #e9a600;*/
	font-size:inherit;
	text-decoration:none;
	font-weight: 200;
	padding:0 10px 0 10px;
}
dt{
	display:block;
	position:relative;
	float:left;
	clear:both;
	background: transparent url('../graphismes/gen/carre-orange.jpg') 0px 6px no-repeat;
	font-weight: 700;
	color:#906600;
	vertical-align:top;
	padding:0px 0px 0px 20px;
}
dd{
	display:block;
	position:relative;
	float:left;
	clear:both;
	padding-bottom:10px;
	margin:0px;
	width:100%;
}
dd img{
	float:left;
	margin-right:10px;
	margin-top:6px;
}

div#entete {
	/*background-color: #f0f0f0;*/
	padding:10px 10px 0px 10px;
	
}
div#entete_int {
	position:relative;
	background: #ffb603 url('../graphismes/gen/fond-entete-base.png') top right no-repeat;
	
	color:#906600;
	padding:5px;
	margin-bottom:0px;
	overflow:hidden;
	height:120px;
}
div#entete_deg1 {
	position:relative;
	float:left;
	background-color: #fff6df;
	width:75px;
	height:24px;
}
div#entete_deg2 {
	position:relative;
	float:left;
	background-color: #ffd05b;
	width:75px;
	height:24px;
	margin-left:10px;
}
div#entete_deg3 {
	position:relative;
	float:left;
	background-color: #e9a600;
	width:75px;
	height:24px;
	margin-left:10px;
}
div#entete_deg4 {
	position:relative;
	float:left;
	background-color: #906600;
	width:75px;
	height:24px;
	margin-left:10px;
}
div#entete_deg5 {
	position:relative;
	left:340px;
	background-color: #fff6df;
	opacity: 0.3;
	filter: alpha(opacity=10);
	height:24px;
}
div#entete_titre {
	position:relative;
	float:left;
	margin-top:0;
	left:0px;
	color:#ffd05b;
	/*font-size:74px;*/
}
div#entete_titre img {
	margin:30px 0px 0px 0px;
}
div#entete_stitre {
	position:relative;
	float:right;
	margin-top:20px;
	right:140px;
	text-align:right;
}
div#entete_stitre h2 {
	margin:0;
	padding:0;
}

div#entete_menu {
	position:relative;
	height:24px;
	margin:2px 10px 2px 10px;
	padding:0;
	border-bottom: 1px solid #e9a600;
}
div#entete_menu ul{
	display:block;
	position:relative;
	list-style: none;
	width:100%;
	margin:0;
	padding:0;
}
div#entete_menu li{
	position: relative;
	float:left;
	width:20%;
	height:24px;
	text-align:center;
	padding-right:2px;
	padding-top:0;
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
div#entete_menu li:last-child { padding-right:0px; }
div#entete_menu a{
	display:block;
	position: relative;
	width:100%;
	height:22px;
	text-decoration:none;
	background:#fff6df url('../graphismes/gen/carre-orange.png') top left no-repeat;
	color:#906600;
	font-weight: 700;
}


div#entete_menu a:hover{
	background-color: #906600;
	color:#fff6df;
}
div#entete_menu a.allum{
	background: #e9a600 url('../graphismes/gen/carre-orange.png') top left no-repeat;
	color:#fff6df;
}
div#entete_menu a.allum:hover{
	background: #e9a600 url('../graphismes/gen/carre-orange.png') top left no-repeat;
	color:#fff6df;
}

div#corps{
	position:absolute;
	float:left;
	left:10px;
	right:10px;
	/*width:100%;
	margin: 0px 0px 30px 0px;*/
	/*padding:0px 10px 0px 10px;*/
	text-align:justify;
	padding-bottom:50px;
}
div#corps h1, h2, h3, h4, h5{
	color:#906600;
}
div#corpsG{
	position: relative;
	float:left;
	width:43%;
	padding-right:2%;
}
div#corpsD{
	position: relative;
	float:left;
	width:52.6%;
	padding-left:2%;
	border-left: 1px dotted #7f7f7f;
}
p#CloseCorpsAdd{
	padding:10px;
}
div#corpsAdd{
	position:absolute;
	float:left;
	left:10px;
	right:10px;
	text-align:justify;
	padding-bottom:50px;
}
.deuxcolonnes {
	font-size:90%;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count:2;
}
.deuxcolonnes p {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid-column;
	margin:0;
	padding:0;
}
.alignDroite {
	text-align:right;
}
.droit30 {
	margin-right:30px;
}
div.jeuflash {
	width:800px;
	height:600px;
	margin:auto;
	background-color:#000000;
}

#map-canvas{
	width:100%;
	height:400px;
}
div#pied{
	position:fixed;
	clear:both;
	bottom:0px;
	width:100%;
	border-top:#dddddd 1px solid;
	background-color : #ffffff;
	text-align:center;
	font-size:75%;
}
div#pied a{
	text-decoration:none;
	color:#906600;
}
div#pied p{
	margin:0;
	padding:0px 10px 0px 10px;
	font-size:80%;
	color:#7e7e7e
}
table.tableral{
	border-spacing: 0px;
	border-collapse:collapse;
	width:100%;
	text-align:center;
	border:1px solid #7f7f7f;
	font-family:"Lucida Console", Monaco, monospace;
	font-size:90%;
	table-layout: fixed;
	word-wrap: break-word;
	overflow-wrap: break-word;
	
}
table.tableral th{
	margin:0;
	padding: 0;
}
table.tableral td{
	/*height:50px;*/
	padding: 8px 0 8px 0;
}

.erreur {
	color:#c81b00;
}
.mirror {
	display:inline-block;
	-webkit-transform:rotate(-180deg);
	-moz-transform:rotate(-180deg); 
	-o-transform:rotate(-180deg); 
	transform:rotate(-180deg);
	ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
	filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
	vertical-align:middle;
}

/*
input[type=checkbox]:not(old),
input[type=radio   ]:not(old){
  width     : 2em;
  margin    : 0;
  padding   : 0;
  font-size : 1em;
  opacity   : 0;
}

input[type=checkbox]:not(old) + label,
input[type=radio   ]:not(old) + label{
  display      : inline-block;
  margin-left  : -2em;
  line-height  : 1.5em;
}

input[type=checkbox]:not(old) + label > span,
input[type=radio   ]:not(old) + label > span{
  display          : inline-block;
  width            : 0.875em;
  height           : 0.875em;
  margin           : 0.25em 0.5em 0.25em 0.25em;
  border           : 0.0625em solid rgb(192,192,192);
  border-radius    : 0.25em;
  background       : rgb(224,224,224);
  background-image :    -moz-linear-gradient(rgb(240,240,240),rgb(224,224,224));
  background-image :     -ms-linear-gradient(rgb(240,240,240),rgb(224,224,224));
  background-image :      -o-linear-gradient(rgb(240,240,240),rgb(224,224,224));
  background-image : -webkit-linear-gradient(rgb(240,240,240),rgb(224,224,224));
  background-image :         linear-gradient(rgb(240,240,240),rgb(224,224,224));
  vertical-align   : bottom;
}

input[type=checkbox]:not(old):checked + label > span,
input[type=radio   ]:not(old):checked + label > span{
  background-image :    -moz-linear-gradient(rgb(224,224,224),rgb(240,240,240));
  background-image :     -ms-linear-gradient(rgb(224,224,224),rgb(240,240,240));
  background-image :      -o-linear-gradient(rgb(224,224,224),rgb(240,240,240));
  background-image : -webkit-linear-gradient(rgb(224,224,224),rgb(240,240,240));
  background-image :         linear-gradient(rgb(224,224,224),rgb(240,240,240));
}

input[type=checkbox]:not(old):checked + label > span:before{
  content     : '✓';
  display     : block;
  width       : 1em;
  color       : rgb(144,102,0);
  font-size   : 0.875em;
  line-height : 1em;
  text-align  : center;
  text-shadow : 0 0 0.0714em rgb(233,166,0);
  font-weight : bold;
}

input[type=radio]:not(old):checked +  label > span > span{
  display          : block;
  width            : 0.5em;
  height           : 0.5em;
  margin           : 0.125em;
  border           : 0.0625em solid rgb(233,166,0);
  border-radius    : 0.125em;
  background       : rgb(144,102,0);
  background-image :    -moz-linear-gradient(rgb(233,166,0),rgb(144,102,0));
  background-image :     -ms-linear-gradient(rgb(233,166,0),rgb(144,102,0));
  background-image :      -o-linear-gradient(rgb(233,166,0),rgb(144,102,0));
  background-image : -webkit-linear-gradient(rgb(233,166,0),rgb(144,102,0));
  background-image :         linear-gradient(rgb(233,166,0),rgb(144,102,0));
}
*/

#sender {
	position: relative;
	background: transparent;
	padding-top:200px;
	width:100%;
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.status{
	position: relative;
	padding: 5px;
	background: #252525;
	width: 90%;
	color: white;
	margin: 10px auto;
	text-align:center;
}

.progress {
	position: relative;
	width: 90%;
	margin: 10px auto;
	border: 1px solid #e9a600;
	padding: 5px;
	border-radius: 3px;
}
.bar{
	background: #42b188;
	height: 20px;
	width: 0%;
	/* transition animation */
	-webkit-transition: width .3s;
	-moz-transition: width .3s;
	transition: width .3s;

}
.percent {
	position: absolute;
	display: inline-block;
	top: 6px;
	left: 48%;
	color: #fff6df;
}

.fieldbloc{
	border:none;
	margin:0 0 20px 0;
}
.ui-dialog.diapo-emotic {
	font-size: inherit;
	font-family: 'Dosis', sans-serif;
	/*color:#7f7f7f;*/
	color:#7f7f7f;
	/*font-weight: 800;*/
}
/*
.ui-widget-header {
	background-color : #ffffff;
}
*/
.ui-dialog.dialogCookie {
	font-size: inherit;
	font-family: 'Dosis', sans-serif;
	color:#7f7f7f;
}
.ui-dialog.dialogCookie a {
	
}
.ui-dialog.dialogCookie a:hover {
	color:#906600;
}
.ui-dialog.diapo-emotic label {
	font-size: 80%;
}
.ui-dialog.diapo-emotic textarea {
	font-family:"Courier New", Courier, monospace;
	font-size: 80%;
}
.ui-dialog.diapo-emotic a {
	color:#906600;
	text-decoration:none;
	outline:none;
	font-weight: 800;
}
.ui-dialog.diapo-emotic a:hover {
	color:#453821;
}
.ui-dialog.diapo-emotic a.lienBoutonVert {
	background-color: #2d572c;
	border: 1px solid #bdecb6;
	color:#bdecb6;
	text-decoration:none;
	padding:5px;
	font-weight: 800;
}
.ui-dialog.diapo-emotic a.lienBoutonVert:hover {
	background-color: #bdecb6;
	border: 1px solid #2d572c;
	color:#2d572c;
}
a.lienBoutonVert {
	background-color: #2d572c;
	border: 1px solid #bdecb6;
	color:#bdecb6;
	text-decoration:none;
	padding:5px;
	font-weight: 800;
}
a.lienBoutonVert:hover {
	background-color: #bdecb6;
	border: 1px solid #2d572c;
	color:#2d572c;
}
.ui-dialog.diapo-emotic a.lienBoutonRouge {
	background-color: #75151e;
	border: 1px solid #d7d7d7;
	color:#d7d7d7;
	text-decoration:none;
	padding:5px;
	font-weight: 800;
}
.ui-dialog.diapo-emotic a.lienBoutonRouge:hover {
	background-color: #d7d7d7;
	border: 1px solid #75151e;
	color:#75151e;
}
a.lienBoutonRouge {
	background-color: #75151e;
	border: 1px solid #d7d7d7;
	color:#d7d7d7;
	text-decoration:none;
	padding:5px;
	font-weight: 800;
}
a.lienBoutonRouge:hover {
	background-color: #d7d7d7;
	border: 1px solid #75151e;
	color:#75151e;
}
div#listag{
	display:none;
}

div#result_alpha{
	padding-top:5px;
}

a.closeTags{
	color:#7f7f7f;
	text-decoration:none;
	font-weight: bold;
}
.legendright {
	display:block;
	position:absolute;
	top:-0.6em;
	right:5px;
	text-align:right;
	background-color: #252525;
}
.lpopemo img{
	border: 1px dotted #878787;
	max-width:400px;
	width:auto;
	height:auto;
	/*margin:2px;*/
}
.lienalphab {
	padding:0 3px 0 3px;
	text-decoration: none;
	word-wrap: break-word;
}
#result_alpha a{
	white-space:nowrap;
}
.letag {
	text-decoration: none;
}

/*
 GENERATOR GIF
*/
.fieldFrame{
	border: 1px solid #7f7f7f;
	background-color : #1c1c1c;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
}
.fieldFrame legend{
}
.ongletFrameOn{
	padding-left:20px;
	padding-right:20px;
	border: 1px solid #7f7f7f;
	background-color : #4f4f4f;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	text-decoration:none;
}
.ongletFrameOff{
	padding-left:20px;
	padding-right:20px;
	border: 1px solid #7f7f7f;
	background-color : #1c1c1c;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	text-decoration:none;
}
/*
 MEDIA SCREEN
*/
@media screen and (max-width: 730px) {
	body {
		margin:0;
		padding:0;
	}
	div {
		position:relative;
		float:left;
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count:1;
		margin:0;
		padding:0;
		height:auto;
		-webkit-box-sizing: border-box;
	     -moz-box-sizing: border-box;
	          box-sizing: border-box;
	}
	div#entete {
		display:none;
	}
	div#entete_menu {
		width:100%;
		height:auto;
		margin:0;
		padding:0 0 1% 0;
		border-bottom: 1px solid #e9a600;
		/*background-color: #ffd05b;*/
		
		background: #ffb603;
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmYjYwMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM5MDY2MDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  #ffb603 0%, #906600 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffb603), color-stop(100%,#906600));
		background: -webkit-linear-gradient(top,  #ffb603 0%,#906600 100%);
		background: -o-linear-gradient(top,  #ffb603 0%,#906600 100%);
		background: -ms-linear-gradient(top,  #ffb603 0%,#906600 100%);
		background: linear-gradient(to bottom,  #ffb603 0%,#906600 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb603', endColorstr='#906600',GradientType=0 );


	}
	div#entete_menu li{
		display:block;
		position:relative;
		float:left;
		width:auto;
		line-height:auto;
		margin:2%;
	}
	div#entete_menu a{
		background:  #fff6df url('') top left no-repeat;
		font-size:110%;
		padding:5px;
	}
	div#corps{
		position:relative;
		float:left;
		left:0;
		width:100%;
		margin:0 0 50px 0;
		padding:1%;
	}
	div#corpsG, div#corpsD{
		position:relative;
		float:left;
		clear:both;
		width:100%;
		border:none;
		margin:0;
		padding:0;
	}
	div#corpsD{
		border-top: 1px dotted #7f7f7f;
	}
	div#pied{
		padding-left:30px;
		font-size:50%;
	}
	.lienUp{
		font-size:400%;
		
	}
	#map-canvas{
		height:200px;
	}
	.alignDroite {
		text-align:left;
	}
	
	.droit30, .fauxbloc {
		display:block;
		position:relative;
		margin:0 5% 5% 5%;
	}
	input[type="number"]{
		-webkit-box-sizing: border-box;
	     -moz-box-sizing: border-box;
	          box-sizing: border-box;
		width: 90%;
	}
	textarea {
		-webkit-box-sizing: border-box;
	     -moz-box-sizing: border-box;
	          box-sizing: border-box;
		width: 90%;
		height:50px;
	}
	.contact_form input[type="text"], .contact_form input[type="email"], .contact_form textarea {
		-webkit-box-sizing: border-box;
	     -moz-box-sizing: border-box;
	          box-sizing: border-box;
		width: 100%;
	}
	.contact_form textarea {
	  height:200px;
	  width: 100%;
	}
	
	.deuxcolonnes {
		font-size:90%;
		-webkit-column-count: none;
		-moz-column-count: none;
		column-count:2;
		margin-bottom:30px;
	}
	.deuxcolonnes p {
		-webkit-column-break-inside: none;
		page-break-inside: none;
		break-inside: none;
		margin:0;
		padding:0;
	}
	
	table.tableral td{
		padding: 0;
	}
	.ui-dialog-content.diapo-emotic {
		width:100%;
	}
	.ui-dialog.diapo-emotic a.lienBoutonVert {
		display:inline-block;
	}
	.ui-dialog.diapo-emotic a.lienBoutonRouge {
		display:inline-block;
	}
	.lienBouton {
		display:inline-block;
	}

}
@media screen and (max-width: 240px) {
	div#corps{
		margin:0 0 50px 0;
	}
}