/*********************************************************************/
/* = Site : http://patrickjoly.free.fr/ */
/* = Version : 1.0 */
/* = Date de la version : 15/12/2013 */
/* = Auteur : Patrick Joly */
/* = Contact : patrickjoly@free.fr */
/*********************************************************************/

/*********************************************************************/
/* feuille de style screen */
/*********************************************************************/
body {
  	background-color: #000000;
	color: #ffffff;
	font-family: Georgia;
	font-size: 1em;
	margin: 20px auto;
	overflow: scroll;
	padding: 0;
	width: 700px;
} 

header, nav, footer {
	display: block;
}

/* header */
header {
	margin: 0;
	padding: 10px;
	text-align: center;
}

h1 {
	color: #25fbea;
	font-size: 4em;
	margin: 0;
	padding: 0;	
	letter-spacing: 5px;
}

h2 {
	color: #25fbea;
	margin: 0;
	padding: 0;
	font-size: 4em;	
	font-weight: bold;
}


/* navigation */
nav {
	border-bottom: 1px solid #25fbea;
	border-top: 1px solid #25fbea;
	margin: 0 auto;
	padding: 20px;
}

nav ul {
	margin: 0;
	padding: 0;
}

nav li {
	margin: 0;
	padding: 0;
	text-align: center
}

.item {
	display: block;
}

nav a {
	background: transparent;
	color: #25fbea;	
	display: block;
	font-size: 2em;
	text-decoration: none;
}

nav a:hover {
	color: #ffffff;
}

/* contenu */
#contenu {
	line-height: 1.5em;
	text-align: justify;
}

.row {
	display: table;
	margin: 20px 0 0 0;
	padding : 0;
	table-layout: fixed;
	width: 100%;	
	
}

.col {
	border-bottom: 1px dotted #25fbea;	
	display: table-cell;
	margin: 0;
	padding : 10px;	
	vertical-align: top;
}

h3 {
	background: #25fbea;
	border: 1px dotted #25fbea;
	font-size: 1.5em;
	margin: 0;
	padding: 5px;
	-ms-border-radius: 5px; 
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;		
}

/* footer */
footer {
	margin: 20px 0 0 0;
	padding: 0;
	font-size: 0.9em;
}

/* liens */
a {
	color: #25fbea;
	text-decoration: none;
}

a:hover {
	color: #ffffff;
	text-decoration: underline;
}

/*********************************************************************/
/* feuille de style mobile */
/*********************************************************************/
@media (max-width: 640px) {
.col {
	display: block !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	border: 0;
	float: none !important;
	width: auto !important;
}
	
.row { 
	display: block !important;
	width: 100% !important;
}
}

@media (max-width: 640px) {

body {
	overflow: scroll;
	padding: 10px;
	text-align: justify;
	width: auto;
}

h1 {
	font-size: 2.5em;
}

h2 {
	font-size: 2.5em;
}

#contenu {
display: block;
}
}

@media only screen and (max-device-width:640px) and (orientation:landscape){
body{
	-webkit-text-size-adjust:80% !important
}
}

/* orientation iOS font-size fix */
@media (orientation: landscape) and (max-device-width: 768px) {
html,
body {
	-webkit-text-size-adjust: 100%;
}
}