/*
    éléments standards
*/

body
{
    font-family: Verdana, Helvetica, Arial, sans-serif; 
    background-color:lightgoldenrodyellow;
    font-size: 1em;
    font-weight: normal;
    /*text-align: justify;*/
    color: Black;
}

img {
    border: 0;
}

a:link 
{
    color: CadetBlue;
}

a:visited 
{ 
    color: DarkCyan; 
}

a:hover, a:active
{
    color: White;
    background-color: CadetBlue;
}

/*
    styles spécifiques
*/

.Centre
{
    text-align: center;
}

/* barre de titre */

.Titre
{
    width: 100%;
    background-color: red;
    border: thin solid;
    border-color: ThreedHighlight ThreedShadow ThreedShadow ThreedHighlight;
}

.Titre H1
{
    font-style: italic;
    font-size: 2.2em;
    font-weight: bolder;
    font-stretch:ultra-expanded; 
    color: gold;
    border-style: none;
    padding-left: 1em;
}

/* zone droite */

.Plus
{
    padding-top: 1em;
    padding-left: 1em;
    color: Black;
    text-align: right;	
    font-size: 0.8em;
}

/* contenu de la page */

.Contenu
{
    padding: 0.5em;
}

.Contenu h1 
{
    font-size: 2em;
    font-weight: bold;
    background-color: lightcoral;
    border-width: 1pt;
    border-style: solid;
    padding-left: 10pt;
    padding-bottom: 5pt;
    padding-top: 5pt;
    text-align:center;
}
.Contenu h2
{
    font-size: 1.6em;
    font-weight: bold;
    background-color: lightcoral;
    border-style: solid;
    border-width: 1pt;
    padding-left: 10pt;
    padding-bottom: 2pt;
    padding-top: 2pt;
    text-align:center;
}
.Contenu h3 
{
    font-size: 1.2em;
    font-weight: bold;
    background-color: lightcoral;	
    border-style: solid;
    border-width: 1pt;
    padding-left: 10pt;
    padding-bottom: 2pt;
    padding-top: 2pt;
    text-align:center;	
}
.Contenu h4 
{
    padding-left: 10pt;
    border-style: solid;
    border-width: 0pt 0pt 1pt 0pt;
    text-align:center;	
}

.Contenu td
{
    font-size: 10pt;
}

/* pied de page */ 

.Pied
{
    clear: both;
    padding-top: 2em;
    padding-right: 1em;
    text-align: right;
}

.Pied ul
{
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.Pied li
{
    display: inline;
    margin-right: 1em;
} 

/*
    Menus
*/

.Menu {
    color: menutext;
    background-color: transparent;
    /*font-size: 1.2em;*/
    text-decoration: none;
}
.Menu ul {
    margin-left: 0.5em;
    padding-left: 0;
}
.Menu li {
    list-style: none;
    font-size: 0.9em;
    white-space: nowrap;
}
.Menu a {
    display: block;
    text-decoration: none;
    color: menutext;
    padding: 0.5em;
    margin: 0.1em;
    background: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: ThreedHighlight ThreedLightShadow ThreedLightShadow ThreedHighlight;
}
.Menu a:hover {
    background: orangered;
    color: lightgoldenrodyellow;
}
.Menu a:active {
    background: orange;
}
.Menu .hidden {
    display: none;
}
.Menu .selected {
    background: orangered;
    color: gold;
    font-style: italic;
    font-weight: bold;
}

/* 
    gestion des tables 
*/
table, th, td
{
    border: 0px;
}

/* normal */
table.normal
{

}

table.normal td.droit 
{
    text-align: right;
}
table.normal td.gauche 
{
    text-align: left;
}
/* pas de bordure */
table.noborder
{
    border: 0px;
}

table.noborder td
{
    border: 0px;
}

table.noborder td.droit 
{
    text-align: right;
}
/* table centrée */
table.centre
{
    text-align:center; 
    margin-left:auto; 
    margin-right:auto;
}

table.centre td
{
    text-align:left; 
}

table.centre td.droit 
{
    text-align:right; 
}
table.centre td.gauche
{
    text-align:left; 
}
table.centre td.centre
{
    text-align:center; 
}
/* largeur maximale écran */

table.width_all
{
    width: 100%;
}

/* lignes de couleurs alternées */
table.bandes
{
    border: 1px solid black;
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-collapse:collapse;
    border-top-style:double;
    border-bottom-style:double;
}

table.bandes thead
{
    border: 1px solid black;
}

table.bandes td
{
    border: 1px solid black;
    padding-left: 5px;
    padding-right: 5px;
}

table.bandes td.centre 
{
    text-align: center; 
}

table.bandes td.droit 
{
    text-align: right;
}
table.bandes td.left
{
    text-align: left;
}

tr.ligne_1 td 
{
    background-color: whitesmoke ; 
}

tr.ligne_2 td 
{
    background-color: lightgray; 
}

table.bandes th 
{
    background-color: darkgrey;
    color: White;
    font-weight:bold;
    text-align:center;
}

.Erreur
{
    color: red;
    background-color: yellow;
}