h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Quicksand, sans-serif;
}
li a,
p a {
    text-decoration: underline;
}

/*!
 * baguetteBox.js
 * @author  feimosi
 * @version %%INJECT_VERSION%%
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
    display: none;
    opacity: 0;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.8);
    transition: opacity 0.5s ease;
}
#baguetteBox-overlay.visible {
    opacity: 1;
}
#baguetteBox-overlay .full-image {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}
#baguetteBox-overlay .full-image figure {
    display: inline;
    margin: 0;
    height: 100%;
}
#baguetteBox-overlay .full-image img {
    display: inline-block;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
#baguetteBox-overlay .full-image figcaption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    line-height: 1.8;
    white-space: normal;
    color: #ccc;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: sans-serif;
}
#baguetteBox-overlay .full-image:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}
#baguetteBox-slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    white-space: nowrap;
    transition: left 0.4s ease, transform 0.4s ease;
}
#baguetteBox-slider.bounce-from-right {
    animation: a 0.4s ease-out;
}
#baguetteBox-slider.bounce-from-left {
    animation: b 0.4s ease-out;
}
@keyframes a {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: -30px;
    }
    to {
        margin-left: 0;
    }
}
@keyframes b {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: 30px;
    }
    to {
        margin-left: 0;
    }
}
.baguetteBox-button#next-button,
.baguetteBox-button#previous-button {
    top: 50%;
    top: calc(50% - 30px);
    width: 44px;
    height: 60px;
}
.baguetteBox-button {
    position: absolute;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 15%;
    background-color: #323232;
    background-color: rgba(50, 50, 50, 0.5);
    color: #ddd;
    font: 1.6em sans-serif;
    transition: background-color 0.4s ease;
}
.baguetteBox-button:focus,
.baguetteBox-button:hover {
    background-color: rgba(50, 50, 50, 0.9);
}
.baguetteBox-button#next-button {
    right: 2%;
}
.baguetteBox-button#previous-button {
    left: 2%;
}
.baguetteBox-button#close-button {
    top: 20px;
    right: 2%;
    right: calc(2% + 6px);
    width: 30px;
    height: 30px;
}
.baguetteBox-button svg {
    position: absolute;
    left: 0;
    top: 0;
}
.baguetteBox-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}
.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: c 2s infinite ease-in-out;
}
.baguetteBox-double-bounce2 {
    animation-delay: -1s;
}
@keyframes c {
    0%,
    to {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
}
code[class*="language-"],
pre[class*="language-"] {
    color: #000;
    background: none;
    text-shadow: 0 1px #fff;
    font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection,
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection {
    text-shadow: none;
    background: #b3d4fc;
}
code[class*="language-"]::selection,
code[class*="language-"] ::selection,
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection {
    text-shadow: none;
    background: #b3d4fc;
}
@media print {
    code[class*="language-"],
    pre[class*="language-"] {
        text-shadow: none;
    }
}
pre[class*="language-"] {
    padding: 1em;
    margin: 0.5em 0;
    overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
    background: #f5f2f0;
}
:not(pre) > code[class*="language-"] {
    padding: 0.1em;
    border-radius: 0.3em;
    white-space: normal;
}
.token.cdata,
.token.comment,
.token.doctype,
.token.prolog {
    color: #708090;
}
.token.punctuation {
    color: #999;
}
.namespace {
    opacity: 0.7;
}
.token.boolean,
.token.constant,
.token.deleted,
.token.number,
.token.property,
.token.symbol,
.token.tag {
    color: #905;
}
.token.attr-name,
.token.builtin,
.token.char,
.token.inserted,
.token.selector,
.token.string {
    color: #690;
}
.language-css .token.string,
.style .token.string,
.token.entity,
.token.operator,
.token.url {
    color: #9a6e3a;
    background: hsla(0, 0%, 100%, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
    color: #07a;
}
.token.class-name,
.token.function {
    color: #dd4a68;
}
.token.important,
.token.regex,
.token.variable {
    color: #e90;
}
.token.bold,
.token.important {
    font-weight: 700;
}
.token.italic {
    font-style: italic;
}
.token.entity {
    cursor: help;
}
.visually-hidden:not(:focus):not(:active) {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}
.skip-link {
    position: absolute;
    top: 60px;
    z-index: 1;
}
.navbar-brand .navbar-item,
.skip-link {
    font-family: Quicksand, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}
.navbar-end {
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .navbar-end form {
        padding: 1rem;
    }
    .navbar-end form .control:first-child {
        width: 100%;
    }
}
.notification ul {
    margin: 0.5em 1.4em;
    list-style-type: disc;
}
.card,
.card-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}
.card-content .button:last-child {
    margin-top: auto;
}
.section-latest-entries .buttons {
    margin-top: 1.5rem;
}
.tags {
    margin-top: 3rem;
}
.tags .label {
    margin-right: 0.5em;
}
.section-record .image {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.button {
    text-decoration: none;
}
p.meta {
    margin-top: 1rem;
    color: #777;
    font-size: 90%;
}
@media screen and (max-width: 768px) {
    .media {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.media-right {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    margin-left: 0;
}
@media screen and (max-width: 768px) {
    .media-right {
/*        -ms-flex-order: -1;
        order: -1;*/
        width: 100%;
        margin-bottom: 1rem;
    }
}
.imageholder img {
    width: 100%;
}
.notification > .delete {
    right: 0.5rem;
    top: 0.5rem;
}
.hero-image {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    margin-top: 52px;
}
.hero.is-large .hero-body {
    padding-bottom: 4rem;
    padding-top: 4rem;
}
.hero.is-large .hero-body h1.title,
.hero.is-large .hero-body h2.subtitle {
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}
.hero.is-large .hero-body h1.title {
    font-size: 2rem;
    font-weight: 700;
}
.hero.is-large .hero-body h2.subtitle {
    font-size: 1.5rem;
}
@media print, screen and (min-width: 769px) {
    .hero.is-large .hero-body {
		/*VMA : diminution hauteur image bandeau
		padding-bottom: 12rem;
        padding-top: 12rem;*/
		padding-bottom: 2.5rem;
        padding-top: 2.5rem;
    }
    .hero.is-large .hero-body h1.title {
        font-size: 2.5rem;
    }
    .hero.is-large .hero-body h2.subtitle {
        font-size: 1.875rem;
    }
}
@media screen and (min-width: 1088px) {
    .hero.is-large .hero-body {
		/* VMA : diminution hauteur image bandeau
        padding-bottom: 16rem;
        padding-top: 16rem;*/
		padding-bottom: 3rem;
        padding-top: 3rem;
    }
	.hero.is-medium .hero-body {
		/* VMA : diminution hauteur image bandeau */
		padding-bottom: 6rem;
        padding-top: 6rem;
    }
    .hero.is-large .hero-body h1.title {
        font-size: 3rem;
    }
    .hero.is-large .hero-body h2.subtitle {
        font-size: 2.25rem;
    }
}

