body, h1, h2, h3, h4, h5, h6 {
        font-family: "Ubuntu", sans-serif; 
}
.no-display { /* Les éléments de cette classe ne seront pas affichées  */
	display: none;
}
h1 {
    padding-left: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h1 a{
    text-decoration: none
}
h2 {
    font-size: 1.85em;
}
h2 a{
    text-decoration: none;
}
#entete-fiche{
    font-weight: 400;
}
.accroche {
    font-size: 1.2em;
    font-weight: 700;
}
h2,h3,h4,h5,h6 {
    font-weight: 700;
}
h4+p {
    margin-top: auto;
}
.listeStrong li {
    font-size: 1em;
    font-weight: 700;
	padding-top: 0.8em;
}
#titre-module {
    font-size: 1.8em;
    font-weight: 400;
    line-height: 1.2em;
}
.titre-livre {
    font-weight: 700;
    text-transform: uppercase;
}
.w3-striped tbody tr:nth-child(even){
		background-color:#fff
}
.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 80%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.list-style-none {
    list-style: none;
}