@charset "utf-8";

/* BODY & GENERAL */
body {
    font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #2a364e;
	margin: 0px;
	padding: 0px;
	text-align: center;
	background-image: url(images/bg-body.jpg);
	background-repeat: repeat;
	background-position: center top;
	background-color: #f9f9f9;
	background-attachment: fixed;
}
div {
	position: relative;
}
img {
	margin: 0px;
	padding: 0px;
	border: 0px;
}
p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding: 0px;
}
a {
	color: #0088B6;
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	color: #0000ff;
	text-decoration: underline;
}
form {
	margin: 0px;
	padding: 0px;
}
input, textarea {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	padding: 15px;
	color: #2a364e;
	border: 1px solid #cccccc;
	width: 100%;
	box-sizing: border-box;
	background-color: #ffffff;
	border-radius: 5px;
	outline: none;
}
input::placeholder {
	font-weight: normal;
	font-style: italic;
    color: #2a364e;
    opacity: 0.6;
    font-size: 17px;
    text-align: left;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	font-family: 'Open Sans', sans-serif;
	color: #2a364e;
	margin: 0px;
	overflow: hidden;
	padding: 15px;
	width: 100%;
	box-sizing: border-box;
	text-overflow: ellipsis;
	white-space: nowrap;
	background-image: url(icon/fleche-bas-bleu.png);
	background-repeat: no-repeat;
	background-position: right 12px center;
    background-size: 18px;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	font-size: 18px;
	border-radius: 5px;
	outline: none;
}
input.checkbox {
	width: 25px;
	height: 25px;
	background-color: #ffffff;
	border-radius: 5px;
	box-sizing: border-box;
	color: #2a364e;
	padding: 5px;
	outline: none;
}
hr {
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	border-top: 1px dotted #bbbbbb;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 0px;
	clear: both;
}
div.plus a {
    display: block;
	width: 60px;
    height: 60px;
    box-sizing: border-box;
    padding: 2px;
	background-color: #ffffff;
	margin-left: auto;
    margin-right: auto;
	border-radius: 30px;
}
div.plus a:hover {
    opacity: 0.7;
}
div.plus a img {
    display: block;
    width: 100%;
}
div.clear {
	clear: both;
}
div.pub {
	width: 100%;
	margin-bottom: 20px;
}
/* BODY & GENERAL END */




