.TitrePrincipal { font-weight: bold;
    font-family: Arial,Helvetica,sans-serif;
    font-style: normal;
    text-align: left;
    color: rgb(51, 102, 102);
    text-decoration: overline;
    font-size: xx-large;
    }
.TexteSimple { font-family: Times New Roman,Times,serif;
    font-size: medium;
    }
.Encadre { border: 5px double rgb(61, 123, 123);
    padding: 8px;
    font-family: Times New Roman,Times,serif;
    margin-right: 100px;
    }
.TitreChapitre1 { font-family: Times New Roman,Times,serif;
    font-weight: bold;
    font-style: italic;
    color: rgb(153, 51, 0);
    text-align: left;
    margin-top: 50px;
    font-size: x-large;
    }
.PuceCroix { font-family: Times New Roman,Times,serif;
    text-align: left;
    list-style-position: outside;
    list-style-image: url(../Pictures/list1.gif) ! important;
    margin-top: 15px;
    }
.PuceRond { font-family: Times New Roman,Times,serif;
    text-align: left;
    list-style-position: outside;
    margin-top: 15px;
    list-style-image: url(../Pictures/list2.gif) ! important;
    }
.PetiteNote { font-family: Times New Roman,Times,serif;
    font-size: small;
    font-style: italic;
    margin-left: 125px;
    margin-right: 150px;
    }
.PuceCroix2 { font-family: Times New Roman,Times,serif;
    text-align: left;
    margin-top: 15px;
    list-style-position: outside;
    list-style-image: url(../Pictures/list3.gif);
    }
.TitreChapitre2 { font-family: Times New Roman,Times,serif;
    font-weight: bold;
    font-style: italic;
    text-align: left;
    margin-top: 50px;
    color: rgb(153, 51, 0);
    font-size: large;
    }

.maintitle {
    font-family: Arial,Helvetica,sans-serif;
    font-size: xx-large;
    color: #660000;
    text-align: center;
    font-weight: bold;
    text-decoration: overline;
    }
.currentbody {
    font-family: Times New Roman,Times,serif;
    font-size: large;
    font-weight: inherit;
    }
.bodytitle {
    font-family: Arial,Helvetica,sans-serif;
    color: #257171;
    font-weight: bold;
    font-size: x-large;
    }

.blink {
    animation-duration: 1s;
    animation-name: blink;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    81% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
/*
@keyframes blink {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
*/

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
