@charset "utf-8";
/* CSS Document */

/*==============================================================
Mise en forme : page - bandeau - navigation_h
===============================================================*/
body {
	margin: 0;
	padding: 0;
	background-color:#CCC;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 0.75em;
}
/*
tout ce qui commence par # pourrait commencer par div# .... 
# = tout ce qui a l'identité xxx
div# = tout ce qui se trouve dans le div avec identité xxxx
donc div# ==> plus spécifique. Mais dans mon cas, chaque # correspond à une entité div unique que l'on ne retrouvera pas ailleurs. 
espace = à l'interieur de 
*/

div#page { /* ce que les bouquins appellent wrapper - c'est le bandeau + la nav gauche + le contenu à droite + le pied de page */
	margin: 0;
	padding: 0;
	width: 900px;
	background: #fff url(images/background-colonnes.png); /* GiB 2010-10-15 => colonnes factices */
	position: absolute;
	left: 50%; margin-left: -450px; /* méthode pour centrer horizontalement, 450px = moité de 900px, la largeur */
}
div#bandeau {
	width:900px;
	height:120px;
	background-image:url(images/bandeau-bgd-degrade-avec-images.jpg);
	background-repeat:no-repeat;
}
div#bandeau  a#logoBackHome {
	display: block;
	width: 295px;
	height: 105px;
	text-decoration: none;
}
div#navigation_h {
    width: 900px;
	height: 20px;
	text-align: right;
	background-color:#006;
    font-size:1em;
    line-height:normal;
	border-bottom:2px solid #006;
}
div#navigation_h ul {
	margin: 0; /* GiB 2010-10-15 */
	list-style:none;
	
}
div#navigation_h li {
      display:inline;
      /* border-right: 2px solid white;  */
      padding-left: 5px;
}
div#navigation_h a:link, #nav a:active{
	color:white;
}
div#navigation_h a:visited {
	color:#C60;
}
div#navigation_h a:hover {
	color:#0C0;
	}    
    
/*==============================================================
Mise en forme Barre de menu gauche
===============================================================*/
	
div#menu {
	float:left;
	width:200px;
	border-right: 2px solid #d8d5d1;
}

/**/
div#langues {
	width:200px;
	/* height:30px; */ /* GiB 2010-10-15  pour essayer d'enlever la petite barre grise mais pas réussi voir plus tard*/
	background-color:#FFF;
	border-bottom: 2px solid #d8d5d1;
}
div#langues ul {
	list-style:none;
	margin:0;
	padding:5px;
}
div#langues li {
     display:inline;
     padding-left: 5px;
}
div#langues ul li img {
     border: 0;
}
div#nav {
	width:200px;
	margin: 0;
	background-color:#006;
}
div#nav .menu_section { /* le "titre" ex Documentation ou Trucs et Astuces dans le menu de navigation */
	font-size:1.25em;
	font-weight:bold;
	color:#FFF;
	border-bottom:none;
	padding-top: 20px;
	padding-left:0px;
}
div#nav h1 {
	color:white;
	font-size: 1.15em;
	padding-left: 15px;
	padding-top:15px;
	margin-bottom:0px;
}
div#nav h1+p{
margin-top:4px;
}
div#nav p {
	text-decoration:none;
	font-size: 0.95em;
	margin :3px;
	padding-left: 15px;
	padding-bottom: 2px;
	padding-top: 2px;
	border-bottom:1px solid #666;
}
div#nav a:link, #nav a:active{
	text-decoration: none;
	color:white;
}
div#nav a:visited {
	text-decoration: none;
	color:#C60;
}
div#nav a:hover {
	color:#0C0;
	font-weight:bold;
}

/*==============================================================
Mise en forme contenu - pied de page 
===============================================================*/
div#contenu {
	width: 697px;
	float:right;
	background-color: none;
}
div#pied_page {
	clear:both;
	float:left;
	width: 898px;
	height:20px;
	background-color:#006;
	color:white;
	line-height:20px;
	text-align:center;
	font-size: 0.75em;
	border-left:1px solid #006;
	border-right;1px solid #006;
	border-bottom:1px solid #006;

}

/*==============================================================
Mise en forme pages de documentation à consulter. Seulement sur des pages
dont le DIV id = "doc"
===============================================================*/