/* HEADER & NAV */
div#header {
	width: 100%;
	height: 210px;
    background-image: linear-gradient(#f5f5f5, #ffffff);
	background-color: #ffffff;
	box-sizing: border-box;
}
div#header div#logo {
	float: left;
	margin-left: 30px;
	margin-top: 30px;
	width: 90%;
	max-width: 225px;
}
div#header div#logo img {
	width: 100%;
	display: block;
}
div#header div#health-tips {
	float: left;
    font-family: 'Open Sans', sans-serif;
	width: 290px;
	height: 100px;
	box-sizing: border-box;
	font-size: 22px;
	text-align: left;
	margin-left: 18px;
	padding-left: 18px;
	padding-top: 34px;
	border-left: 3px dotted #dddddd;
	margin-top: 55px;
}
@media (max-width: 1420px) {
div#header div#health-tips {
	display: none;
}	
}
div#header button.menu-btn {
	display: none;
}
nav ul.topnav {
	position: absolute;
	top: 75px;
	right: 30px;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	height: 60px;
	z-index: 100;
}
nav ul.topnav li {
	float: left;
	height: 60px;
}
nav ul.topnav li a {
	display: block;
	font-family: 'Varela Round', sans-serif;
	color: #2a364e;
	height: 60px;
	padding-top: 20px;
	font-size: 19px;
    font-weight: bold;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
	box-sizing: border-box;
}
nav ul.topnav li a:hover {
	color: #0088B6;
	opacity: 1;
}
nav ul.topnav li a.categories {
	color: #ffffff;
    font-size: 19px;
    width: 250px;
    height: 60px;
	font-weight: normal;
    text-align: left;
	background-color: #f0545e;
    padding-top: 19px;
    padding-left: 60px;
	margin-left: 15px;
	border-radius: 30px;
    background-image: url(icon/search-white.png);
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size: 30px auto;
}
nav ul.topnav li a.categories:hover {
	opacity: 1;
	background-color: #ee2834;
}
nav ul.topnav li ul {
	display: none;
	width: auto;
	position: absolute;
	padding: 0px;
	margin: 0px;
}
nav ul.topnav li:hover ul {
	display: block;
	position: absolute;
	padding: 0px;
	top: auto;
	margin-top: -8px;
	width: 240px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 0px 8px #444444;
}
nav ul.topnav li:hover ul li {
	list-style: none;
	margin: 0px;
	padding: 0px;
	height: auto;
	width: 100%;
	box-sizing: border-box;
}
nav ul.topnav li:hover ul li a {
	display: block;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 15px;
	text-decoration: none;
	color: #2a364e;
	background-color: #ffffff;
	text-align: left;
	border-bottom: 1px solid #eeeeee;
	font-size: 15px;
	font-weight: normal;
    opacity: 1;
}
nav ul.topnav li:hover ul li a:hover {
	opacity: 1;
	background-color: #D9F0FD;
	color: #2a364e;
}
nav ul.topnav li:hover ul li.plus a span.plus {
    display: block;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    background-color: #0088B6;
    font-size: 34px;
    padding-top: 1px;
    border-radius: 20px;
    background-image: none;
    text-align: center;
    color: #ffffff;
    transition: 0.3s;
}
nav ul.topnav li:hover ul li.plus a:hover {
    background-color: #ffffff;
}
nav ul.topnav li:hover ul li.plus a:hover span.plus {
    background-color: #00BBFF;
}
@media (max-width: 1220px) {
div#header {
	width: 100%;
	height: auto;
	padding: 15px;
}
div#header div#logo {
	margin-left: 0px;
	margin-right: 10px;
	margin-top: 0px;
	max-width: 280px;
	width: 90%;
}
div#header button.menu-btn {
	display: block;
    position: absolute;
    top: 5px;
    right: 5px;
	height: 60px;
	width: 60px;
	padding: 17px;
	background-color: transparent;
	cursor: pointer;
	outline: none;
	border: 0px;
	transition: 0.3s;
	z-index: 100;
}
div#header button.menu-btn img {
	display: block;
	width: 100%;
}
nav ul.topnav {
	display: none;
}
}
div#erreur {
	display: block;
	width: 90%;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
div#erreur img {
	display: block;
	width: 100%;	
}
/* HEADER & NAV */










/* PATHWAY */
div#pathway {
    font-family: 'Open Sans', sans-serif;
	font-size: 15px;
    line-height: 24px;
	color: #2a364e;
	width: 100%;
	background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
	padding: 18px;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 0px;
}
div#pathway a {
	text-decoration: underline;
	color: #2a364e;
}
div#pathway a:hover {
    opacity: 0.7;
}
div#pathway div {
	display: inline-block;
	vertical-align: middle;
}
div#pathway div.date {
    padding-right: 10px;
    border-right: 1px solid #dddddd;
	margin-right: 7px;
}
div#pathway div.fleche {
	color: #0088B6;
	margin-left: 3px;
	margin-right: 3px;
}
div#pathway div.titre {
	font-weight: bold;
}
/* PATHWAY END */






/* IS ACCUEIL */
div#index-sante-accueil {
	display: block;
	width: 100%;
    color: #ffffff;
	box-shadow: 0px 0px 3px #cccccc;
    background-color: #0088B6;
	box-sizing: border-box;
    padding: 60px;
	text-align: center;
    margin-bottom: 60px;

}
@media (max-width: 780px) {
div#index-sante-accueil {
    padding: 30px;
    padding-top: 20px;
}
}
p.quebec-fleur-de-lys {
    display: block;
    width: 80%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
@media (max-width: 780px) {
p.quebec-fleur-de-lys {
    max-width: 160px;
    margin-bottom: 10px;
}
}
p.quebec img {
    display: block;
    width: 100%;
}
div#index-sante-accueil p.h1-style {
	width: 90%;
    font-size: 44px;
    line-height: 48px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    color: #ffffff;
    margin-bottom: 20px;
}
div#index-sante-accueil p.h2-style {
	width: 90%;
    font-size: 32px;
    line-height: 36px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 30px;
}
@media (max-width: 780px) {
div#index-sante-accueil p.h2-style {
	width: 90%;
    font-size: 24px;
    line-height: 30px;
}
}
div#index-sante-accueil div.consulter-le-repertoire {
    margin-left: auto;
    margin-right: auto;
}
div#index-sante-accueil div.consulter-le-repertoire a {
    border: 0px;
    padding-top: 25px;
}
/* IS ACCUEIL END */









