/************************************************************************************/
/* Synopsis.css																		*/
/* -------------------------------------------------------------------------------- */
/* La typographie est pilotée par la taille attribuée à l'élément HTML du DOM. Elle	*/
/* est calculée sur la base des valeurs suivantes:									*/
/*																					*/
/*   - Taille de base: 1															*/
/*   - Hauteur de ligne: 1.5														*/
/*   - Hauteur de l'interligne: 0.75												*/
/*																					*/
/* Les breakpoints du layout sont fixés tous les 120px à partir de 320px:			*/
/*																					*/
/*   - 320px:  smartphones															*/
/*   - 440px:  smartphones															*/
/*   - 560px:  smartphones															*/
/*   - 680px:  smartphones															*/
/*   - 800px:  tablettes															*/
/*   - 920px:  tablettes															*/
/*   - 1040px: tablettes + ordinateurs												*/
/*																					*/
/* Les polices utilisées sont couvertes par la licence SIL Open Font License:		*/
/*																					*/
/*   - Normal:        Istok Web Regular (http://www.fontsc.com/font/istok-web)		*/
/*   - Italique:      Istok Web Italic (http://www.fontsc.com/font/istok-web)		*/
/*   - Gras:          Istok Web Bold (http://www.fontsc.com/font/istok-web)			*/
/*   - Gras+Italique: Istok Web Bold Italic (http://www.fontsc.com/font/istok-web)	*/
/*																					*/
/* La palette des couleurs est la suivante:											*/
/*																					*/
/*   - #000000: Texte primaire														*/
/*   - #FFFFFF: Texte secondaire													*/
/*   - #666666: Texte tertiaire														*/
/*   - #FF6464: Texte requis														*/
/*   - #FFFFFF: Arrière-plan primaire												*/
/*   - #008CCC: Arrière-plan secondaire												*/
/*   - #008CCC: Arrière-plan tertiaire + Opacity 10%								*/
/*   - #8EFE8E: Arrière-plan notification (success)									*/
/*   - #FFFF88: Arrière-plan notification (warning)									*/
/*   - #FF8888: Arrière-plan notification (error)									*/
/*   - #FFFFFF: Arrière-plan bulle d'information									*/
/*   - #666666: Ombre portée														*/
/*																					*/
/*   - #008CCC: Lien/Bouton primaire												*/
/*   - #FFFFFF: Lien/Bouton secondaire												*/
/*   - #005275: Lien/Bouton primaire survolé/actif									*/
/*   - #005275: Lien/Bouton secondaire survolé/actif								*/
/*																					*/
/************************************************************************************/

/************************************************************************************/
/* Polices																			*/
/************************************************************************************/

@font-face {
	font-style: normal;
	font-weight: normal;
	font-family: IstokWebRegular;
	src: url( '../fonts/istokweb-regular.eot' );
	src: url( '../fonts/istokweb-regular.eot?#iefix' ) format( 'embedded-opentype' ),
		 url( '../fonts/istokweb-regular.woff2' ) format( 'woff2' ),
		 url( '../fonts/istokweb-regular.woff' ) format( 'woff' ),
		 url( '../fonts/istokweb-regular.ttf' ) format( 'truetype' ),
		 url( '../fonts/istokweb-regular.svg#istok_webregular' ) format( 'svg' );
}

@font-face {
	font-style: italic;
	font-weight: normal;
	font-family: IstokWebItalic;
	src: url( '../fonts/istokweb-italic.eot' );
	src: url( '../fonts/istokweb-italic.eot?#iefix' ) format( 'embedded-opentype' ),
		 url( '../fonts/istokweb-italic.woff2' ) format( 'woff2' ),
		 url( '../fonts/istokweb-italic.woff' ) format( 'woff' ),
		 url( '../fonts/istokweb-italic.ttf' ) format( 'truetype' ),
		 url( '../fonts/istokweb-italic.svg#istok_webitalic' ) format( 'svg' );
}

@font-face {
	font-style: normal;
	font-weight: bold;
	font-family: IstokWebBold;
	src: url( '../fonts/istokweb-bold.eot' );
	src: url( '../fonts/istokweb-bold.eot?#iefix' ) format( 'embedded-opentype' ),
		 url( '../fonts/istokweb-bold.woff2' ) format( 'woff2' ),
		 url( '../fonts/istokweb-bold.woff' ) format( 'woff' ),
		 url( '../fonts/istokweb-bold.ttf' ) format( 'truetype' ),
		 url( '../fonts/istokweb-bold.svg#istok_webbold' ) format( 'svg' );
}

