
button {
	border: none;
	padding: 0.6em 1.2em;
	/*background-color: rgba(0, 77, 125, 0.3); /* bleu */
	/*background-color: rgba(158, 192, 57, 0.9); /* vert */
	background-color: rgba(220, 175, 10, 1); /* orange */
	
	font-family:"Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	font-weight: bold;
	letter-spacing: 1px;
	color: #fff;
	
	cursor: pointer;
	display: inline-block;
	margin: 3px 2px;
	border-radius: 2px;
}

button:hover {
	/*background-color: rgba(0, 77, 125, 0.5); /* bleu */
	/*background-color: rgba(158, 192, 57, 0.6); /* vert */
	background-color: rgba(190, 150, 10, 1); /* orange-marron */
}

.md-modal {
	position: fixed;
	top: 45%;
	left: 50%;
	width: 50%;
	max-width: 500px;
	min-width: 320px;
	height: auto;
	z-index: 2000;
	visibility: hidden;

	background-color:transparent;
	
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.md-show {
	visibility: visible;
}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;

	z-index: 1000;
	opacity: 0;

	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}


/* Content styles */
.md-content-fantome {
	background-color: #fff;
	position: relative;
}

.centered {
	text-align: center;
}

.md-content {
	color: #fff;
	/*background-color: rgba(0, 77, 125, 0.7); /* bleu;*/
	/*background-color: rgba(130, 165, 15, .7); /* vert;*/
	/*background-color: #9BB73F; /* vert 0.8;*/
	background-color:#A7C057; /* vert 0.7;*/
	/*background-color:#B4C96F; /* vert 0.6;*/

	position: relative;
	border-radius: 3px;
	margin: 0;
}

.md-content h3 {
	padding-top: 40px;
	padding-bottom: 20px;
	font-size: 24px;
	font-weight: bold;
	color: rgba(0, 77, 125, 0.7); /* bleu */;
}

.md-content a {
	line-height: 3em;
	font-weight: bold;
	color: #fff;
	color: rgba(132,2,15, 1); /* rouge foncé */
}

.md-content a:hover {
	font-weight: bold;
	color: #fff;
	color: rgba(132,2,15, .6); /* rouge foncé */
}


.md-content > div {
	/* top, right, bottom, left */
	padding: 15px 40px 30px;
	margin: 0;
	font-weight: 300;
	font-size: 1.5em;
}


.md-content > div ul {
	margin: 0;
	padding: -10 0 30px 20px;
}

.md-content > div ul li {
	padding: 5px 0;
	list-style: none;
	text-align: center;
}

.md-content button {
	display: block;
	margin: 0 auto;
	font-size: 0.8em;
}


/* Effect 1: Fade in and scale up */
.md-effect-1 .md-content {
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-1 .md-content {
	-webkit-transform: scale(.8);
	-moz-transform: scale(.8);
	-ms-transform: scale(.8);
	transform: scale(.8);
	opacity: 1;
}


@media screen and (max-width: 32em) {
	body { font-size: 75%; }
}