/* H1 H2 H3 */
h1.page-index-sante, p.h1-style {
    display: block;
    width: 85%;
    text-align: center;
    font-family: 'Varela Round', sans-serif;
    font-size: 34px;
    line-height: 40px;
    font-weight: bold;
    color: #2a364e;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 15px;
}
h1.page-index-sante span.icon {
	display: inline-block;
	width: 50px;
	height: 50px;
	margin-bottom: -12px;
	margin-left: 0px;
}
@media (max-width: 980px) {
h1.page-index-sante span.icon {
	display: none;
}
}
h1.page-index-sante span.icon img {
	display: block;
	width: 100%;
}
h2.page-index-sante, p.h2-style {
    display: block;
    width: 85%;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: normal;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 30px;
}
h2.repertoire-sante {
    display: block;
    width: 100%;
    font-size: 24px;
    font-family: 'Varela Round', sans-serif;
    line-height: 30px;
    text-align: left;
    color: #0088B6;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 0px;
    margin-top: 0px;
}
h3 {
    display: block;
    width: 85%;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    margin-left: auto;
    margin-right: auto;
    margin-top: -15px;
    margin-bottom: 5px;
}
/* H1 H2 H3 END */







/* PUBLICATION PREVIEW */
div.publication-preview {
	display: inline-block;
	vertical-align: top;
	width: 85%;
	max-width: 260px;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 30px;
	box-sizing: border-box;
}
@media (max-width: 600px) {
div.publication-preview {
	display: block;
	width: 85%;
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}
}
div.publication-preview a {
	display: block;
	width: 100%;
	background-color: #ffffff;
	padding: 10px;
    padding-bottom: 15px;
	box-sizing: border-box;
	box-shadow: 0px 0px 3px #cccccc;
    border-radius: 10px;
	text-decoration: none;
	transition: 0.3s;
	text-align: left;
}
div.publication-preview a:hover {
	opacity: 0.7;
}
div.publication-preview a span.icon-actualite {
    position: absolute;
    top: -10px;
    left: -18px;
    width: 110px;
    height: 40px;
    z-index: 60;
}
div.publication-preview a span.icon-actualite img {
	display: block;
	width: 100%;
}
div.publication-preview a span.icon-chronique {
    position: absolute;
    top: -10px;
    left: -18px;
    width: 110px;
    height: 40px;
    z-index: 60;
}
div.publication-preview a span.icon-actualite img {
	display: block;
	width: 100%;
}
div.publication-preview a span.image {
	display: block;
	width: 100%;
	margin-bottom: 11px;
    z-index: 50;
}
div.publication-preview a span.image img {
	display: block;
    border-radius: 5px;
	width: 100%;
}
div.publication-preview a span.categorie {
	display: block;
    font-family: 'Varela Round', sans-serif;
	color: #0088B6;
	font-size: 17px;
    line-height: 18px;
	margin-bottom: 5px;
}
div.publication-preview a span.titre {
	display: block;
    font-family: 'Varela Round', sans-serif;
	color: #2a364e;
	font-size: 18px;
    line-height: 22px;
    font-weight: bold;
	margin-bottom: 5px;
}
div.publication-preview a span.description {
	display: block;
    font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	color: #2a364e;
	line-height: 18px;
	margin-bottom: 0px;
}
div.publication-preview a span.date {
	display: block;
    width: 90px;
    text-align:  center;
    font-family: 'Open Sans', sans-serif;
	color: #666666;
	font-size: 15px;
    line-height: 15px;
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 20px;
    margin-top: 10px;
}
/* PUBLICATION PREVIEW END */