[data-background-image] {
    position: relative;
}
[data-background-image] .dark-overlay {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}
pre .tag {
    margin: 0;
    padding: 0;
    background-color: transparent;
    display: inherit;
    font-size: inherit;
}
pre .number {
    font-size: 1em;
}
/*p {
    height: 100%;
}*/
/* add VMA */
a, a:visited,a:active {color: #4b789b;
	text-decoration: none !important}
a:hover {color: #293096 }

div.actu_left {
/*	border: 1px solid #e76803 Orange;*/
	border: 1px solid #293096;
	/*border-radius: 10px;*/
	padding: 0px;
	margin-top : 10px;
	margin-bottom : 10px;
}

div.actu_left h2 {
	color: #fff;
	background-color: #293096;
/*	margin-top: -6px;
	margin-left: -6px;
	margin-right: -6px;*/
	padding: 6px;
	font-size: 1.2em;
	font-weight: 500;
	text-align: center;
	margin:0;
}

div.actu_left p {
	padding: 6px;
}
div.actu_left img.illust {
	width:100%;
	height:100%;
/*	margin-left:-6px;
	margin-right:-6px;*/
}
button.cc_b_cp {display: none}

.footer {
    padding: 1rem;
	color : white;
}
.footer a,.footer a:visited {color: #ffcc66}

.footer nav {margin:0 !important}


footer.footer small {font-size: 0.75em;}

small.xsmall {font-size: 0.6em; line-height: 1}

div.footerinfos {text-align: center; width:100%}

footer.footer p {margin : 3px}

div.logosfooter img {max-height:3.7rem}
@media print, screen and (max-width: 768px) {
	div.logosfooter img {max-height:7rem}
}
div.logosfooter p {margin-right: 10px}

h1 {color : #174990 !important}
h2, h3 {color : #51697c !important}
div.actu_left h2 {color : white !important}

.teaser {
   padding: 8px;
    margin-bottom: 1rem;
	background-color: #4b789b;
	color:white;
	border-radius: 10px;
}
.teaser strong {color:white;}

.teaserref {
	font-size:110%;
	color: #2c3030 !important;
	font-weight: bold;
	margin-bottom : 15px
}
.teaserref p {line-height: 120% !important}

h2.titleref {
	padding: 8px;
	background-color: #174990;
	color:white !important;
	border-radius: 10px;
}

div.imglnkref {
	padding: 40px;
}
@media print, screen and (max-width: 768px) {
	div.imglnkref {
	padding-top: 5px;padding-bottom: 5px;
}
}
li.refmleftactif a {
	padding: 4px;
	background-color: #174990;
	color:white !important;
	border-radius: 5px;
}

