/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
/*html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:middle;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1.3}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
*/
h1 {
color: black;
font-size: xx-large; /* 7 */
font-weight: bold;
text-align: center;
}
h2 {
color: #0080FF;
font-size: x-large;/* 6 */
font-weight: bold;
text-align: left;
}

.page { 
background-color : #FFFFEE; /* couleur du fond de page */
color : black; /* couleur du texte de la page */
margin-left: 8px;
margin-top: 8px;
margin-bottom: 8px;
margin-right:16px;
}
.menu {  
vertical-align: top;
}
.chapitre-menu {/* classe chapitre de menu */
margin-left:30px;
/*text-align: right;*/
color : green; /* couleur du texte */
font-weight : bold; /* fonte grasse */
font-size : large; /* grande fonte, il y a 7 valeurs, c'est la 5ème */
text-decoration:none;
display : block; /* s'affiche avec retour à la ligne, sinon c'est in-line = bout-à-bout ou none = non affiché */
}
.chapitre-menu a:hover {
background-color:yellow;
}
.item-menu  a {/* balise a d'un élément de menu */
text-align : left; /* aligné à gauche */
color : #666666; /* couleur grise */
font-weight : bold; /* fonte grasse */
font-size : medium; /* fonte moyenne, 4ème valeur */
text-decoration:none;
display : block;/* s'affiche avec retour à la ligne, sinon c'est in-line = bout-à-bout ou none = non affiché */
}
.item-menu  a:hover {/* balise a d'un élément de menu survolée (hover)*/
background-color:yellow;
}
.bandeau {
/*border-top: 1px solid black;*/
border-bottom: 1px solid black;
}

.bandeau table {  
background-color: #FFFFDD; 
width: auto; 
}
.item-bandeau  {
text-align : left; 
color : #666666; 
font-weight : bold; 
font-size : small; 
text-decoration : none;
}
.item-bandeau  a {
text-align : left; 
color : #666666; 
font-weight : bold; 
font-size : small; 
text-decoration : underline;
}
.item-bandeau  a:hover {
text-align : left; 
color : blue; 
font-weight : bold; 
font-size : small; 
text-decoration : underline;
}
.texte {  
vertical-align: top;
text-align : justify;
}
.encadre {  
width: 50%;
vertical-align: top;
text-align : justify;
padding: 10px;
margin-left: 25%;
box-shadow: 6px 6px 6px black;
border: 1px solid black;
border-radius: 10px;
}
.logo {
width: 12%;
float: left;
}
.TexteFormulaire {
font-weight : bold; /* fonte grasse */
font-size : large; /* fonte grande, 5ème valeur */
}
.CelluleFixe{
word-wrap: break-word;
vertical-align: top;
}