/* BOTTOM */
div.bottom {
    font-family: 'Open Sans', sans-serif;
	display: inline-block;
	width: 90%;
	max-width: 340px;
	margin-left: 2%;
	margin-right: 2%;
	margin-bottom: 60px;
	text-align: center;
}
div.bottom a {
	display: block;
	width: 100%;
	text-decoration: none;	
}
div.bottom a:hover {
    opacity: 0.7;
}
div.bottom a span.title {
    font-family: 'Varela Round', sans-serif;
	display: inline-block;
	font-size: 28px;
    font-weight:  bold;
	color: #0088B6;
	margin-bottom: 7px;
	transition: 0.3s;	
}
div.bottom a span.texte {
	display: block;
	font-size: 18px;
	color: #2a364e;
	margin-bottom: 10px;
	line-height: 22px;
	transition: 0.3s;	
}
div.bottom a span.image {
	display: block;
	margin-bottom: 0px;	
}
/* BOTTOM END */




/* FOOTER */
div#footer {
    font-family: 'Open Sans', sans-serif;
    display: block;
	clear: both;
	width: 100%;
    box-sizing:  border-box;
	background-color: #ffffff;
	padding-top: 50px;
	padding-bottom: 10px;
	text-align: center;
	border-top: 1px solid #dddddd;
    font-size: 17px;
}
@media (max-width: 1080px) {
div#footer {
	padding-bottom: 25px;
}
}
div.tag-categorie {
    display: inline-block;
    vertical-align: top;
    height: 50px;
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 16px;
}
div.tag-categorie.large {
    height: 60px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}
