﻿@charset "utf-8";
/* CSS Document */

/* Fonts -----------------------------------------------------------------*/
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight:  300;
  src: local('Montserrat-Light'),
       url('/fonts/Montserrat-Light.woff') format('woff');
       unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight:  400;
  src: local('Montserrat-Regular'),
       url('/fonts/montserrat-regular.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: local('Montserrat-Medium'),
       url('/fonts/Montserrat-Medium.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: local('Montserrat-Semibold'),
       url('/fonts/montserrat-Semibold.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat-bold'),
       url('/fonts/montserrat-bold.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: local('Montserrat-ExtraBold'),
       url('/fonts/Montserrat-ExtraBold.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* Fin Fonts -------------------------------------------------------------*/

/* Structure -------------------------------------------------------------*/

.container-fluid {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}

body {
	font-family: "Montserrat", sans-serif;
	color: #4C5766;
	-webkit-font-smoothing: antialiased; 
	font-smoothing: antialiased; 
	text-rendering: optimizeLegibility; /* Améliore l'affichage du texte */
    /*hyphens: none;*/
}

.cache { /*positionne hors écran un texte qu'on veut visible pour l'accessibilité, mais non visible à l'écran */
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

#LayoutDivPIV { /*PIV et menu*/
	position: relative;
	width: 95%;
	margin: 0 auto;
	padding: 0;
}

#Intro {
	position: relative;
	font-size: 0.8rem;
}

#LayoutDivContenu { /*Contenu*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	line-height: 1.3rem;
	font-size: 0.8rem;
	height: auto;
}

#DivIndex { /*section documents de la page d'accueil et page Documents*/
	width: 95%;
	max-width: 960px;
	position: relative;
	margin: 0 auto;
	padding: 1rem 0 0 0;
}


@media print, screen and (min-width: 768px) {

#LayoutDivPIV { /*PIV et menu*/
	max-width: 960px;
}
}
/* Fin Structure ---------------------------------------------------------*/


/* Menu horizontal - LayoutDivPIV ----------------------------------------*/
#nav {
	position: relative;
	/*clear: both;*/
	width: 100%;
	margin: 0.5rem 0;
}

.ie7 nav {
    padding: 0 0 3rem 0;
}

#nav ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

#nav li {
	height: 2rem;
	background-color: #003a79;
	border-bottom: solid 1px #ffffff;
	padding: 0;
}

#nav li a {
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 0.6rem;
	/*text-decoration: none;*/
	color: #aed3e2;
	font-weight: bold;
	text-transform: uppercase;
	width: 100%;
	display: flex;
	height: inherit;
	-webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
	justify-content: center;
	text-align: center;
	border-bottom: solid 1px #ffffff;
}

#nav a:visited {
	color: #aed3e2; 	
}

#nav li:hover, #nav li:hover a {
	background-color: #525a65; 
	color: #ffffff;  	
}

#nav .majselect {
    background-color: #525a65;
	color: #ffffff;
}

@media only screen and (min-width: 481px) {
#nav li {	
	width: calc(100% / 3 - 1px); /*pour menu à 3 colonnes*/
	border-right: solid 1px #ffffff;
}
}

@media only screen and (min-width: 768px) {

#nav {
	margin: 0.5rem 0 2rem 0;
}

#nav li {
	float: left;
	width: 19.4%;  /* fallback for non-calc() browsers */
	width: calc(100% / 5 - 4px);/*pour menu à 5 boutons*/
	/*width: 16.2%;	/* fallback for non-calc() browsers */
	/*width: calc(100% / 6 - 4px); /*pour menu à 6 boutons*/
	border-right: solid 4px #ffffff;
	border-bottom: none;
}

#nav ul li a {
	border-bottom: none;
}

#nav ul li:last-child {
	border-right: solid 4px #003a79;
}

#nav ul li:last-child:hover {
	border-right: solid 4px #525a65;
}
}
/* Fin navigation horizontale ----------------------------------------*/
/* Fin LayoutDivPIV - PIV et menu ------------------------------------*/

/* LayoutDivContenu --------------------------------------------------*/
/* Titres et éléments de texte - LayoutDivContenu --------------------*/
h1, h1 a:visited {
	color: #000000;
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: bold;
}