@font-face {
	font-style: italic;
	font-weight: bold;
	font-family: IstokWebBoldItalic;
	src: url( '../fonts/istokweb-bolditalic.eot' );
	src: url( '../fonts/istokweb-bolditalic.eot?#iefix' ) format( 'embedded-opentype' ),
		 url( '../fonts/istokweb-bolditalic.woff2' ) format( 'woff2' ),
		 url( '../fonts/istokweb-bolditalic.woff' ) format( 'woff' ),
		 url( '../fonts/istokweb-bolditalic.ttf' ) format( 'truetype' ),
		 url( '../fonts/istokweb-bolditalic.svg#istok_webbolditalic' ) format( 'svg' );
}

/************************************************************************************/
/* Animations																		*/
/************************************************************************************/

/* Rotation */
@-webkit-keyframes spin {
	0%   { transform: rotate( 0deg ); }
	100% { transform: rotate( 360deg ); }
}

@keyframes spin {
	0%   { transform: rotate( 0deg ); }
	100% { transform: rotate( 360deg ); }
}

/* Disparition */
@-webkit-keyframes hide {
	100% { opacity: 0; left: -9999px; position: absolute; }
}

@keyframes hide {
	100% { opacity: 0; left: -9999px; position: absolute; }
}

/************************************************************************************/
/* Styles par défaut																*/
/************************************************************************************/

/* -------------------------------------------------------------------------------- */
/* Page HTML																		*/
/* -------------------------------------------------------------------------------- */

html {
	font-size: 87.5%;	/* 14px de référence */
	box-sizing: border-box;
}

body {
	line-height: 1.5rem;
	font-size: 1rem;
	font-style: normal;
	font-weight: normal;
	font-family: IstokWebRegular, Verdana, sans-serif;
	color: #000000;
	background-color: #FFFFFF;
}

*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: inherit;
}

*.screen-reader-text {
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect( 1px, 1px, 1px, 1px );
	position: absolute !important;
	word-wrap: normal !important;
}

@media screen and ( min-width: 920px ) {
	
	html {
		font-size: 100%;	/* 16px de référence */
	}
	
}

/* -------------------------------------------------------------------------------- */
/* Titres																			*/
/* -------------------------------------------------------------------------------- */

h1 {
	font-size: 1.4rem;
	font-weight: normal;
	font-family: IstokWebRegular, Verdana, sans-serif;
	margin-bottom: 0.75rem;
}

h1 .icon svg {
	width: 1rem;
	height: 1rem;
}

h2,
h3,
h4,
h5,
h6 {
	font-size: 1rem;
	font-weight: bold;
	font-family: IstokWebBold, Verdana, sans-serif;
	margin-bottom: 0.75rem;
}

/* -------------------------------------------------------------------------------- */
/* Paragraphes																		*/
/* -------------------------------------------------------------------------------- */