div.tag-categorie a {
    display: block;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #bbbbbb;
    border-radius: 25px;
    font-size: 17px;
    line-height: 17px;
    color: #666666;
    text-align: left;
    padding-left: 45px;
    padding-top: 15px;
    padding-right: 20px;
    background-image: url(icon/loupe-gris.png);
    background-repeat: no-repeat;
    background-position: left 17px center;
    background-size: 20px auto;
}
div.tag-categorie.large a {
    height: 60px;
    border-radius: 30px;
    font-size: 17px;
    line-height: 17px;
    padding-left: 55px;
    padding-top: 20px;
    padding-right: 25px;
    background-image: url(icon/loupe-gris.png);
    background-repeat: no-repeat;
    background-position: left 18px center;
    background-size: 30px auto;
}
div.tag-categorie a:hover {
    color: #2a364e;
    background-color: #d9f0fd;
    text-decoration: none;
}
div.tag-categorie.plus a {
    display: block;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    background-color: #0088B6;
    border-radius: 25px;
    background-image: none;
    text-align: center;
    padding: 2px;
    border: 0px;
}
div.tag-categorie.plus a:hover {
   background-color: #00BBFF;
}
div.tag-categorie.plus a img {
    display: block;
    width: 100%;
}
div#footer div.colonne {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    box-sizing: border-box;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: 1px;
    margin-right: 1px;
    margin-bottom: 40px;
}
@media (max-width: 1150px) {
div#footer div.colonne {
    display: block;
    width: 95%;
    padding-left: 25px;
    padding-right: 25px;
    margin-left: auto;
    margin-right: auto;
}
}
div#footer div.colonne.index-sante {
    max-width: 460px;
}
@media (max-width: 1460px) {
div#footer div.colonne.index-sante {
    vertical-align: middle;
}
}
div#footer div.colonne.index-sante div.logo {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	margin-top: 0px;
}
div#footer div.colonne.index-sante div.logo img {
	display: block;
	width: 100%;	
}
div#footer div.colonne.index-sante p.humain-avant-tout {
    font-family: 'Varela Round', sans-serif;
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: bold;
}
div#footer div.colonne.index-sante p.description {
    margin-top: 0px;
    margin-bottom: 0px;
}
div#footer div.colonne.navigation {
    max-width: 250px;
    border-left: 3px dotted #eeeeee;
    border-right: 3px dotted #eeeeee;
}
@media (max-width: 1460px) {
div#footer div.colonne.navigation {
    vertical-align: middle;
    border-right: 0px;
}
}
@media (max-width: 1150px) {
div#footer div.colonne.navigation {
    max-width: 260px;
    border-left: 0px;
}
}
div#footer div.colonne.navigation ul {
    width: 100%;
    padding: 0px;
    margin: 0px;
    list-style: none;
}
div#footer div.colonne.navigation ul li a {
    display: block;
    background-color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #2a364e;
    text-align: left;
    text-decoration: none;
}
div#footer div.colonne.navigation ul li a:hover {
    text-decoration: underline;
}
@media (max-width: 1150px) {
div#footer div.colonne.navigation ul li a {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 10px;
}
div#footer div.colonne.navigation ul li a:hover {
    background-color: #d9f0fd;
    text-decoration: none;
}
}
div#footer div.colonne.navigation ul li.zone-annonceur a {
    font-weight: bold;
}
div#footer div.colonne.infolettre-sante {
    max-width: 300px;
    border-right: 3px dotted #eeeeee;
}
@media (max-width: 1460px) {
div#footer div.colonne.infolettre-sante {
    vertical-align: middle;
    width: 80%;
    max-width: 340px;
    padding: 30px;
    border-right: 0px;
    background-color: #fafafa;
    border: 1px solid #dddddd;
    border-radius: 20px;
    margin-right: 50px;
}
}
@media (max-width: 1150px) {
div#footer div.colonne.infolettre-sante {
    vertical-align: middle;
    width: 80%;
    max-width: 340px;
    padding: 30px;
    border-right: 0px;
    background-color: #fafafa;
    border: 1px solid #dddddd;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}
}
div#footer div.colonne.infolettre-sante p.infolettre {
    font-family: 'Varela Round', sans-serif;
    margin-top: 0px;
    margin-bottom: 5px;
    font-size: 26px;
    color: #0088B6;
    font-weight: bold;
}
div#footer div.colonne.infolettre-sante p.description {
    margin-top: 0px;
    margin-bottom: 15px;
}
div#footer div.colonne.reseaux {
    max-width: 410px;
}
div.icon-social {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-left: 5px;
	margin-right: 5px;
    margin-bottom: 25px;
}
div.icon-social a {
	display: block;
	width: 100%;
}
div.icon-social a:hover {
	opacity: 0.7;
}
div.icon-social a img {
	display: block;
	width: 100%;
}
div#footer div.colonne.reseaux p.avertissement {
    margin-top: 0px;
    margin-bottom: 0px;
}
/* FOOTER END */






/* COPYRIGHT */
div#copyright {
    font-family: 'Open Sans', sans-serif;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-top: 30px;
    padding-bottom: 40px;
	background-color: #2a364e;
	background-image: linear-gradient(#333333, #2a364e);
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    line-height: 20px;
}
@media (max-width: 1080px) {
div#copyright {
    font-size: 14px;
}
}
div#copyright a {
    color: #ffffff;
    text-decoration: underline;
}
div#copyright a:hover {
    opacity: 0.7;
}
div#copyright p {
	width: 98%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 3px;
	margin-top: 0px;
	max-width: 780px;
}
div#copyright div#developpe-au-quebec {
	display: block;
	width: 300px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}
div#copyright div#developpe-au-quebec img {
	display: inline-block;
	width: 22px;
	margin-left: 3px;
	margin-right: 4px;
	margin-bottom: -8px;
}
/* COPYRIGHT END */




/* BOUTONS 2026 */
div.en-savoir-plus a {
    display: block;
    width: 170px;
    height: 60px;
    box-sizing: border-box;
    border-radius: 30px;
    color: #ffffff;
    font-size: 19px;
    line-height: 19px;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    background-color: #0088B6;
    padding-top: 21px;
    margin-bottom: 0px;
}
div.en-savoir-plus a:hover {
    background-color: #00bbff;
}
/* BOUTONS 2026 END */