h2 {
    margin: 2em 0 1em 0;
    font-weight: bold;
    text-transform: uppercase;
    color: #43514f;
   /* background-color: #FFFFFF;*/
    font-size: 1em;
}

h3 {
	color: #000000;
	font-weight: 600;
	text-align: center;
	font-size: 1.8rem;
	padding-bottom: 1rem;
}

h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: /*#536272;*/#4C5766;
	text-transform: uppercase;
}

a {
	color: #333333; /*gris très foncé*/
}

a:link {
	text-decoration: none;
	color: #005a8d;
}

a:visited {
	text-decoration: none;
	color: #005DA1; /*#1d6e9d;*/
}

a:hover {
	text-decoration: underline;
	/*color: #828a9a;*/
}

a:active {
	text-decoration: none;
}

#includedate { /*formulaire pour consulter les budgets précédents*/
	width: 9rem;
	text-align: left;
	border: solid thin #dee2e6;
	border-top: solid 2px #dee2e6;
	margin-left: auto;
	padding-left: 0.3rem;
}

/*.includedate { formulaire pour consulter les budgets précédents si le formulaire est au bas du fichier mais qu'on veut qu'il apparaisse en haut
	position: absolute;
	top: -310px;
	right: -30px;
	height: 2rem;
	text-align: right;
}*/

.texteh2 {
padding-top:1em;
font-weight: bold;
text-transform: uppercase;
color:#43514f;
background-color:#FFFFFF;
font-size: 1em;
}

/* Fin Titres et éléments de texte ---------------------------------------*/

/*Formulaire des budgets antérieurs---------------------------------------*/

#date /*formulaire des dates*/{
width:200px;
padding:0;
margin:0;
/*text-align:right;*/
}

#annee  /*formulaire des dates*/{
font-size:0.7em;
margin:0;
padding:0;
}

.none /*formulaire des dates et communiqués page documents*/ {
margin:0;
padding:0;
}

#date select /*formulaire des dates*/{
font-size:0.8em !important;
}

/* Fin Formulaire des budgets antérieurs----------------------------------*/

/* Réseaux sociaux MFQ - LayoutDivContenu --------------------------------*/

.facebook-share svg {
  fill: #3B5998;
}

.twitter-share svg {
  fill: #1DA1F2;
}

.linkedin-share svg {
  fill: #1DA1F2;
}

@media screen and (min-width: 769px) {
.sociauxMFQ {
	margin: 1.5rem 0 0 0;
}
}
/* Fin Réseaux sociaux MFQ --------------------------------------------*/


/* Fin de LayoutDivContenu -----------------------------------------------*/


@media print {
	
 a[href]:after {
    content: none !important;
  }
}

/* Page Archives */

#DivArchives { /*section documents de la page d'accueil et page Documents*/
	width: 95%;
	max-width: 960px;
	position: relative;
	margin: 0 auto/* 3rem auto*/;
	padding: 1rem 0 0 0;
	font-size: 0.9rem;
}

#DivArchives h1 {
	position: relative;
	padding-bottom: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #5e5e5e;
	text-align: left;
}

#DivArchives h1:before { 
	content : "";
	position: absolute;
	left    : 0;
	bottom  : 0;
	width   : 80%;
	border-bottom: solid thin;
}

#DivArchives h2 {
	position: relative;
	font-weight: bold;
	font-size: 0.9rem;
	text-transform: uppercase;
	color: #5e5e5e;
	text-align: left;
	margin: 2.5rem 0 1rem;
	border-bottom: solid thin;
	padding-bottom: 0.3rem;
}

#DivArchives dt {
	margin-top: 1.5rem; 
	margin-bottom: 0;
	padding-bottom: 0;
	font-weight: bold;
	text-transform: uppercase;
	color: #5e5e5e;
	text-align: left;
}

#DivArchives dd {
	padding-left: 3rem;
}

#DivArchives a:link, #DivArchives a:hover, #DivArchives a:visited {
    color: #005a8d;
    text-decoration: underline;
}

#DivArchives  #annee  /*formulaire des dates*/{
	font-size:0.7em;
	margin:0;
	padding:0;
}



@media (max-width: 768px) {		

  a:link, a:visited, a:hover {
	text-decoration: underline;
  }

}