/*

Feuille de style CSS générique

Version 10/10/2016
par Hubert HITSCH

*/

html, body {
 margin: 0;
 padding: 0;
 }
 
body {
	background-color:white ; 
	min-width: 1200px;
	font-family: Verdana, sans-serif; 
	font-size: 0.75em;
 }

header {

	text-align: left;
	background-image:  url("/pmtoolkit/images/logo.jpg");
	background-repeat: no-repeat;
	background-position: top right;
	padding: 15px 0px 15px 0px;
	margin: 10px 15px 15px 15px;
}

#conteneur {
	display: flex;
	flex-direction: row;
			/* arguments flex-direction
			    row : organisés sur une ligne (par défaut)
				column : organisés sur une colonne
				row-reverse : organisés sur une ligne, mais en ordre inversé
				column-reverse : organisés sur une colonne, mais en ordre inversé
			*/
	flex-wrap: nowrap;
			/* arguments flex-wrap
			    nowrap : pas de retour à la ligne (par défaut)
				wrap : les éléments vont à la ligne lorsqu'il n'y a plus la place
				wrap-reverse : les éléments vont à la ligne lorsqu'il n'y a plus la place en sens inverse
			*/
	justify-content: center;
			/* arguments justify-content : alignement axe principal (cf flex-direction)
			flex-start : alignés au début (par défaut)
			flex-end : alignés à la fin
			center : alignés au centre
			space-between : les éléments sont étirés sur tout l'axe (il y a de l'espace entre eux)
			space-around : idem, les éléments sont étirés sur tout l'axe, mais ils laissent aussi de l'espace sur les extrémités
			*/
	align-items: flex-start;
			/* argument align-items : alignement axe secondaire
			    stretch : les éléments sont étirés sur tout l'axe (valeur par défaut)
				flex-start : alignés au début
				flex-end : alignés à la fin
				center : alignés au centre
				baseline : alignés sur la ligne de base (semblable à flex-start)
			*/	

}
 
nav {

    display: inline-block;
    width: 200px;
	min-width: ;
    border: 1px solid gray;
    vertical-align: top;
	padding: 7px 7px;
	margin-left: 10px;
}

nav h3 {
	text-align: left;
	}

section {

    display: inline-block;    
    border: 1px solid gray;
    vertical-align: top;
	width:100%;
	margin: 0 10px;
	padding: 7px 7px;

}

table {
	
	border-collapse:collapse;
	width: 100%;
}

th {
	
	border-width:1px; 
	border-style:solid; 
	border-color:black;
	background-color: gray; 
	color: white;
	text-align : left;
	padding-left: 5px;
}

td {
	color: gray;
	border-width:1px; 
	border-style:solid; 
	border-color:black;
	padding-left : 5px;
	
}

td a {
	
	color:gray;
	
}

aside{
	display: inline-block;
    border: 1px solid gray;
	text-align: left;
    vertical-align: top;
	width:275px;
	margin-right: 10px;
	padding: 7px 7px;
}

aside h3 {
	
	text-align: center;
	
}

.FooterPush {
	height: 75px;
}

footer {
	
	background-color: gray;
	text-align: center;
	width : 100%;
	bottom: 0;
	height: 75px;
	padding-top: 20px;
	margin-top: 50px;
	
}


/*paramètres titres*/

h1 {

	font-size: 3em; 
	color: gray; 
	text-align: left;

 }

h2 {

	text-align:center;
 font-size: 1.25em; 
 color: #3DCD58; 
 
 }
 
 h3 {
	 
  	display:block;
	background-color: #3DCD58;
	margin-top: 0px;
	padding: 10px 10px;
 	color: white;
	font-size: 1.5em;
 }
  
 
 /* Others */
 
ul,li,td {

 color: black; 
 
 }
 
 em {
	 
		color: #3DCD58;  
	 
 }
 
 red {
	 
	 color: red;
	 
 }
 
 .MenuItem a {
 
	display: block;
	color: #3DCD58;
	background-color:white;
	text-decoration: none;
	padding: 5px;
	}
 
 .MenuItem {
 
 	font-size: 1em;
	display: block;
	color: black;
	margin: -1px 0px 0px 0px;
	border-style: solid;
	border-width: 1px;
	border-collapse: collapse;
 }

  .MenuItem a:hover {
 
	color: white;
	background-color: gray;
	border-color: black;
	
	
  }
  
 fieldset {
	 
	 color: gray;
	 
 }
 
 .SousTableau {

	border-collapse:collapse;
	width: 75%;
	margin: 10px 0px 10px 25px;

 }
 
 .SoustableauHeader {
	 
	 background-color: White;
	 color: gray;
	 border-style: none;
	 border-top: 1px;
	 border-left: 1px;
	 
 }
  
 fieldset legend {
	 
	color: gray;
	 
 }
 
 label {

    display: block;

    width: 150px;

    float: left;

}
  
  
/* a:link {
 
 color: gray;
 text-decoration: underline;
 }
 
a:visited {
 color: gray;
 }
 
a:hover {

 color: #626469;
 text-decoration: none;
}

a:active, a:focus {
 color: red;
} */
	
	
	
	
TemplateStyleBlock {

	/* Taille de block */
	
	width: 50%;
	min-width:50px;
	max-width: 200px;
	
	height: 20%;
	min-height: 50px;
	max-height: 200px;
	
	
	/* Marges */
	
	padding: 12px;
	margin: 50px; 
	
	
	/* 	Marges internes & externes spécifiques
			
			margin-top: 

			margin-bottom: 

			margin-left: 

			margin-right:

			padding-top: 

			padding-bottom: 

			padding-left: 

			padding-right: 
			
			*/
	
	
	/* Bordures */
	
	border: 1px solid black;

	
	/* Specification de texte */
	
	font-style: Bold;
	font-family: Arial;
	font-size: normal;
	color: Blue;
	text-align: justify;
	
}
	
	




   