p {
	margin-bottom: 0.75rem;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

blockquote {
	font-style: italic;
	font-family: IstokWebItalic, Verdana, sans-serif;
	margin-bottom: 0.75rem;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	quotes: none;
}

/* -------------------------------------------------------------------------------- */
/* Listes																			*/
/* -------------------------------------------------------------------------------- */

ul,
ol {
	margin-left: 2rem;
	margin-bottom: 0.75rem;
}

ul ul,
ul ol,
ol ul,
ol ol {
	margin-top: 0.375rem;
}

li {
	margin-bottom: 0.375rem;
}

li:last-of-type {
	margin-bottom: 0;
}

/* -------------------------------------------------------------------------------- */
/* Styles inline																	*/
/* -------------------------------------------------------------------------------- */

q {
	font-style: italic;
	font-family: IstokWebItalic, Verdana, sans-serif;
}

b,
strong {
	font-weight: bold;
	font-family: IstokWebBold, Verdana, sans-serif;
}

i,
em {
	font-style: italic;
	font-family: IstokWebItalic, Verdana, sans-serif;
}

b i,
i b,
strong em,
em strong {
	font-style: italic;
	font-weight: bold;
	font-family: IstokWebBoldItalic, Verdana, sans-serif;
}

small {
	font-size: 0.8em;
}

sup,
sub {
	font-size: 0.6em;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.4em;
}

sub {
	top: 0.4em;
}

/* -------------------------------------------------------------------------------- */
/* Liens																			*/
/* -------------------------------------------------------------------------------- */

a {
	cursor: pointer;
}

a:link,
a:visited {
	color: #008CCC;
}

a:hover,
a:active {
	color: #005275;
}

a .icon svg {
	fill: #008CCC;
}

a:hover .icon svg {
	fill: #005275;
}

/* -------------------------------------------------------------------------------- */
/* Formulaires																		*/
/* -------------------------------------------------------------------------------- */

form {
	margin-bottom: 0.75rem;
}

fieldset {
	border: none;
	margin-bottom: 0.75rem;
}

legend {
	width: 100%;
	margin-bottom: 0.75rem;
}

label {
	font-size: 1rem;
	cursor: pointer;
}

label.required:after{
	content: ' *';
	color: #FF6464;
}

span.required {
	color: #FF6464;
}

input {
	font-size: 1rem;
	font-family: IstokWebRegular, Verdana, sans-serif;
	width: 100%;
	padding: 0.375rem 0.5rem;
	border: none;
	border-radius: 0.5rem;
	background-color: #FFFFFF;
}

input.date {
	max-width: 6rem;
}

input[type="checkbox"] {
	width: auto;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
	width: auto;
	min-width: 8rem;
	cursor: pointer;
}

select {
	font-size: 1rem;
	font-family: IstokWebRegular, Verdana, sans-serif;
	width: 100%;
	padding: 0.375rem 0.5rem;
	border: none;
	border-radius: 0.5rem;
	background-color: #FFFFFF;
}

textarea  {
	font-size: 1rem;
	font-family: IstokWebRegular, Verdana, sans-serif;
	width: 100%;
	padding: 0.375rem 0.5rem;
	border: none;
	border-radius: 0.5rem;
	background-color: #FFFFFF;
	resize: vertical;
}

button {
	font-size: 1rem;
	font-family: IstokWebRegular, Verdana, sans-serif;
	border: none;
	border-radius: 0.5rem;
	background-color: transparent;
	cursor: pointer;
}

@media screen and ( min-width: 560px ) {
	
	input,
	select,
	textarea {
		width: auto;
	}
	
	input.fullwidth,
	select.fullwidth,
	textarea.fullwidth {
		width: 100%;
	}
	
}

/************************************************************************************/
/* Textes spécifiques																*/
/************************************************************************************/

.no-data {
	font-style: italic;
	font-family: IstokWebItalic, Verdana, sans-serif;
}

.info {
	font-style: italic;
	font-family: IstokWebItalic, Verdana, sans-serif;
}

/************************************************************************************/
/* Icones, pictogrammes et textes													*/
/************************************************************************************/

.icon,
.picto {
	display: inline-block;
	vertical-align: middle;
}

.text {
	margin-left: 0.5rem;
	display: none;
	vertical-align: middle;
}

@media screen and ( min-width: 560px ) {
	
	.text {
		display: inline-block;
	}
	
}

/************************************************************************************/
/* Séparateurs																		*/
/************************************************************************************/

.separator {
	margin-bottom: 0.75rem;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 0.25rem solid #008CCC;
}

@media screen and ( min-width: 360px ) {
	
	.separator {
		border-bottom-width: 0.5rem;
	}
	
}

@media screen and ( min-width: 560px ) {
	
	.separator {
		margin-bottom: 1.5rem;
	}
	
}

/************************************************************************************/
/* Barres d'outils																	*/
/************************************************************************************/

.toolbar {
	list-style: none;
	margin-left: 0;
	-webkit-display: flex;
	-webkit-justify-content: space-around;
	-ms-display: flex;
	-ms-justify-content: space-around;
	display: flex;
	justify-content: space-around;
}

.toolbar-item {
	margin: 0;
}

.toolbar-item form {
	margin: 0;
}

.toolbar-button .text {
	color: #008CCC;
}

.toolbar-button .icon svg{
	width: 1.5rem;
	height: 1.5rem;
	fill: #008CCC;
}

.toolbar-button:hover .text,
.toolbar-button.active .text {
	color: #005275;
}

.toolbar-button:hover .icon svg,
.toolbar-button.active .icon svg{
	fill: #005275;
}

.toolbar-button.error {
	cursor: not-allowed;
}

.toolbar-button.error .text {
	color: #FF0000;
}

.toolbar-button.error .icon svg{
	fill: #FF0000;
}

@media screen and ( min-width: 360px ) {
	
	.toolbar-button .icon svg {
		width: 3rem;
		height: 3rem;
	}
	
}

@media screen and ( min-width: 560px ) {
	
	.toolbar-button .icon svg {
		width: 1.5rem;
		height: 1.5rem;
	}
	
}

/************************************************************************************/
/* Menus																			*/
/************************************************************************************/

.menu {
	list-style: none;
	margin-left: 0;
	background-color: #008CCC;
}

.menu.hidden {
	display: none;
}

.menu-item {
	margin: 0 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid #FFFFFF;
}

.menu-item:last-of-type {
	border-bottom: none;
}

.menu-item.current-menu-item a {
	font-weight: bold;
	font-family: IstokWebBold, Verdana, sans-serif;
}

.menu-item .icon svg {
	width: 1rem;
	height: 1rem;
}

.menu-item a {
	display: block;
	text-decoration: none;
}

.menu-item a:link,
.menu-item a:visited {
	color: #FFFFFF;
}

.menu-item a:link .icon svg,
.menu-item a:visited .icon svg {
	fill: #FFFFFF;
}

.menu-item a:hover,
.menu-item a:active {
	color: #005275;
}

.menu-item a:hover .icon svg,
.menu-item a:active .icon svg {
	fill: #005275;
}

@media screen and ( min-width: 920px ) {
	
	.menu {
		margin-left: 240px;
		margin-right: 240px;
		padding-bottom: 0;
		background-color: transparent;
		-webkit-display: flex;
		-webkit-justify-content: center;
		-ms-display: flex;
		-ms-justify-content: center;
		display: flex;
		justify-content: center;
	}
	
	.menu-item {
		padding: 0;
		border: none;
	}
	
	.menu-item .icon svg {
		vertical-align: text-top;
	}

	.menu-item a:link,
	.menu-item a:visited {
		color: #008CCC;
	}
	
	.menu-item a:link .icon svg,
	.menu-item a:visited .icon svg {
		fill: #008CCC;
	}
	
	.menu-item.current-menu-item a {
		font-weight: normal;
		font-family: IstokWebRegular, Verdana, sans-serif;
		color: #005275;
	}
	
}

/************************************************************************************/
/* Formulaires sous forme de popup													*/
/* -------------------------------------------------------------------------------- */
/* Les formulaires concernés sont:													*/
/*  - #loginform																	*/
/*  - #logoutform																	*/
/************************************************************************************/

.form-popup {
	margin: 0 auto 0.75rem;
	padding: 0.75rem;
	color: #FFFFFF;
	background-color: #008CCC;
}

.form-popup p.buttons {
	-webkit-display: flex;
	-webkit-justify-content: space-between;
	-ms-display: flex;
	-ms-justify-content: space-between;
	display: flex;
	justify-content: space-between;
}

.form-popup p:last-of-type {
	margin-bottom: 0;
}

.form-popup input[type="submit"],
.form-popup input[type="reset"],
.form-popup input[type="button"] {
	color: #008CCC;
	background-color: #FFFFFF;
}

.form-popup input[type="submit"]:hover,
.form-popup input[type="reset"]:hover,
.form-popup input[type="button"]:hover {
	background-color: #005275;
}

/************************************************************************************/
/* Formulaires inclus dans les pages 												*/
/* -------------------------------------------------------------------------------- */
/* Les formulaires concernés sont:													*/
/*  - #registerform																	*/
/*  - #unregisterform																*/
/*  - #updateform																	*/
/*  - #contactform																	*/
/************************************************************************************/

.form-page legend {
	padding: 0.375rem 0.5rem;
	border-radius: 0.5rem;
	background-color: rgba( 0, 140, 204, 0.1 );
}

.form-page label {
	color: #008CCC;
}

.form-page .info {
	color: #666666;
}

.form-page input,
.form-page select,
.form-page textarea {
	border: 2px solid #008CCC;
}

.form-page input[type="submit"],
.form-page input[type="reset"],
.form-page input[type="button"] {
	color: #FFFFFF;
	border: none;
	background-color: #008CCC;
}

.form-page input[type="submit"]:hover,
.form-page input[type="reset"]:hover,
.form-page input[type="button"]:hover {
	background-color: #005275;
}

/************************************************************************************/
/* Formulaires inclus dans les barres latérales										*/
/* -------------------------------------------------------------------------------- */
/* Les formulaires concernés sont:													*/
/*  - #form-posts																	*/
/************************************************************************************/

.form-sidebar {
	margin-bottom: 0;
	color: #FFFFFF;
}

.form-sidebar fieldset {
	margin-bottom: 1.5rem;
}

.form-sidebar legend {
	font-weight: bold;
	font-family: IstokWebBold, Verdana, sans-serif;
}

.form-sidebar ul {
	margin-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.form-sidebar p {
	margin-bottom: 0;
}

.form-sidebar p.buttons {
	-webkit-display: flex;
	-webkit-justify-content: space-between;
	-ms-display: flex;
	-ms-justify-content: space-between;
	display: flex;
	justify-content: space-between;
}

.form-sidebar p.buttons a {
	font-size: 0.8em;
}

.form-sidebar input[type="search"] {
	width: 100%;
}

.form-sidebar input[type="submit"],
.form-sidebar input[type="reset"],
.form-sidebar input[type="button"] {
	color: #008CCC;
	background-color: #FFFFFF;
}

.form-sidebar input[type="submit"]:hover,
.form-sidebar input[type="reset"]:hover,
.form-sidebar input[type="button"]:hover {
	background-color: #005275;
}

.form-sidebar input[type="submit"].secondary,
.form-sidebar input[type="reset"].secondary,
.form-sidebar input[type="button"].secondary {
	font-size: 0.9em;
	text-decoration: underline;
	color: #FFFFFF;
	background-color: transparent;
}

.form-sidebar input[type="submit"].secondary:hover,
.form-sidebar input[type="reset"].secondary:hover,
.form-sidebar input[type="button"].secondary:hover {
	color: #005275;
}

@media screen and ( min-width: 360px ) {
	
	.form-sidebar p.period {
		-webkit-display: flex;
		-ms-display: flex;
		display: flex;
	}
	
	.form-sidebar span.date {
		margin-bottom: 0rem;
	}
	
	.form-sidebar span.date:last-of-type {
		margin-left: 1rem;
	}
	
}

/************************************************************************************/
/* Nuages de mots-clés																*/
/************************************************************************************/

.tagcloud {
	list-style: none;
	margin-left: 0;
	margin-bottom: 0;
}

.tagcloud-item {
	margin-right: 0.75rem;
	margin-bottom: 0;
	padding: 0.375rem 0;
	display: inline-block;
}

/************************************************************************************/
/* Toggles																			*/
/************************************************************************************/

.toggle {
	overflow: hidden;
	transition: max-height 0.5s linear, margin-bottom 0.5s linear;
}

.toggle.closed {
	max-height: 0;
	margin-bottom: 0;
}

@media screen and ( min-width: 920px ) {
	
	.toggle.closed {
		max-height: initial;
		margin-bottom: initial;
	}
	
}

/************************************************************************************/
/* Popups																			*/
/************************************************************************************/

.popup {
	margin-top: 10%;
	max-width: 30rem;
	border: 1px solid #FFFFFF;
	border-radius: 0.5rem;
}

.popup-background {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	position: fixed;
	background: rgba(0, 0, 0, 0.8);
}

.popup-background.hidden {
	display: none;
}

/************************************************************************************/
/* Tooltips																			*/
/************************************************************************************/

.tooltip {
	left: 5.5rem;
	right: 1rem;
	padding: 0.75rem;
	margin-bottom: 0.75rem;
	position: absolute;
	border-radius: 0.5rem;
	border: 5px solid #008CCC;
	background-color: #FFFFFF;
}

.tooltip::after {
	content: " ";
	left: 10%;
	bottom: 100%;
	position: absolute;
	border-width: 15px;
	border-style: solid;
	border-color: transparent transparent #008CCC transparent;
}

.tooltip.hidden {
	display: none;
}

.tooltip p.buttons {
	margin-bottom: 0;
	-webkit-display: flex;
	-webkit-justify-content: flex-end;
	-ms-display: flex;
	-ms-justify-content: flex-end;
	display: flex;
	justify-content: flex-end;
}

.tooltip p.buttons > button:last-of-type {
	margin-left: 1rem;
}

.tooltip-action {
	color: #008CCC;
}

.tooltip-action:hover {
	color: #005275;
}

/************************************************************************************/
/* Notifications																	*/
/************************************************************************************/

.notice {
	padding: 0.75rem;
	opacity: 1;
	transition: opacity 1s linear 3s;
}

.notice.success {
	border: 2px solid #00DA00;
	background-color: #8EFE8E;
}

.notice.warning {
	border: 2px solid #9B9B00;
	background-color: #FFFF88;
}

.notice.error {
	border: 2px solid #9B0000;
	background-color: #FF8888;
}

.notice.fadeout {
	opacity: 0;
}

.notice.hidden {
	display: none;
}

/************************************************************************************/
/* Loaders																			*/
/************************************************************************************/

.loader {
	width: 4rem;
	height: 4rem;
	margin: 1.5rem auto;
	border: 1.5rem solid rgba( 0, 140, 204, 0.1 );
	border-top: 1.5rem solid #008CCC;
	border-radius: 50%;
	opacity: 1;
	transition: opacity 0.5s linear 1s;
	animation: spin 1s linear infinite;
}

.loader.fadeout {
	opacity: 0;
}

.loader.hidden {
	display: none;
}

/************************************************************************************/
/* Paginations																		*/
/************************************************************************************/

.pagination {
	margin-bottom: 0.75rem;
	text-align: center;
}

/************************************************************************************/
/* Sections des filtres																*/
/************************************************************************************/

.section-filters {
	margin-bottom: 0.75rem;
	padding: 0.75rem;
	color: #FFFFFF;
	background-color: #008CCC;
}

.section-filters h2 {
	font-size: 1.2rem;
}

.section-filters a:link,
.section-filters a:visited {
	color: #FFFFFF;
}

.section-filters a:hover,
.section-filters a:active {
	color: #005275;
}

.section-filters.tags-top {
	display: none;
}

@media screen and ( min-width: 920px ) {
	
	.section-filters {
		border-radius: 0.5rem;
	}
	
	.section-filters.tags-top {
		display: block;
	}
	
	.section-filters.tags-bottom {
		display: none;
	}
	
}

/************************************************************************************/
/* Sections par dates																*/
/************************************************************************************/

.section-date {
	margin-bottom: 0.75rem;
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
}

.section-date-title {
	width: 4.5rem;
	margin-bottom: 0;
	padding-top: 1.5rem;
	font-weight: normal;
	font-family: IstokWebRegular, Verdana, sans-serif;
	vertical-align: top;
	color: #FFFFFF;
	border-radius: 0.5rem;
	background-color: #008CCC;
}

.section-date-title span {
	display: block;
	margin-bottom: 0.375rem;
	text-align: center;
}

.section-date-title span.day,
.section-date-title span.week {
	font-size: 2rem;
}

.section-date-title span.week-label,
.section-date-title span.month,
.section-date-title span.year {
	font-size: 1rem;
}

.section-date-group {
	width: 100%;
	margin-left: 0.5rem;
	padding: 0.75rem 0.5rem 0;
	border-radius: 0.5rem;
	background-color: rgba( 0, 140, 204, 0.1 );
}

/************************************************************************************/
/* Sections par types de veille														*/
/************************************************************************************/

.section-watch-type {
	margin-bottom: 1.5rem;
}

.section-watch-type-title {
	font-size: 1.2rem;
	font-weight: normal;
	font-family: IstokWebRegular, Verdana, sans-serif;
}

/************************************************************************************/
/* Sections par articles															*/
/************************************************************************************/

.post-title.archive {
	font-size: 1.4rem;
	font-weight: normal;
	font-family: IstokWebRegular, Verdana, sans-serif;
}

.post-title.front {
	cursor: pointer;
}

.post-title.front .icon svg {
	width: 0.75rem;
	height: 0.75rem;
}

.post-title.front.active .icon svg {
	-webkit-transform: rotate( 90deg );
	-ms-transform: rotate( 90deg );
	transform: rotate( 90deg );
}

.post-content.front {
	overflow: hidden;
	transition: max-height 0.5s linear;
}

.post-taxonomies {
	list-style: none;
	margin-left: 0;
}

.post-taxonomies.category {
	font-size: 0.8rem;
}

.post-taxonomies.tag {
	margin-bottom: 1.5rem;
	font-size: 0.8rem;
	text-align: right;
}

.post-taxonomies > li {
	margin-bottom: 0;
	display: inline-block;
}

.post-taxonomies.tag > li {
	margin-left: 0.5rem;
}

.post-taxonomies.tag > li:after {
	content: ',';
}

.post-taxonomies.tag > li:last-of-type:after {
	content: '';
}

.post-attachments {
	list-style: none;
	margin-left: 0;
}

.post-attachments-item {
	margin-bottom: 0.75rem;
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
}

.post-attachments-item .icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.post-attachment-source {
	color: #008CCC;
	cursor: pointer;
	text-decoration: underline;
}

.post-attachment-source:hover {
	color: #005275;
}

.post-attachment-source,
.post-attachment-alternative {
	margin-left: 0.5rem;
}

.post-attachment-alternative .icon svg {
	fill: #008CCC;
}

.post-attachment-alternative:hover .icon svg {
	fill: #005275;
}

.post-share {
	list-style: none;
	margin-left: 0;
	-webkit-display: flex;
	-webkit-justify-content: flex-end;
	-ms-display: flex;
	-ms-justify-content: flex-end;
	display: flex;
	justify-content: flex-end;
}

.post-share-item {
	margin-left: 0.5rem;
	margin-bottom: 0;
}

.post-share-item a.share .icon svg {
	width: 1.5rem;
	height: 1.5rem;
	fill: #008CCC;
}

.post-share-item a.share:hover .icon svg {
	fill: #005275;
}

@media screen and ( min-width: 560px ) {
	
	.post-share-item a.share .icon svg {
		width: 1rem;
		height: 1rem;
	}
	
}

/************************************************************************************/
/* Mise en page globale																*/
/************************************************************************************/

#webpage {
	margin: 0 auto;
	padding: 0 5px;
	min-width: 260px;
	max-width: 1280px;
	position: relative;
}

#webpage-header {
	padding-top: 0.5rem;
	-webkit-display: flex;
	-webkit-align-items: flex-end;
	-webkit-justify-content: space-between;
	-ms-display: flex;
	-ms-align-items: flex-end;
	-ms-justify-content: space-between;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

#webpage-content-filters.hidden {
	display: none;
}