/* PAGES CHRONIQUES, TEXTES ET CONTENU */
div#wrap-content {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 30px;
}
div#content {
	float: left;
	vertical-align: top;
	width: 100%;
	max-width: 720px;
	margin-right: 40px;
	margin-bottom: 40px;
	background-color: #ffffff;
    border-radius: 10px;
	box-shadow: 0px 0px 3px #cccccc;
	box-sizing: border-box;
	padding: 40px;
	font-size: 16px;
	line-height: 24px;
	text-align: left;
}
div#content.emplois {
	background-color: transparent;
    border-radius: 10px;
	box-shadow: 0px 0px 0px #cccccc;
	box-sizing: border-box;
	padding: 0px;
}
@media (max-width: 1280px) {
div#content {
	float: none;
    display: block;
	width: 100%;
	max-width: 720px;
    margin-left: auto;
	margin-right: auto;
	background-color: transparent;
    border-radius: 0px;
	box-shadow: 0px 0px 0px #cccccc;
    padding-left: 30px;
    padding-top: 0px;
    padding-right: 30px;
    padding-bottom: 0px;
	font-size: 18px;
	line-height: 28px;
}
div#content.emplois {
    padding-left: 30px;
    padding-right: 30px;
}
}  
div#content h1 {
    display: block;
    width: 100%;
    text-align: left;
    font-family: 'Varela Round', sans-serif;
    font-size: 34px;
    line-height: 38px;
    font-weight: bold;
    color: #0088B6;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 15px;
}
div#content div#chronique-categorie {
	display: block;
	font-size: 18px;
	color: #0088B6;
	margin-bottom: 15px;
}
div#content div#chronique-categorie a {
	color: #666666;
	text-decoration: none;
    opacity: 1;
}
div#content div#chronique-categorie a:hover {
	text-decoration: none;
	color: #0088B6;
	opacity: 0.7;
}
div#content h2.heading {
    font-family: 'Varela Round', sans-serif;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
}
div#content div.image {
	width: 100%;
	margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}
@media (max-width: 1280px) {
div#content div.image {
    border: 5px solid #ffffff;
    box-sizing: border-box;
	box-shadow: 0px 0px 3px #cccccc;
}
}
div#content div.image img {
	display: block;
	width: 100%;
}
div#content h2 {
    display: block;
    width: 100%;
    text-align: left;
    font-family: 'Varela Round', sans-serif;
    font-size: 22px;
    line-height: 28px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 13px;
}
div#content p {
    margin-top: 0px;
    margin-bottom: 20px;
}
div#content p a {
    text-decoration: underline;
    font-weight: bold;
}
div#content div.page-chronique-publication {
    display: block;
    width: 100%;
    box-sizing: border-box;
	font-size: 15px;
	color: #335577;
    background-color: #f5f5f5;
    padding: 10px;
    text-align:  center;
    border-radius: 5px;
    margin-top: 30px;
	margin-bottom: 0px;
}
div#content div.page-chronique-publication p {
    margin-top: 0px;
    margin-bottom: 0px;
}
div#content div.page-chronique-publication p.modification {
    margin-bottom: 5px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
}
@media (max-width: 1280px) {
div#content div.page-chronique-publication {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    text-align: center;
    padding: 10px;
}
div#content div.page-chronique-publication p.modification {
    margin-bottom: 5px;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 5px;
}
}
div.video-chronique {
	width: 100%;
	background-color: #ffffff;
	box-sizing: border-box;
	margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}
@media (max-width: 1280px) {
div.video-chronique {
	border: 5px solid #ffffff;
	box-shadow: 0px 0px 3px #cccccc;
}
}
div.video-chronique iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0px;
}
/* PAGES CHRONIQUES, TEXTES ET CONTENU END */




