body { 
	/*font-size:120%; */
	color:black; 
	background-color:white;
	}
	
#image_logo
{
	/* 80% largeur d'écran */
	width : 80vw;
}

a:link {
  color: blue;
}

/* visited link */
a:visited {
  color: blue;
}


.imagePresentation div
{
display:inline-block;
}	

.image div
{
display:inline-block;
padding-left:15px;
padding-right:15px;
padding-top:30px;
}	

img
{
	/* 80% largeur écran si image trop grande */
	/*width:120%;*/
	max-width:80vw;
	height: auto;
}



.spoilerSwitch {
    display: inline-block;
    border: 1px solid transparent;
	

    font-size: 2em;
    font-weight: 700;
    border-radius: 5px;
    padding-top: 0;
    padding-right: 10px;
    padding-bottom: 0;
    padding-left: 10px;
    text-align: center;
    outline: none;
    line-height: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    border: none;
        border-top-color: currentcolor;
        border-right-color: currentcolor;
        border-bottom-color: currentcolor;
        border-left-color: currentcolor;
    white-space: nowrap;
    text-decoration: none !important;
    vertical-align: bottom;
    color: #fff;
    text-decoration: none;
    background: #4286d6;
    border-color: #2b71c5;
}


.commentaire {
	
	width: 80vw;
	margin-left : 2em;
	
	
	padding-top: 0;
    padding-right: 10px;
    padding-bottom: 0;
    padding-left: 10px;
	display:block;
}

.commentaireTitre {
	
	 
	 font-weight: 700;
			font-size:1em;
}
.commentaireTexte {
	
	display:block;
	margin-left : 0em;
	padding : 1em;
	border: 1px solid black;
	/* background-color:#b7b7b7; */
	background-color: #00000033;
		font-size:1em;
}


.hrv2{
	width:30%;
    margin-right: auto;
    margin-left: auto;
	height:10px;
	font-size:3em;
	
	border: 2px solid #D6E0E1;
    opacity: 1.0;
    border-radius: 3px;
	
	background: #525BF4; /* For browsers that do not support gradients */ 
    background: linear-gradient(0deg, #000150 0%, #0B12A4 20%, #525BF4 80%, #000150 100% ); /*firefox*/
    color: linear-gradient(0deg, #000150 0%, #0B12A4 20%, #525BF4 80%, #000150 100% ); /*ie7+*/
}

.hrv2Title {
	
	width:50%;
    margin-right: auto;
    margin-left: auto;
	height:58px;
	font-size:2em;
	text-align: center;
	color: white;
	border: 2px solid #D6E0E1;
    opacity: 1.0;
    border-radius: 3px;
	
	background: #525BF4; /* For browsers that do not support gradients */ 
    background: linear-gradient(0deg, #000150 0%, #0B12A4 50%, #525BF4 95%, #000150 100% ); /*firefox*/
    color: linear-gradient(0deg, #000150 0%, #0B12A4 50%, #525BF4 95%, #000150 100% ); /*ie7+*/
	
	
	
	
	
    /* centre verticalement les enfants entre eux */
    align-items: center;

    /* active flexbox */
    display: flex;

    /* garde le texte centré s’il passe sur plusieurs lignes ou si flexbox n’est pas supporté */
    text-align: center;
}

.hrv2Title::before,
.hrv2Title::after {
    /* remplir le fond du trait permet également d’utiliser des images ou dégradés?! */
    background: currentColor;

    /* nécessaire pour afficher les pseudo-éléments */
    content: "";

    /* partage le reste de la largeur disponible */
    flex: 1;

    /* l’unité « em » garantit un ratio constant avec la taille du texte */
    height: .045em;

    /* espace les traits du texte */
    margin: 0 .5em;
}