@media screen and ( min-width: 560px ) {
	
	#webpage-header {
		padding-top: 2rem;
	}
	
}

@media screen and ( min-width: 920px ) {
	
	#webpage-content-wrap {
		-webkit-display: flex;
		-webkit-justify-content: space-between;
		-ms-display: flex;
		-ms-justify-content: space-between;
		display: flex;
		justify-content: space-between;
	}
	
	#webpage-content-posts {
		width: 100%;
		margin-left: 2rem;
	}
	
	#webpage-content-filters {
		max-width: 21rem;
	}
	
}

@media screen and ( min-width: 920px ) {
	
	#webpage-footer {
		margin-top: 2.25rem;
	}
	
}

/************************************************************************************/
/* Logos de l'en-tête de page														*/
/************************************************************************************/

#site-logo {
	display: block;
}

#site-logo img {
	width: auto;
	height: 1.5rem;
}

#site-publisher {
	display: none;
}

#site-publisher img {
	width: auto;
	height: 2.5rem;
}

@media screen and ( min-width: 360px ) {
	
	#site-logo img {
		height: 3rem;
	}
	
}

@media screen and ( min-width: 560px ) {
	
	#site-logo img {
		height: 4rem;
	}
	
	#site-publisher {
		display: block;
	}
	
}

/************************************************************************************/
/* Barre d'outils de l'en-tête														*/
/************************************************************************************/

#toolbar-header {
	top: 0.5rem;
	right: 5px;
	padding: 0;
	position: absolute;
}

#toolbar-header .toolbar-item {
	margin-left: 1rem;
}

@media screen and ( min-width: 560px ) {
	
	#toolbar-header {
		top: 1rem;
	}
	
}

@media screen and ( min-width: 920px ) {
	
	#toolbar-header .toolbar-item:last-of-type {
		display: none;
	}
	
}

/************************************************************************************/
/* Barre d'outils des articles														*/
/************************************************************************************/

@media screen and ( min-width: 920px ) {
	
	#toolbar-posts {
		margin-left: 23rem;
	}
	
	#toolbar-posts .toolbar-item:first-of-type {
		display: none;
	}
	
}

/************************************************************************************/
/* Bulle d'information																*/
/************************************************************************************/

@media screen and ( min-width: 920px ) {
	
	#tooltip-posts.front {
		left: 28.5rem;
	}
	
}