/* SIDE & SIDE BLOCKS */
div#side {
	float: left;
	vertical-align: top;
	width: 100%;
	max-width: 440px;
	padding: 0px;
	box-sizing: border-box;
	margin-bottom: 30px;
}
@media (max-width: 1280px) {
div#side {
	float: none;
    display: block;
	width: 100%;
	max-width: 100%;
	padding-left: 30px;
	padding-right: 30px;
	box-sizing: border-box;
	margin-bottom: 30px;
}
}
div.side-block div.titre-sante {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    font-family: 'Varela Round', sans-serif;
    font-size: 19px;
    line-height: 24px;
    color: #ffffff;
    background-color: #0088B6;
    padding: 15px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-size: 30px; 
}
div.side-block div.titre-sante.quebec {
    padding-left: 47px;
    background-image: url(icon/fleur-de-lys-blanc.png);
    background-position: left 10px center;
}
div.side-block div.titre-sante.publications {
    padding-left: 50px;
    background-image: url(icon/publications-blanc.png);
    background-position: left 12px center;
}
div.side-block div.titre-sante.calendrier {
    padding-left: 50px;
    background-image: url(icon/calendrier-sante-blanc.png);
    background-position: left 12px center;
}
div.side-block div.titre-sante.loupe {
    padding-left: 50px;
    background-image: url(icon/loupe-blanc.png);
    background-position: left 12px center;
}
div.side-block div.titre-sante.emplois {
    padding-left: 50px;
    background-image: url(icon/emplois-blanc.png);
    background-position: left 12px center;
}
div.side-block div.titre-sante.alerte {
    padding-left: 50px;
    background-image: url(icon/alerte-blanc.png);
    background-position: left 12px center;
}
div.side-block {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 5px;
	box-shadow: 0px 0px 3px #cccccc;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}
div.side-block div.plus a {
    display: block;
	width: 50px;
    height: 50px;
	background-color: #ffffff;
    margin-top: 20px;
	margin-left: auto;
    margin-right: auto;
	border-radius: 30px;
}
div.side-block div.plus a:hover {
    opacity: 0.7;
}
div.side-block div.plus a img {
    display: block;
    width: 100%;
}
div.side-block div#votre-service-ici a {
	display: block;
    background-color: #eeeeee;
	font-size: 16px;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	color: #2a364e;
    opacity: 0.5;
}
div.side-block div#votre-service-ici a:hover {
	opacity: 1;
    background-color: #f5f5f5;
}
div.side-block div#votre-service-ici a span.plus {
    font-weight: bold;
}
div.side-block div.nav {
    width: calc(100% + 10px);
    margin-left: -5px;
    border-bottom: 1px solid #f5f5f5;
}
div.side-block div.nav.last {
    border-bottom: 0px;
}
div.side-block div.nav a {
	display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    border: 5px solid #ffffff;
	box-sizing: border-box;
	transition: 0.3s;
	text-align: left;
	font-size: 16px;
	text-decoration: none;
	color: #2a364e;
    background-color: #ffffff;
    padding-left: 65px;
	padding-right: 20px;
	background-repeat: no-repeat;
	background-position: left 20px center;
	background-size: 30px;
}
div.side-block div.nav.news a {
	background-image: url(icon/actualite-bleu-fonce.png);
}
div.side-block div.nav.infographie-sante a {
	background-image: url(icon/infographies-sante-bleu.png);
}
div.side-block div.nav.video-sante a {
	background-image: url(icon/video-bleu.png);
}
div.side-block div.nav.a-propos a {
	background-image: url(icon/fleur-de-lys-bleu-fonce.png);
}
div.side-block div.nav.repertoire a {
	background-image: url(icon/repertoire-bleu-fonce.png);
}
div.side-block div.nav.publications a {
	background-image: url(icon/publications-bleu-fonce.png);
}
div.side-block div.nav.emplois a {
	background-image: url(icon/emplois-bleu-fonce.png);
}
div.side-block div.nav.reseaux-sociaux a {
	background-image: url(icon/reseaux-sociaux-bleu-fonce.png);
}
div.side-block div.nav.partenaires a {
	background-image: url(icon/partenaires-bleu-fonce.png);
}
div.side-block div.nav.logo a {
	background-image: url(icon/integrer-bleu-fonce.png);
}
div.side-block div.nav.publicite a {
	background-image: url(icon/statistiques-bleu-fonce.png);
}
div.side-block div.nav.contact a {
	background-image: url(icon/contact-bleu-fonce.png);
}
div.side-block div.nav.regles a {
	background-image: url(icon/crochet-rond-bleu-fonce.png);
}
div.side-block div.nav a:hover {
	background-color: #D9F0FD;
    border-radius: 10px;
}
/* SIDE & SIDE BLOCKS END */








