/***********/
/* definition des couleurs */
/***********/


:root {
    --princ-col: #DF0101;
    --sec-col: #cc0000;
    font-family: Verdana,"Georgia",sans-serif;
}


/***********/
/* general */
/***********/

a {
    text-decoration: none;
    font-weight: bold;
    color: var(--princ-col);
/*    font-weight: bold;*/
}

a:hover {
    text-decoration: none;
    color: var(--sec-col);
/*    font-weight: bold;*/
}


/*********/
/* Titre */
/*********/
#icon {
    position:absolute; 
    top: 10px; 
    right: 5px;
}

/* #recouvre img { */
/*   display: none; */
/*   top:5px; */
/*   right:5px; */
/*   width:150px; */
/*   height:150px; */
/* } */

/* #recouvre{ */
/*   display: block; */
/*   width:170px; */
/*   height:150px; */
/*   background:url(../images/???.png) no-repeat; */
/* } */

/* #recouvre:hover { */
/*   background-image:url(../images/???.png); */
/* } */



#title {
    text-align: right;
    margin-top: 100px;
    margin-right: 100px;
    margin-bottom: 0px;
    border-bottom: 3px solid #ff6600;
    font-variant: small-caps;
    font-size: 2.5em;
    font-weight: bold;
    font-family: Verdana, sans;
}
/*********/
/* Corps */
/*********/

#main {
    position: relative;
    padding: 30px;
    margin: 30px 10px 30px 11em;
    border: 1px solid var(--princ-col);
    background-color: #eeeeee;
    text-align: justify
}


/********/
/* Menu */
/********/

#menu {
    position:fixed;
    top: 220px;
    min-width: 10em;
    text-align: center;
}

ul.menu {
    list-style-type: none; 
    margin: 0px;
    padding: 10px;
}

ul.menu li {
    text-align: right;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--princ-col);
}

ul.menu li a {
    font-weight: bold;
    text-decoration: none;
    color: var(--princ-col);
    font-weight: bold;
}

ul.menu li a:hover {
    text-decoration: none;
    color: #ff6600;
    font-weight: bold;
}


/* Pied de page */

#footer {
    position: fixed;
    bottom: 5px;
    width: 98%;
    background-color: #eeeeee;
    font-family: Verdana, sans;
    font-size: 0.7em;
    border-top: 3px solid #ff6600;
}