/* ==============================================
   FEUILLE DE STYLES DES GABARITS HTML/CSS
   ============================================== */


/* --- STYLES DE BASE POUR LE TEXTE ET LES PRINCIPAUX ÉLÉMENTS --- */

/* Page */
html {
	font-size: 100%; /* Voir -> Note 1 à la fin de la feuille de styles. */
}
body {
	margin: 0;
	padding: 10px 20px; /* Note -> 2 */
	/*font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;*/ /* 3 */
	font-family: Arial, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
    font-size: 0.85em; /* -> 4 */
	line-height: 1.25; /* -> 5 */
	color: black;
	background: white;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 0; /* -> 6 */
}

h2 {
	font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
	font-weight: normal; /* -> 7 */
}

h2.contact_us{
   font-family: Arial, "Bitstream Vera Sans", "Lucida Grande", sans-serif; 
   font-weight: normal;
   letter-spacing: 0.16em;   
   word-spacing: 0.3em;
   /*font-size: 2em;*/
   margin-top: 0px;    
   padding-left: 0px;
   text-transform: uppercase;      
   color: #0E389D;     
}

h2.contact_us img{
    margin-right: 10px;
}
   
h1 {
	font-family: Arial, "Bitstream Vera Sans", "Lucida Grande", sans-serif; 
    font-weight: normal;
    letter-spacing: 0.2em;   
    word-spacing: 0.3em;
    font-size: 0.8em;    
    font-weight: bold;
    /*font-style: italic;*/
    text-transform: uppercase;              
}      

h2 {font-size: 1.8em;}
h3{
    font-size: 1.2em;
    color: #0E389D; 
}

h2.training_title {
    font-size: 1.3em;
    color: #0E389D; 
    font-family: Arial, "Bitstream Vera Sans", "Lucida Grande", sans-serif;      
    font-weight: bold;   
}

h2.training_title_1 {
     margin-top: 0;          
}


h4 {font-size: 1em;}

/* Listes */
ul, ol {
	margin: .75em 0 .75em 24px;
	padding: 0; /* -> 9 */
}
ul {
	list-style: square;
}
li {
	margin: 0;
	padding: 0;
}

/* Paragraphes */
p {
	margin: .75em 0;
}
li p, blockquote p {
	margin: .5em 0;
}

/* Citations */
blockquote, q {
	font-size: 1.1em;
	font-style: italic;
	font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
}
blockquote {
	margin: .75em 0 .75em 24px;
}
cite {
	font-style: italic;
}

/* Liens */
a {
	/*color: mediumblue;*/
    color: #0E389D;     
	text-decoration: underline;
}
a:hover, a:focus {
	color: crimson;  
}
a img {
	border: none; /* -> 10 */
}

/* Divers éléments de type en-ligne */
em {
	font-style: italic;
}
strong {
	font-weight: bold;
	color: dimgray;
}


/* --- STYLES POUR CERTAINS CONTENUS DES GABARITS --- */

pre, code {
	font-size: 100%;
	font-family: "Bitstream Vera Mono", "Lucida Console", "Courier New", monospace;
}
pre {
	width: 90%;
	overflow: auto;
	overflow-y: hidden;
	margin: .75em 0;
	padding: 12px;
	background: #eee;
	color: #555;
}
pre strong {
	font-weight: normal;
	color: black;
}
p#copyright {
	/*margin: 20px 0 5px 0;*/
	text-align: right;
	font-size: .8em;
	color: #000;

#copyright a {
	color: #848F63;
	text-decoration: none;
}
#copyright a:hover, #copyright a:focus {
	text-decoration: underline;
}
