/** These styles are used in your backend editor. **/

strong{
    font-weight: 700;
}

/* color */

.bleu{ color: #00aaa0; }
.bleu2{ color: #14bebe; }
.bleu3{ color: #b4e1dc; }
.gris{ color: #6f706f; }
.noir{ color: #000000; }

.fond-bleu-large{
    background: #00aaa0;
    color: #fff;
    padding: 6px 8px;
    display: block;
}

.fond-bleu,
.lien-standard-bleu{
    background: #00aaa0;
    color: #fff;
    padding: 6px 8px;
    display: inline-block;
}
.fond-gris,
.lien-standard-gris{
    background: #2e3030;
    color: #fff;
    padding: 6px 8px;
    display: inline-block;
}

.lien-standard-bleu,
.lien-standard-gris{
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
a.lien-standard-bleu:hover{
    background: #252525;
    color: #00aaa0;
}
a.lien-standard-gris:hover{
    background: #252525;
    color: #fff;
}

/* title */

h1{
    color: #6f706f;
    font-family: "Open Sans";
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}
h2{
    font-family: "Open Sans";
    font-size: 30px;
    font-weight: bold;
}
h3{
    font-family: "Open Sans";
    font-size: 25px;
    font-weight: normal;
}

.inline-block{
    display: inline-block;
    vertical-align: middle;
}

/* lien */

.link-internal-page,
.link-pdf{
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    display: inline-block;
    padding: 2px 6px;
    margin-bottom: 6px;
}
.link-internal-page{
    background:#6f706f;
    color: #b4e1dc;
}
.link-internal-page::before{
    background:url(./images/icons/picto-link.png) no-repeat scroll center center transparent;
    content: "";
    display: inline-block;
    height: 16px;
    margin-right: 6px;
    width: 16px;
    vertical-align: middle;
    margin-top: -2px;
}
.link-pdf{
    background:#00aaa0;
    color: #6f706f;
}
.link-pdf::before{
    background:url(./images/icons/picto-file.png) no-repeat scroll center center transparent;
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 6px;
    width: 14px;
    vertical-align: middle;
    margin-top: -2px;
}

/* liste a puce */

.liste-arrow{
    list-style: none;
}
.liste-arrow li::before{
    content:'\f054';
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 14px;
    margin-right: 10px;
    vertical-align: middle;
}
.liste-bleu li::before{
    color:#00aaa0;
}
.liste-gris li::before{
    color:#6f706f;
}

/* specific */


@media screen and (max-width: 1199px) and (min-width: 992px){
    h2{
        font-size: 18px;
    }
}
@media screen and (max-width: 991px) and (min-width: 768px){
    h1{
        font-size: 22px;
    }
    h2{
        font-size: 18px;
    }
}
@media screen and (max-width: 767px){
    table{
        font-size: 11px;
    }
    h1{
        font-size: 20px;
        line-height: 20px;
    }
    h2{
        font-size: 16px;
    }
}