div#doc table {
	border-collapse: collapse;
	border: 1px solid #ccc;
	margin-left: 30px;
}
div#doc table td {
	text-align: left;
	border-left: 1px solid #ccc;
}
div#doc table.table_titre { 
/* tout tableau à l'intérieur du div doc et qui est de class table_titre */
	border: 0;
}
div#doc table.table_titre td {
	border: 0;
}
div#doc table td.first {
	width: 500px;
}
div#doc table td.boutons {
/* en fait là on écrit ce qui serait fait auto par omission? */
	width: auto;
}
div#doc table td.boutons a {
	display: block;
	margin-bottom: 3px;
	text-decoration: none;
	text-align: center;
	color:#006;
	font-weight:bold;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-image: url(images/bouton-langue.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
div#doc table td.boutons a:hover {
	color:#C60;
}
div#doc table td.boutons a:visited {
	color:#639;
}
/*===============================================================
Page Contact - champs de formulaire
=================================================================*/
form#contact {
  border: 0;
  padding: 10px; /* total 550 = espace interne du conteneur*/
  color:#222;
  text-align: left;
  
}
form#contact input.field,
form#contact select,
form#contact textarea {
  width: 163px;
  margin: 0 0 15px 0;
  font:Arial, Helvetica, sans-serif;
  font-size: 12px;
  padding: 2px 2px 3px 3px;
  border: 1px solid #006;
  vertical-align: top;
  background: #fff url(../img/ombre_top.png);
  background-position: 0 -3px;
  background-repeat: repeat-x;
}
form#contact textarea {
  width: 500px;
  height: 250px;
  border: 1px solid #006;
  vertical-align: top;
}
form#contact label {
  clear: both;
  display: block;
  text-align: left;
  margin: 0;
  padding: 0;
  width: 200px;
}
form#contact input#contact { /* bouton submit*/
}
p.formError {
  color: #c00;
  margin-top:10px;
  margin-left:0;
  margin-bottom: 15px;
}
p.quickContactMerci { /*le texte juste après le merci - le merci lui-même étant un simple h2 général*/
  margin: 10px 10px 10px 10px;
  background: #eef;
  border: 1px solid #036;
  color: #222;
  padding:10px;
}

/*==============================================================
Tout ce qui est général et peut se retrouver partout
===============================================================*/

p{
	padding-left:10px;
	padding-right:10px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
}
h1{
	margin-top: 1px;
	font-size: 2em;
	color: #003;
	padding-left:10px;
	padding-right:20px;
	text-align: left;
 }
h2 {
	 margin-top: 20px;
	 margin-bottom: 5px;
	 font-size: 1.5em;
	 color:#666;
	 padding-left:10px;
	 padding-right:20px;
}
.astuce_titre{
	padding-left:10px;
	padding-right:1opx;
	font-size: 1.40em;
	font-weight:bold;
	color:#003;
}
.centrage_horizontal {
	text-align:center;
}
.bienvenue{ /*utilisé sur page index.php soit l'accueil */
	font-family:"Arial Black", Gadget, sans-serif;
	font-size:1.5em;
	color:#006;
	font-weight:bold;
	text-align:center;
}
.bienvenue_non_centre{ /*utilisé sur page index.php soit l'accueil */
	font-family:"Arial Black", Gadget, sans-serif;
	font-size:1.5em;
	color:#006;
	font-weight:bold;
	text-align:left;
}
li {
	padding-bottom: 0.5em;
	padding-right: 10px;
}
.liste_accueil { /*utilisé sur page index.php soit l'accueil et aussi pour listes de presentation - ce sont les listes avec grosses puces gif */
	list-style-image:url(images/bullet-bleu.GIF);
	font:"Comic Sans MS", cursive;
	font-size: 1.15em;
	color:black;
	padding-left:25px;
	padding-right:10px;
	margin-top:30px;
	text-align: left;
}
.jaelviolet {
	color: #660066;
	font-weight: bold;
}
.jaelbleu {
	color: #000066;
	font-weight: bold;
}	 
.jaelrouge{
	color:#903;
	font-weight: bold;
}
.img { /*attention CSS sait ce qu'est h1, table mais pas img ! - Donc c'est moi qui ai appelé çà img car je sais que je l'applique à des images*/
	padding-top:10px;
	padding-bottom:15px;
}
.img_formation { /*utilisé pour les images à faire flotter à droite sur les pages liées à la formation */
	float:right;
	padding-right:5px;
}
table.astuce { /*utilisé essentiellement pour les tableaux dans les pages trucs et astuces */
	width: 670px;
	border: solid 2px #006;
	border-collapse: collapse;
	margin-left:10px;
}
table.astuce td {
	padding: 10px;
	vertical-align: top;
	border: solid 1px #ccc;
}
.jaeltitreindex{
	margin-top: 1px;
	font-size: 1.5em;
	color:#006;
	font-weight: bold;
	padding-left:10px;
	padding-right:20px;
	text-align: left;
	
}
.jaeltitreindexrouge{
	margin-top: 1px;
	font-size: 1.5em;
	color:#900;
	font-weight: bold;
	padding-left:10px;
	padding-right:20px;
	text-align: left;
	
}