/* RÉRÉRENCES */
div#content div.suggestion-bottom a {
	display: block;
	box-sizing: border-box;
	width: 100%;
	background-color: #f5f5f5;
	font-size: 14px;
	line-height: 20px;
	text-decoration: none;
	color: #2a364e;
	text-align: left;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 50px;
	padding-right: 15px;
	margin-bottom: 1px;
	background-image: url(images/bg-suggestion-bottom.png);
	background-repeat: no-repeat;
	background-position: left 12px center;
	background-size: 30px;
}
div#content div.suggestion-bottom a:hover {
	background-color: #eeeeee;	
}
div#content div.a-lire-sur-index-sante {
	display: block;
	width: 220px;
	background-color: #335577;
	color: #ffffff;
	text-align: center;
	padding: 20px;
	font-size: 16px;
	font-weight: bold;
	box-sizing: border-box;
	margin-bottom: 30px;
}
div#content div.index-sante-vous-suggere {
	display: inline-block;
	background-color: #335577;
	color: #ffffff;
	text-align: center;
	padding: 20px;
	font-size: 16px;
	font-weight: bold;
	box-sizing: border-box;
	margin-bottom: 25px;;
}

/* RÉRÉRENCES END */

















/* TABLES 2026 */
table.general-2026 {
	width: 100%;
	margin-bottom: 20px;
	box-shadow: 0px 0px 3px #cccccc;
}
table.general-2026 tr {
	margin: 0px;
	padding: 0px;
}
table.general-2026 tr.hover:hover, table.general-2026 tr.hover:hover td.label, table.general-2026 tr.hover:hover td.field {
    background-color: #D9F0FD;
}
table.general-2026 tr td.titre {
	padding: 15px;
	font-size: 15px;
	text-align: left;
	border: 1px solid #ffffff;
	background-color: #335577;color: #ffffff;
	box-sizing: border-box;	
}
table.general-2026 tr td.label {
	padding: 15px;
	font-size: 15px;
	text-align: left;
	border: 1px solid #ffffff;
	background-color: #eeeeee;
	box-sizing: border-box;	
}
table.general-2026 tr td.field {
	padding: 15px;
	font-size: 15px;
	background-color: #fafafa;
	border: 1px solid #ffffff;
}
table.general-2026 tr td.label.center, table.general-2026 tr td.field.center {
    text-align: center;
}
/* TABLES 2026 END */






/* PAGINATION */
div.page-on {
	display: inline-block;
    vertical-align: middle;
	border-radius: 30px;
	margin-left: 8px;
	margin-right: 8px;
	margin-bottom: 16px;
	width: 60px;
	height: 60px;
	background-color: #D9F0FD;
	border: 1px solid #cccccc;
	font-size: 26px;
	line-height: 26px;
    padding-top: 15px;
    font-weight: bold;
    color: #335577;
	text-align: center;
    box-sizing: border-box;
}
div.page-lien {
	display: inline-block;
    vertical-align: middle;
	border-radius: 30px;
	margin-left: 8px;
	margin-right: 8px;
	margin-bottom: 16px;
	width: 60px;
	height: 60px;
}
div.page-lien a {
	display: block;
	width: 60px;
	height: 60px;
	text-decoration: none;
	transition: 0.3s;
	background-color: #335577;
	border: 1px solid #335577;
	border-radius: 30px;
	font-size: 26px;
	line-height: 26px;
	color: #ffffff;
    padding-top: 15px;
    font-weight: bold;
	text-align: center;
    box-sizing: border-box;
}
div.page-lien a:hover {
	background-color: #0088B6;
	border: 1px solid #0088B6;
}
/* PAGINATION END */








/*
bleu mch : #0088B6;
bleu hover : #00bbff;
bleu hover : #d9f0fd;
rouge / rose mch : #f0545e;
rouge / rose mch hover : #f1414c;
vert mch : #86be4b;
noir / bleu mch : #2a364e;
*/






