/*********************************************************************/
/* = Version : 1.0 */
/* = Date de la version : 17/09/2014 */
/* = Feuille de style screen */
/*********************************************************************/

/* body */
body{
	background: #ffffff;
	color:#ffffff;
	font-family: Georgia;
	font-size: 1em;
	line-height: 2em;
	margin: 0;
	padding: 0;
}

*,*:after, *:before{
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing:border-box
}

/* header */
header {
	color: #8db192;
	margin: 0 auto;
	max-width: 1140px;
	min-width: 768px;
	padding: 0 10px 0 10px;
}

/* ligne */
.ligne {
	margin: 0 auto;
	max-width: 1140px;
	min-width: 768px;
	overflow: hidden;
}

/* colonnes : width sur une base de division par 12 */
.col {
	float: left;
	padding: 0 10px 0 10px;
}

.une {width: 8.33%}
.deux {width: 16.66%}
.trois {width: 25%}
.quatre {width: 33.33%}
.cinq {width: 41.67%}
.six {width: 50%}
.sept {width: 58.33%}
.huit {width: 66.67%}
.neuf {width: 75%}
.dix {width: 83.33%}
.onze {width: 91.67%}
.douze {width: 100%}

/* paragraphes */
p {
	background: #8db192;
	margin: 10px 0 10px 0;
	padding: 10px;
	width: 100%;
	-ms-border-radius: 5px;	
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;	
}

/* footer */
footer {	
	color: #8db192;
	margin: 20px auto;
	max-width: 1140px;
	min-width: 768px;
	padding: 0 10px 0 10px;
}

/* titres */
h1 {
	font-size: 3em;
}

h2 {
	font-size: 2em;
}

/* liens */
a {
	color: #8db192;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}


/*********************************************************************/
/* Feuille de style mobile */
/*********************************************************************/
@media (max-width:767px){
.ligne {
	min-width: 0;
	width: 100%;
}

.col {
	float: none;
}

.une,
.deux,
.trois,
.quatre,
.cinq,
.six,
.sept,
.huit,
.neuf,
.dix,
.onze,
.douze {
	padding: 0 10px 0 10px;
	width: auto;
}

header, footer {
	min-width: 0;
	text-align: center;
	width: 100%;
}
}