Outiref

Code source de l'URL : http://lavietoutsimplement.home.blog/

<!DOCTYPE html>
<html lang="fr-FR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">

<title>La vie, tout simplement ! &#8211; Partager mes goûts et mes couleurs, mes impressions et mes envies&#8230; avec vous !</title>
<meta name='robots' content='max-image-preview:large' />

<!-- Async WordPress.com Remote Login -->
<script id="wpcom_remote_login_js">
var wpcom_remote_login_extra_auth = '';
function wpcom_remote_login_remove_dom_node_id( element_id ) {
	var dom_node = document.getElementById( element_id );
	if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
}
function wpcom_remote_login_remove_dom_node_classes( class_name ) {
	var dom_nodes = document.querySelectorAll( '.' + class_name );
	for ( var i = 0; i < dom_nodes.length; i++ ) {
		dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
	}
}
function wpcom_remote_login_final_cleanup() {
	wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
}

// Watch for messages back from the remote login
window.addEventListener( "message", function( e ) {
	if ( e.origin === "https://r-login.wordpress.com" ) {
		var data = {};
		try {
			data = JSON.parse( e.data );
		} catch( e ) {
			wpcom_remote_login_final_cleanup();
			return;
		}

		if ( data.msg === 'LOGIN' ) {
			// Clean up the login check iframe
			wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );

			var id_regex = new RegExp( /^[0-9]+$/ );
			var token_regex = new RegExp( /^.*|.*|.*$/ );
			if (
				token_regex.test( data.token )
				&& id_regex.test( data.wpcomid )
			) {
				// We have everything we need to ask for a login
				var script = document.createElement( "script" );
				script.setAttribute( "id", "wpcom_remote_login_validate" );
				script.src = '/remote-login.php?wpcom_remote_login=validate'
					+ '&wpcomid=' + data.wpcomid
					+ '&token=' + encodeURIComponent( data.token )
					+ '&host=' + window.location.protocol
					+ '//' + window.location.hostname
					+ '&postid=621'
					+ '&is_singular=';
				document.body.appendChild( script );
			}

			return;
		}

		// Safari ITP, not logged in, so redirect
		if ( data.msg === 'LOGIN-REDIRECT' ) {
			window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
			return;
		}

		// Safari ITP, storage access failed, remove the request
		if ( data.msg === 'LOGIN-REMOVE' ) {
			var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
			var style_zap = document.createElement( 'style' );
			style_zap.type = 'text/css';
			style_zap.appendChild( document.createTextNode( css_zap ) );
			document.body.appendChild( style_zap );

			var e = document.getElementById( 'wpcom_request_access_iframe' );
			e.parentNode.removeChild( e );

			document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';

			return;
		}

		// Safari ITP
		if ( data.msg === 'REQUEST_ACCESS' ) {
			console.log( 'request access: safari' );

			// Check ITP iframe enable/disable knob
			if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
				return;
			}

			// If we are in a "private window" there is no ITP.
			var private_window = false;
			try {
				var opendb = window.openDatabase( null, null, null, null );
			} catch( e ) {
				private_window = true;
			}

			if ( private_window ) {
				console.log( 'private window' );
				return;
			}

			var iframe = document.createElement( 'iframe' );
			iframe.id = 'wpcom_request_access_iframe';
			iframe.setAttribute( 'scrolling', 'no' );
			iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
			iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );

			var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';

			var style = document.createElement( 'style' );
			style.type = 'text/css';
			style.id = 'wpcom_request_access_styles';
			style.appendChild( document.createTextNode( css ) );
			document.body.appendChild( style );

			document.body.appendChild( iframe );
		}

		if ( data.msg === 'DONE' ) {
			wpcom_remote_login_final_cleanup();
		}
	}
}, false );

// Inject the remote login iframe after the page has had a chance to load
// more critical resources
window.addEventListener( "DOMContentLoaded", function( e ) {
	var iframe = document.createElement( "iframe" );
	iframe.style.display = "none";
	iframe.setAttribute( "scrolling", "no" );
	iframe.setAttribute( "id", "wpcom_remote_login_key" );
	iframe.src = "https://r-login.wordpress.com/remote-login.php"
		+ "?wpcom_remote_login=key"
		+ "&origin=aHR0cHM6Ly9sYXZpZXRvdXRzaW1wbGVtZW50LmhvbWUuYmxvZw%3D%3D"
		+ "&wpcomid=157046534"
		+ "&time=" + Math.floor( Date.now() / 1000 );
	document.body.appendChild( iframe );
}, false );
</script>
<link rel='dns-prefetch' href='//s1.wp.com' />
<link rel='dns-prefetch' href='//s2.wp.com' />
<link rel='dns-prefetch' href='//fonts-api.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//af.pubmine.com' />
<link rel="alternate" type="application/rss+xml" title="La vie, tout simplement ! &raquo; Flux" href="https://lavietoutsimplement.home.blog/feed/" />
<link rel="alternate" type="application/rss+xml" title="La vie, tout simplement ! &raquo; Flux des commentaires" href="https://lavietoutsimplement.home.blog/comments/feed/" />
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
	<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-1' href='/_static/??-eJxdjNEKwjAMRX/IGoej4oP4LV2NJVualDZF/Hs3UBFfLpwD58KjuKhiKAYTa3KFeyJpkENd0EiSm0KF2P7MfjU7+Ilz/6YzWglxeTNk1W1unbEByZ2EDF2LVZk//Nz+rvkynPzgx8PZH+cXsHM5DA==&cssminify=yes' type='text/css' media='all' />
<style id='wp-emoji-styles-inline-css'>

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-2-1' href='/wp-content/plugins/gutenberg-core/v22.2.0/build/styles/block-library/style.css?m=1764855221i&cssminify=yes' type='text/css' media='all' />
<style id='wp-block-library-inline-css'>
.has-text-align-justify {
	text-align:justify;
}
.has-text-align-justify{text-align:justify;}

/*# sourceURL=wp-block-library-inline-css */
</style><style id='wp-block-group-inline-css'>
.wp-block-group{box-sizing:border-box}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v22.2.0/build/styles/block-library/group/style.css */
</style>
<style id='wp-block-paragraph-inline-css'>
.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v22.2.0/build/styles/block-library/paragraph/style.css */
</style>
<style id='wp-block-social-links-inline-css'>
.wp-block-social-links{background:none;box-sizing:border-box;margin-left:0;padding-left:0;padding-right:0;text-indent:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{border-bottom:0;box-shadow:none;text-decoration:none}.wp-block-social-links .wp-social-link svg{height:1em;width:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){font-size:.65em;margin-left:.5em;margin-right:.5em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{display:flex;justify-content:center}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{border-radius:9999px;display:block}@media not (prefers-reduced-motion){.wp-block-social-link{transition:transform .1s ease}}.wp-block-social-link{height:auto}.wp-block-social-link a{align-items:center;display:flex;line-height:0}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link.wp-social-link{display:inline-block;margin:0;padding:0}.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited{fill:currentColor;color:currentColor}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link{background-color:#f0f0f0;color:#444}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon{background-color:#f90;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance{background-color:#0757fe;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky{background-color:#0a7aff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord{background-color:#5865f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy{background-color:#f45800;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook{background-color:#0866ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr{background-color:#0461dd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare{background-color:#e65678;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github{background-color:#24292d;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google{background-color:#ea4434;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar{background-color:#1d4fc4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram{background-color:#f00075;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup{background-color:#f6405f;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest{background-color:#e60122;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket{background-color:#ef4155;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit{background-color:#ff4500;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype{background-color:#0478d7;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat{stroke:#000;background-color:#fefc00;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify{background-color:#1bd760;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram{background-color:#2aabee;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr{background-color:#011835;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch{background-color:#6440a4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk{background-color:#4680c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp{background-color:#d32422;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube{background-color:red;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link{background:none}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg{height:1.25em;width:1.25em}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon{color:#f90}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp{color:#1ea0c3}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance{color:#0757fe}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky{color:#0a7aff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen{color:#1e1f26}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart{color:#02e49b}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord{color:#5865f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble{color:#e94c89}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox{color:#4280ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy{color:#f45800}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook{color:#0866ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr{color:#0461dd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare{color:#e65678}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github{color:#24292d}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads{color:#382110}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google{color:#ea4434}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar{color:#1d4fc4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram{color:#f00075}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm{color:#e21b24}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin{color:#0d66c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon{color:#3288d4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup{color:#f6405f}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest{color:#e60122}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket{color:#ef4155}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit{color:#ff4500}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype{color:#0478d7}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat{stroke:#000;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud{color:#ff5600}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify{color:#1bd760}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram{color:#2aabee}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr{color:#011835}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch{color:#6440a4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter{color:#1da1f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo{color:#1eb7ea}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk{color:#4680c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp{color:#25d366}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress{color:#3499cd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp{color:#d32422}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.6666666667em;padding-right:.6666666667em}.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label{color:#000}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v22.2.0/build/styles/block-library/social-links/style.css */
</style>
<style id='wp-block-gallery-inline-css'>
.blocks-gallery-grid:not(.has-nested-images),.wp-block-gallery:not(.has-nested-images){display:flex;flex-wrap:wrap;list-style-type:none;margin:0;padding:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item{display:flex;flex-direction:column;flex-grow:1;justify-content:center;margin:0 1em 1em 0;position:relative;width:calc(50% - 1em)}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure{align-items:flex-end;display:flex;height:100%;justify-content:flex-start;margin:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img{display:block;height:auto;max-width:100%;width:auto}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption{background:linear-gradient(0deg,#000000b3,#0000004d 70%,#0000);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid:not(.has-nested-images) figcaption,.wp-block-gallery:not(.has-nested-images) figcaption{flex-grow:1}.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img{flex:1;height:100%;object-fit:cover;width:100%}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item{margin-right:0;width:100%}@media (min-width:600px){.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item{margin-right:1em;width:calc(33.33333% - .66667em)}.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item{margin-right:1em;width:calc(25% - .75em)}.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item{margin-right:1em;width:calc(20% - .8em)}.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item{margin-right:1em;width:calc(16.66667% - .83333em)}.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item{margin-right:1em;width:calc(14.28571% - .85714em)}.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item{margin-right:1em;width:calc(12.5% - .875em)}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid:not(.has-nested-images).alignleft,.blocks-gallery-grid:not(.has-nested-images).alignright,.wp-block-gallery:not(.has-nested-images).alignleft,.wp-block-gallery:not(.has-nested-images).alignright{max-width:420px;width:100%}.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-gallery:not(.is-cropped) .blocks-gallery-item{align-self:flex-start}figure.wp-block-gallery.has-nested-images{align-items:normal}.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){margin:0;width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2)}.wp-block-gallery.has-nested-images figure.wp-block-image{box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;max-width:100%;position:relative}.wp-block-gallery.has-nested-images figure.wp-block-image>a,.wp-block-gallery.has-nested-images figure.wp-block-image>div{flex-direction:column;flex-grow:1;margin:0}.wp-block-gallery.has-nested-images figure.wp-block-image img{display:block;height:auto;max-width:100%!important;width:auto}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption,.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{bottom:0;left:0;max-height:100%;position:absolute;right:0}.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{backdrop-filter:blur(3px);content:"";height:100%;-webkit-mask-image:linear-gradient(0deg,#000 20%,#0000);mask-image:linear-gradient(0deg,#000 20%,#0000);max-height:40%;pointer-events:none}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{box-sizing:border-box;color:#fff;font-size:13px;margin:0;overflow:auto;padding:1em;text-align:center;text-shadow:0 0 1.5px #000}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar{height:12px;width:12px}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track{background-color:initial}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:initial;border:3px solid #0000;border-radius:8px}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb{background-color:#fffc}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{scrollbar-color:#0000 #0000;scrollbar-gutter:stable both-edges;scrollbar-width:thin}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover{scrollbar-color:#fffc #0000}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{will-change:transform}@media (hover:none){.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{scrollbar-color:#fffc #0000}}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{background:linear-gradient(0deg,#0006,#0000)}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img{display:inline}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a{color:inherit}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a,.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div{flex:1 1 auto}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption{background:none;color:inherit;flex:initial;margin:0;padding:10px 10px 9px;position:relative;text-shadow:none}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before{content:none}.wp-block-gallery.has-nested-images figcaption{flex-basis:100%;flex-grow:1;text-align:center}.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image){margin-bottom:auto;margin-top:0}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image){align-self:inherit}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone){display:flex}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img{flex:1 0 0%;height:100%;object-fit:cover;width:100%}.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image){width:100%}@media (min-width:600px){.wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image){width:calc(33.33333% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)}.wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image){width:calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*.75)}.wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image){width:calc(20% - var(--wp--style--unstable-gallery-gap, 16px)*.8)}.wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image){width:calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px)*.83333)}.wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image){width:calc(14.28571% - var(--wp--style--unstable-gallery-gap, 16px)*.85714)}.wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image){width:calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px)*.875)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image){width:calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*.5)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child{width:100%}}.wp-block-gallery.has-nested-images.alignleft,.wp-block-gallery.has-nested-images.alignright{max-width:420px;width:100%}.wp-block-gallery.has-nested-images.aligncenter{justify-content:center}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v22.2.0/build/styles/block-library/gallery/style.css */
</style>
<style id='wp-block-image-inline-css'>
.wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:show-content-image .4s}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull>a,.wp-block-image.alignwide>a{width:100%}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;backdrop-filter:blur(16px) saturate(180%);background-color:#5a5a5a40;border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;opacity:0;padding:0;position:absolute;right:16px;text-align:center;top:16px;width:20px;z-index:100}@media not (prefers-reduced-motion){.wp-lightbox-container button{transition:opacity .2s ease}}.wp-lightbox-container button:focus-visible{outline:3px auto #5a5a5a40;outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:#5a5a5a40;border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .close-button{align-items:center;cursor:pointer;display:flex;justify-content:center;min-height:40px;min-width:40px;padding:0;position:absolute;right:calc(env(safe-area-inset-right) + 16px);top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .close-button:focus,.wp-lightbox-overlay .close-button:hover,.wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);left:50%;overflow:hidden;position:absolute;top:50%;transform:translate(-50%,-50%);transform-origin:top left;width:var(--wp--lightbox-container-width);z-index:9999999999}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:0 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{visibility:visible}@media not (prefers-reduced-motion){.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v22.2.0/build/styles/block-library/image/style.css */
</style>
<style id='global-styles-inline-css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #404040;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--dark-gray: #444340;--wp--preset--color--medium-gray: #a8a6a1;--wp--preset--color--light-gray: #e6e6e6;--wp--preset--color--blue: #15b6b8;--wp--preset--color--dark-blue: #0c8384;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
/*# sourceURL=global-styles-inline-css */
</style>
<style id='core-block-supports-inline-css'>
.wp-block-gallery.wp-block-gallery-1{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-2{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-3{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-4{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}
/*# sourceURL=core-block-supports-inline-css */
</style>

<style id='classic-theme-styles-inline-css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
/*# sourceURL=/wp-includes/css/classic-themes.min.css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-4-1' href='/_static/??-eJx9j9sKwjAQRH/IzVqptT6I35LLUqNJG7KJ1b83pXhBpS/LMpyZYXAMoIc+UZ8wuNzZnlEPyg36wrgRVSsqYOuDI4h0FTUay+lFAKe7I6GZV/gR5DO8syIV3QeZJsKTsZIc+YIt2UZrOkrFzs8fEt2WLaHUgFIhEjOU6232kE6li398s4whKzQySvy/45uaR0/Y0R+q3bZp13Wzr88P2uh31g==&cssminify=yes' type='text/css' media='all' />
<link rel='stylesheet' id='dara-fonts-css' href='https://fonts-api.wp.com/css?family=Source+Sans+Pro%3A300%2C300italic%2C400%2C400italic%2C600%7CYrsa%3A300%2C400%2C700&#038;subset=latin%2Clatin-ext' media='all' />
<link crossorigin='anonymous' rel='stylesheet' id='all-css-6-1' href='/_static/??/wp-content/mu-plugins/jetpack-plugin/moon/_inc/genericons/genericons/genericons.css,/wp-content/themes/pub/dara/inc/style-wpcom.css?m=1753284714j&cssminify=yes' type='text/css' media='all' />
<style id='jetpack_facebook_likebox-inline-css'>
.widget_facebook_likebox {
	overflow: hidden;
}

/*# sourceURL=/wp-content/mu-plugins/jetpack-plugin/moon/modules/widgets/facebook-likebox/style.css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-8-1' href='/_static/??-eJzTLy/QTc7PK0nNK9HPLdUtyClNz8wr1i9KTcrJTwcy0/WTi5G5ekCujj52Temp+bo5+cmJJZn5eSgc3bScxMwikFb7XFtDE1NLExMLc0OTLACohS2q&cssminify=yes' type='text/css' media='all' />
<link crossorigin='anonymous' rel='stylesheet' id='print-css-9-1' href='/wp-content/mu-plugins/global-print/global-print.css?m=1465851035i&cssminify=yes' type='text/css' media='print' />
<style id='jetpack-global-styles-frontend-style-inline-css'>
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
/*# sourceURL=jetpack-global-styles-frontend-style-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-12-1' href='/wp-content/themes/h4/global.css?m=1420737423i&cssminify=yes' type='text/css' media='all' />
<script type="text/javascript" id="wpcom-actionbar-placeholder-js-extra">
/* <![CDATA[ */
var actionbardata = {"siteID":"157046534","postID":"0","siteURL":"https://lavietoutsimplement.home.blog","xhrURL":"https://lavietoutsimplement.home.blog/wp-admin/admin-ajax.php","nonce":"1d679f2ea0","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https://s0.wp.com/wp-content/js/wpcom-proxy-request.js?m=1513050504i&amp;ver=20211021","i18n":{"followedText":"Les nouvelles publications de ce site appara\u00eetront d\u00e9sormais dans votre \u003Ca href=\"https://wordpress.com/reader\"\u003ELecteur\u003C/a\u003E","foldBar":"R\u00e9duire cette barre","unfoldBar":"Agrandir cette barre","shortLinkCopied":"Lien court copi\u00e9 dans le presse-papier"}};
//# sourceURL=wpcom-actionbar-placeholder-js-extra
/* ]]> */
</script>
<script type="text/javascript" id="jetpack-mu-wpcom-settings-js-before">
/* <![CDATA[ */
var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https://s1.wp.com/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/moon/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/"};
//# sourceURL=jetpack-mu-wpcom-settings-js-before
/* ]]> */
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??/wp-content/js/rlt-proxy.js,/wp-content/blog-plugins/wordads-classes/js/cmp/v2/cmp-stub.js?m=1720530689j'></script>
<script type="text/javascript" id="rlt-proxy-js-after">
/* <![CDATA[ */
	rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
//# sourceURL=rlt-proxy-js-after
/* ]]> */
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://lavietoutsimplementhome.wordpress.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress.com" />
<link rel='shortlink' href='https://wp.me/aCWYC' />

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="La vie, tout simplement !" />
<meta property="og:description" content="Partager mes goûts et mes couleurs, mes impressions et mes envies... avec vous !" />
<meta property="og:url" content="https://lavietoutsimplement.home.blog/" />
<meta property="og:site_name" content="La vie, tout simplement !" />
<meta property="og:image" content="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=200" />
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="fr_FR" />

<!-- End Jetpack Open Graph Tags -->
<link rel="search" type="application/opensearchdescription+xml" href="https://lavietoutsimplement.home.blog/osd.xml" title="La vie, tout simplement !" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<meta name="theme-color" content="#d6b8a2" />
<meta name="description" content="Partager mes goûts et mes couleurs, mes impressions et mes envies... avec vous !" />
<style type="text/css" id="custom-background-css">
body.custom-background { background-color: #d6b8a2; }
</style>
	<script type="text/javascript">
/* <![CDATA[ */
var wa_client = {}; wa_client.cmd = []; wa_client.config = { 'blog_id': 157046534, 'blog_language': 'fr', 'is_wordads': false, 'hosting_type': 0, 'afp_account_id': null, 'afp_host_id': 5038568878849053, 'theme': 'pub/dara', '_': { 'title': 'Publicité', 'privacy_settings': 'Réglages de confidentialité' }, 'formats': [ 'belowpost', 'bottom_sticky', 'sidebar_sticky_right', 'sidebar', 'gutenberg_rectangle', 'gutenberg_leaderboard', 'gutenberg_mobile_leaderboard', 'gutenberg_skyscraper' ] };
/* ]]> */
</script>
		<script type="text/javascript">

			window.doNotSellCallback = function() {

				var linkElements = [
					'a[href="https://wordpress.com/?ref=footer_blog"]',
					'a[href="https://wordpress.com/?ref=footer_website"]',
					'a[href="https://wordpress.com/?ref=vertical_footer"]',
					'a[href^="https://wordpress.com/?ref=footer_segment_"]',
				].join(',');

				var dnsLink = document.createElement( 'a' );
				dnsLink.href = 'https://wordpress.com/fr/advertising-program-optout/';
				dnsLink.classList.add( 'do-not-sell-link' );
				dnsLink.rel = 'nofollow';
				dnsLink.style.marginLeft = '0.5em';
				dnsLink.textContent = 'Ne pas vendre ni partager mes informations personnelles';

				var creditLinks = document.querySelectorAll( linkElements );

				if ( 0 === creditLinks.length ) {
					return false;
				}

				Array.prototype.forEach.call( creditLinks, function( el ) {
					el.insertAdjacentElement( 'afterend', dnsLink );
				});

				return true;
			};

		</script>
		<script id="cmp-configuration" type="application/configuration">{"gvlVersion":"139","consentLanguage":"FR","locale":"fr","vendorsAll":"BSUAOIRKgQQoJAQI4BAAhAEBiAYACECAAABAACAAAAAAABEAEAAAAAAAAAQAAAAAAAAABAAAAAAAAAAAABAAAIAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAIAAAgAAgAAAAAABAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA","vendorsLegInterest":"BSUAEAQKgAAoAAAIAAAAgAAACAIACAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAIAAAgAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQA","ajaxUrl":"\/wp-admin\/admin-ajax.php","ajaxNonce":"65201590bd","modulePath":"https:\/\/s1.wp.com\/wp-content\/blog-plugins\/wordads-classes\/js\/cmp\/v2\/","gvlPath":"https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/157046534\/cmp\/v3\/vendors\/fr\/","_":{"title":"Confidentialit\u00e9 et cookies","intro":"Nous, WordPress.com, et nos partenaires publicitaires conservons et\/ou acc\u00e9dons aux informations sur votre appareil et traitons \u00e9galement vos donn\u00e9es personnelles, comme les identifiants uniques, l\u2019activit\u00e9 de navigation et d\u2019autres informations standard que votre appareil transmet, y compris votre adresse IP. Ces informations sont collect\u00e9es au fil du temps et utilis\u00e9es pour des publicit\u00e9s personnalis\u00e9es, la mesure de performance des publicit\u00e9s, des \u00e9tudes d\u2019audience et le d\u00e9veloppement de services sp\u00e9cifiques \u00e0 notre programme publicitaire. Si cela vous convient, s\u00e9lectionnez \u00ab\u00a0J\u2019accepte\u00a0!\u00a0\u00bb ci-apr\u00e8s. Sinon, vous pouvez obtenir plus d\u2019informations, personnaliser vos pr\u00e9f\u00e9rences en mati\u00e8re de consentement pour 50\u00a0fournisseurs publicitaires ou refuser le consentement en s\u00e9lectionnant \u00ab\u00a0Lire la suite\u00a0\u00bb. Notez que vos pr\u00e9f\u00e9rences s\u2019appliquent \u00e0 tous les sites Web du <a href=\"https:\/\/automattic.com\/cookies\/#user-ads-consent\" target=\"_blank\">r\u00e9seau WordPress.com<\/a>. Si vous changez d\u2019avis ult\u00e9rieurement, vous pouvez mettre \u00e0 jour vos pr\u00e9f\u00e9rences \u00e0 tout moment \u00e0 partir du lien relatif \u00e0 la confidentialit\u00e9 affich\u00e9 sous chaque publicit\u00e9 ou \u00e0 l\u2019aide de l\u2019option Confidentialit\u00e9 dans la barre d\u2019actions situ\u00e9e dans le coin inf\u00e9rieur droit de l\u2019\u00e9cran. Enfin, nos partenaires peuvent traiter certaines de vos donn\u00e9es en fonction d\u2019un int\u00e9r\u00eat l\u00e9gitime plut\u00f4t que sur la base de votre consentement. Vous pouvez toutefois refuser en s\u00e9lectionnant \u00ab\u00a0Lire la suite\u00a0\u00bb et en d\u00e9sactivant l\u2019option relative \u00e0 l\u2019int\u00e9r\u00eat l\u00e9gitime sous tout motif ou partenaire figurant dans la liste.","config":"En savoir plus","accept":"J\u2019accepte","viewPartners":"Voir les partenaires","error":"D\u00e9sol\u00e9, une erreur inattendue s\u2019est produite. Veuillez r\u00e9essayer plus tard."}}</script><style type="text/css" id="custom-colors-css">#infinite-handle span,
            .hero-content-wrapper .cat-links a,
            .jetpack-social-navigation ul li,
            .jetpack-social-navigation ul a,
            .jetpack-social-navigation ul a:visited,
            .main-navigation,
            .main-navigation a,
            .main-navigation ul ul a,
            .button,
            .button:hover,
            .button:active,
            .button:focus,
            .menu-toggle,
            button,
            input[type="button"],
            input[type="reset"],
            input[type="submit"],
            .woocommerce #respond input#submit.alt,
            .woocommerce a.button.alt,
            .woocommerce button.button.alt,
            .woocommerce input.button.alt,
            .woocommerce #respond input#submit.alt:hover,
            .woocommerce a.button.alt:hover,
            .woocommerce button.button.alt:hover,
            .woocommerce input.button.alt:hover { color: #FFFFFF;}
.jetpack-social-navigation ul a:hover,
    		.menu-toggle:hover,
    		.menu-toggle:focus { color: #FFFFFF;}
.site-footer,
            .site-footer a { color: #444444;}
body { background-color: #d6b8a2;}
.site-footer { background-color: #DBC0AD;}
#secondary.widget-area .widget-title,
            .entry-title,
            .entry-title a,
            .featured-page .entry-title,
            .featured-page .entry-title a,
            .footer-widget-area .widget-title,
            .page-title,
            .site-title a,
            .woocommerce .page-title { color: #4F6E86;}
#infinite-handle span,
            .hero-content-wrapper .cat-links a,
            .jetpack-social-navigation ul li,
            .main-navigation,
            .main-navigation ul ul,
            .button,
            button,
            input[type="button"],
            input[type="reset"],
            input[type="submit"],
            .woocommerce #respond input#submit.alt,
            .woocommerce a.button.alt,
            .woocommerce button.button.alt,
            .woocommerce input.button.alt,
            .woocommerce #respond input#submit.alt:hover,
            .woocommerce a.button.alt:hover,
            .woocommerce button.button.alt:hover,
            .woocommerce input.button.alt:hover { background-color: #72594a;}
input[type="email"]:focus,
            input[type="password"]:focus,
            input[type="search"]:focus,
            input[type="text"]:focus,
            input[type="url"]:focus,
            textarea:focus { border-color: #72594a;}
.cat-links a,
            .comment-meta a,
            .entry-title a:active,
            .entry-title a:focus,
            .entry-title a:hover,
            .footer-widget-area a:active,
            .footer-widget-area a:focus,
            .footer-widget-area a:hover,
            .jetpack-testimonial-shortcode .testimonial-entry-title,
            .site-info a:active,
            .site-info a:focus,
            .site-info a:hover,
            a,
            body:not(.search):not(.single-jetpack-testimonial) .jetpack-testimonial .entry-title,
            body:not(.search):not(.single-jetpack-testimonial) .jetpack-testimonial .entry-title a { color: #72594A;}
</style>
<link rel="icon" href="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=32" sizes="32x32" />
<link rel="icon" href="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=192" sizes="192x192" />
<link rel="apple-touch-icon" href="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=180" />
<meta name="msapplication-TileImage" content="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=270" />
<script type="text/javascript">
	window.google_analytics_uacct = "UA-52447-2";
</script>

<script type="text/javascript">
	var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-52447-2']);
	_gaq.push(['_gat._anonymizeIp']);
	_gaq.push(['_setDomainName', 'none']);
	_gaq.push(['_setAllowLinker', true]);
	_gaq.push(['_initData']);
	_gaq.push(['_trackPageview']);

	(function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
	})();
</script>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-3' href='/_static/??-eJydjdEKwjAMRX/IGqaT+SJ+inRZGN3SpDQtw78Xwe1Rxh7P4XIuLMmhSiEpEKtLXMcgBhOV5HH+MURVgVcQhJ4VZwNbQqJ8RrMT7C9EHSqTAfqs1Yi30SqOBktgGtzomSm//9H34BkfTXe7Xu5t17TTB3k+YIU=&cssminify=yes' type='text/css' media='all' />
</head>

<body class="home blog custom-background wp-embed-responsive wp-theme-pubdara customizer-styles-applied hfeed not-multi-author display-header-text jetpack-reblog-enabled has-marketing-bar has-marketing-bar-theme-dara">
<div id="page" class="site">
	<a class="skip-link screen-reader-text" href="#content">Accéder au contenu principal</a>

	<header id="masthead" class="site-header" role="banner">

			<div class="custom-header">
		<a href="https://lavietoutsimplement.home.blog/" rel="home">
			<img src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair.jpg" width="1180" height="573" alt="">
		</a>
	</div><!-- .custom-header -->

				<div class="site-branding">
										<h1 class="site-title"><a href="https://lavietoutsimplement.home.blog/" rel="home">La vie, tout simplement !</a></h1>
							<p class="site-description">Partager mes goûts et mes couleurs, mes impressions et mes envies&#8230; avec vous !</p>
			
					</div><!-- .site-branding -->

		<nav id="site-navigation" class="main-navigation" role="navigation">
	<button class="menu-toggle" aria-controls="top-menu" aria-expanded="false">Menu</button>
	<div class="menu-menu-principal-container"><ul id="top-menu" class="menu"><li id="menu-item-205" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-205"><a href="https://lavietoutsimplementhome.wordpress.com">Accueil</a></li>
<li id="menu-item-95" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-95"><a href="https://lavietoutsimplement.home.blog/category/impressions/">Impressions</a></li>
<li id="menu-item-96" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-96"><a href="https://lavietoutsimplement.home.blog/category/lire-et-ecouter/">Lire et écouter</a></li>
<li id="menu-item-357" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-357"><a href="https://lavietoutsimplement.home.blog/category/tres-nature/">Très nature</a></li>
<li id="menu-item-97" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-97"><a href="https://lavietoutsimplement.home.blog/category/je-cree/">Je crée</a></li>
<li id="menu-item-94" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-94"><a href="https://lavietoutsimplement.home.blog/category/quand-est-ce-quon-mange/">Quand est-ce qu&rsquo;on mange ?</a></li>
<li id="menu-item-503" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-503"><a href="https://lavietoutsimplement.home.blog/category/decouvertes/">Découvertes</a></li>
<li id="menu-item-586" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-586"><a href="https://lavietoutsimplement.home.blog/category/le-post-photo/">Le post photo</a></li>
<li id="menu-item-237" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-237"><a href="https://lavietoutsimplement.home.blog/qui-suis-je/">Qui suis-je ?</a></li>
<li id="menu-item-298" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-298"><a href="https://lavietoutsimplement.home.blog/contact-2/">Contact</a></li>
</ul></div>	</nav>

	</header>

	
	<div id="content" class="site-content">
	<div id="primary" class="content-area">
		<main id="main" class="site-main" role="main">

		
<article id="post-621" class="post-621 post type-post status-publish format-standard has-post-thumbnail sticky hentry category-impressions tag-espoir tag-guerison tag-resilience with-featured-image">
			<div class="post-thumbnail">
			<a href="https://lavietoutsimplement.home.blog/2022/02/17/resilience/">
				<img width="880" height="312" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg?w=880&amp;h=312&amp;crop=1" class="attachment-dara-featured-image size-dara-featured-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg?w=880&amp;h=312&amp;crop=1 880w, https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg?w=1760&amp;h=624&amp;crop=1 1760w, https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg?w=150&amp;h=53&amp;crop=1 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg?w=300&amp;h=106&amp;crop=1 300w, https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg?w=768&amp;h=272&amp;crop=1 768w, https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg?w=1024&amp;h=363&amp;crop=1 1024w, https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg?w=1440&amp;h=511&amp;crop=1 1440w" sizes="(max-width: 880px) 100vw, 880px" data-attachment-id="634" data-permalink="https://lavietoutsimplement.home.blog/2022/02/17/resilience/pexels-photo-6738963/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg" data-orig-size="1880,1255" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="mer nature ciel plage" data-image-description="" data-image-caption="&lt;p&gt;Photo de Michael Goyberg sur &lt;a href=&quot;https://www.pexels.com/fr-fr/photo/mer-nature-ciel-plage-6738963/&quot; rel=&quot;nofollow&quot;&gt;Pexels.com&lt;/a&gt;&lt;/p&gt;" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2022/02/pexels-photo-6738963.jpeg?w=1024" />			</a>
		</div>
	
	<header class="entry-header">
		<span class="cat-links"><a href="https://lavietoutsimplement.home.blog/category/impressions/" rel="category tag">Impressions</a></span><h2 class="entry-title"><a href="https://lavietoutsimplement.home.blog/2022/02/17/resilience/" rel="bookmark">Résilience</a></h2>	</header>

	<div class="entry-body">
							<div class="entry-meta">
			<span class="posted-on"><a href="https://lavietoutsimplement.home.blog/2022/02/17/resilience/" rel="bookmark"><time class="entry-date published" datetime="2022-02-17T17:17:35+01:00">17 février 2022</time><time class="updated" datetime="2022-02-17T18:53:17+01:00">17 février 2022</time></a></span><span class="byline"> <span class="author vcard"><a class="url fn n" href="https://lavietoutsimplement.home.blog/author/audelvts/">La vie, tout simplement !</a></span></span>		</div><!-- .entry-meta -->		
		<div class="entry-content">
			<p>Et un jour, votre vie se fracasse. Votre monde se fend en deux. Tout s'écroule à l'intérieur de vous. Tout ce à quoi vous croyiez n'existe plus, le néant vous étouffe. Vos jours, vos nuits sont des abîmes. J'ai traversé ce long tunnel, j'ai voulu croire à nouveau. J'ai souhaité pardonner, réparer. Je suis tombée&hellip; <a href="https://lavietoutsimplement.home.blog/2022/02/17/resilience/" class="more-link">Lire la suite <span class="screen-reader-text">Résilience</span></a></p>		</div>

			<footer class="entry-footer">
		<span class="tags-links">Tagué <a href="https://lavietoutsimplement.home.blog/tag/espoir/" rel="tag">Espoir</a>, <a href="https://lavietoutsimplement.home.blog/tag/guerison/" rel="tag">Guérison</a>, <a href="https://lavietoutsimplement.home.blog/tag/resilience/" rel="tag">Résilience</a></span><span class="comments-link"><a href="https://lavietoutsimplement.home.blog/2022/02/17/resilience/#comments">2 commentaires</a></span>	</footer><!-- .entry-footer -->
		
	</div><!-- .entry-body -->
</article><!-- #post-## -->

<article id="post-592" class="post-592 post type-post status-publish format-standard has-post-thumbnail hentry category-impressions tag-communication-positive tag-enseignement tag-lyceenne tag-transmission with-featured-image">
			<div class="post-thumbnail">
			<a href="https://lavietoutsimplement.home.blog/2019/06/19/cest-lhistoire-dune-lyceenne/">
				<img width="880" height="312" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg?w=880&amp;h=312&amp;crop=1" class="attachment-dara-featured-image size-dara-featured-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg?w=880&amp;h=312&amp;crop=1 880w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg?w=1760&amp;h=624&amp;crop=1 1760w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg?w=150&amp;h=53&amp;crop=1 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg?w=300&amp;h=106&amp;crop=1 300w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg?w=768&amp;h=272&amp;crop=1 768w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg?w=1024&amp;h=363&amp;crop=1 1024w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg?w=1440&amp;h=510&amp;crop=1 1440w" sizes="(max-width: 880px) 100vw, 880px" data-attachment-id="610" data-permalink="https://lavietoutsimplement.home.blog/20190619_082049-1/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg" data-orig-size="2190,1678" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190619_082049-1" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/06/20190619_082049-1.jpg?w=1024" />			</a>
		</div>
	
	<header class="entry-header">
		<span class="cat-links"><a href="https://lavietoutsimplement.home.blog/category/impressions/" rel="category tag">Impressions</a></span><h2 class="entry-title"><a href="https://lavietoutsimplement.home.blog/2019/06/19/cest-lhistoire-dune-lyceenne/" rel="bookmark">C&rsquo;est l&rsquo;histoire d&rsquo;une&nbsp;lycéenne&#8230;</a></h2>	</header>

	<div class="entry-body">
							<div class="entry-meta">
			<span class="posted-on"><a href="https://lavietoutsimplement.home.blog/2019/06/19/cest-lhistoire-dune-lyceenne/" rel="bookmark"><time class="entry-date published" datetime="2019-06-19T11:08:14+01:00">19 juin 2019</time><time class="updated" datetime="2019-06-19T13:05:42+01:00">19 juin 2019</time></a></span><span class="byline"> <span class="author vcard"><a class="url fn n" href="https://lavietoutsimplement.home.blog/author/audelvts/">La vie, tout simplement !</a></span></span>		</div><!-- .entry-meta -->		
		<div class="entry-content">
			<p>Voilà bien longtemps que je n'ai pas publié d'article sur le blog. La principale raison à cela est que j'ai eu des décisions importantes à prendre, qui engagent mon avenir et que pour le faire j'avais besoin de toute mon énergie et de toute mon attention, ainsi que de temps. Ma tête était prise ailleurs,&hellip; <a href="https://lavietoutsimplement.home.blog/2019/06/19/cest-lhistoire-dune-lyceenne/" class="more-link">Lire la suite <span class="screen-reader-text">C&rsquo;est l&rsquo;histoire d&rsquo;une&nbsp;lycéenne&#8230;</span></a></p><div id="atatags-370373-69503a49241b2">
		<script type="text/javascript">
			__ATA = window.__ATA || {};
			__ATA.cmd = window.__ATA.cmd || [];
			__ATA.cmd.push(function() {
				__ATA.initVideoSlot('atatags-370373-69503a49241b2', {
					sectionId: '370373',
					format: 'inread'
				});
			});
		</script>
	</div>		</div>

			<footer class="entry-footer">
		<span class="tags-links">Tagué <a href="https://lavietoutsimplement.home.blog/tag/communication-positive/" rel="tag">communication positive</a>, <a href="https://lavietoutsimplement.home.blog/tag/enseignement/" rel="tag">enseignement</a>, <a href="https://lavietoutsimplement.home.blog/tag/lyceenne/" rel="tag">lycéenne</a>, <a href="https://lavietoutsimplement.home.blog/tag/transmission/" rel="tag">transmission</a></span><span class="comments-link"><a href="https://lavietoutsimplement.home.blog/2019/06/19/cest-lhistoire-dune-lyceenne/#comments">10 commentaires</a></span>	</footer><!-- .entry-footer -->
		
	</div><!-- .entry-body -->
</article><!-- #post-## -->

<article id="post-566" class="post-566 post type-post status-publish format-standard has-post-thumbnail hentry category-impressions tag-avancer tag-doute tag-haute-vienne tag-les-gens-qui-doutent-limoges tag-reconversion tag-vaincre-sa-peur with-featured-image">
			<div class="post-thumbnail">
			<a href="https://lavietoutsimplement.home.blog/2019/05/02/avancer-malgre-le-doute/">
				<img width="880" height="312" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg?w=880&amp;h=312&amp;crop=1" class="attachment-dara-featured-image size-dara-featured-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg?w=880&amp;h=312&amp;crop=1 880w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg?w=1760&amp;h=624&amp;crop=1 1760w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg?w=150&amp;h=53&amp;crop=1 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg?w=300&amp;h=106&amp;crop=1 300w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg?w=768&amp;h=272&amp;crop=1 768w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg?w=1024&amp;h=363&amp;crop=1 1024w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg?w=1440&amp;h=510&amp;crop=1 1440w" sizes="(max-width: 880px) 100vw, 880px" data-attachment-id="578" data-permalink="https://lavietoutsimplement.home.blog/img_20190410_164223-1/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg" data-orig-size="4096,2409" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="img_20190410_164223-1" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/05/img_20190410_164223-1.jpg?w=1024" />			</a>
		</div>
	
	<header class="entry-header">
		<span class="cat-links"><a href="https://lavietoutsimplement.home.blog/category/impressions/" rel="category tag">Impressions</a></span><h2 class="entry-title"><a href="https://lavietoutsimplement.home.blog/2019/05/02/avancer-malgre-le-doute/" rel="bookmark">Avancer malgré le&nbsp;doute</a></h2>	</header>

	<div class="entry-body">
							<div class="entry-meta">
			<span class="posted-on"><a href="https://lavietoutsimplement.home.blog/2019/05/02/avancer-malgre-le-doute/" rel="bookmark"><time class="entry-date published updated" datetime="2019-05-02T16:37:01+01:00">2 Mai 2019</time></a></span><span class="byline"> <span class="author vcard"><a class="url fn n" href="https://lavietoutsimplement.home.blog/author/audelvts/">La vie, tout simplement !</a></span></span>		</div><!-- .entry-meta -->		
		<div class="entry-content">
			<p>Qui d'entre nous ne doute jamais ? Le doute vous prive-t-il parfois de tous vos moyens, vous paralyse-t-il aussi ? Nous connaissons tous le doute. Nous traversons des périodes où nous nous sentons ébranlés dans nos convictions, dans nos choix. Même les plus assurés d'entre nous savent de quoi je parle. Les raisons de ces&hellip; <a href="https://lavietoutsimplement.home.blog/2019/05/02/avancer-malgre-le-doute/" class="more-link">Lire la suite <span class="screen-reader-text">Avancer malgré le&nbsp;doute</span></a></p>		</div>

			<footer class="entry-footer">
		<span class="tags-links">Tagué <a href="https://lavietoutsimplement.home.blog/tag/avancer/" rel="tag">Avancer</a>, <a href="https://lavietoutsimplement.home.blog/tag/doute/" rel="tag">Doute</a>, <a href="https://lavietoutsimplement.home.blog/tag/haute-vienne/" rel="tag">Haute-Vienne</a>, <a href="https://lavietoutsimplement.home.blog/tag/les-gens-qui-doutent-limoges/" rel="tag">Les gens qui doutent Limoges</a>, <a href="https://lavietoutsimplement.home.blog/tag/reconversion/" rel="tag">Reconversion</a>, <a href="https://lavietoutsimplement.home.blog/tag/vaincre-sa-peur/" rel="tag">Vaincre sa peur</a></span><span class="comments-link"><a href="https://lavietoutsimplement.home.blog/2019/05/02/avancer-malgre-le-doute/#comments">10 commentaires</a></span>	</footer><!-- .entry-footer -->
		
	</div><!-- .entry-body -->
</article><!-- #post-## -->

<article id="post-554" class="post-554 post type-post status-publish format-standard has-post-thumbnail hentry category-decouvertes category-le-post-photo tag-illuminations tag-nuit tag-villes-la-nuit with-featured-image">
			<div class="post-thumbnail">
			<a href="https://lavietoutsimplement.home.blog/2019/04/14/une-ville-la-nuit/">
				<img width="880" height="312" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg?w=880&amp;h=312&amp;crop=1" class="attachment-dara-featured-image size-dara-featured-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg?w=880&amp;h=312&amp;crop=1 880w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg?w=1760&amp;h=624&amp;crop=1 1760w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg?w=150&amp;h=53&amp;crop=1 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg?w=300&amp;h=106&amp;crop=1 300w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg?w=768&amp;h=272&amp;crop=1 768w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg?w=1024&amp;h=363&amp;crop=1 1024w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg?w=1440&amp;h=510&amp;crop=1 1440w" sizes="(max-width: 880px) 100vw, 880px" data-attachment-id="560" data-permalink="https://lavietoutsimplement.home.blog/20190322_185520/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg" data-orig-size="4096,1750" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190322_185520" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190322_185520.jpg?w=1024" />			</a>
		</div>
	
	<header class="entry-header">
		<span class="cat-links"><a href="https://lavietoutsimplement.home.blog/category/decouvertes/" rel="category tag">Découvertes</a>, <a href="https://lavietoutsimplement.home.blog/category/le-post-photo/" rel="category tag">Le post photo</a></span><h2 class="entry-title"><a href="https://lavietoutsimplement.home.blog/2019/04/14/une-ville-la-nuit/" rel="bookmark">Une ville, la&nbsp;nuit</a></h2>	</header>

	<div class="entry-body">
							<div class="entry-meta">
			<span class="posted-on"><a href="https://lavietoutsimplement.home.blog/2019/04/14/une-ville-la-nuit/" rel="bookmark"><time class="entry-date published" datetime="2019-04-14T19:25:24+01:00">14 avril 2019</time><time class="updated" datetime="2019-05-03T10:24:36+01:00">3 Mai 2019</time></a></span><span class="byline"> <span class="author vcard"><a class="url fn n" href="https://lavietoutsimplement.home.blog/author/audelvts/">La vie, tout simplement !</a></span></span>		</div><!-- .entry-meta -->		
		<div class="entry-content">
			<p>Fascination pour les villes qui scintillent dans la nuit ou au coucher du soleil, pour finir le week-end en beauté... Vendôme Vendôme Vendôme Blois Bonne soirée à tous.</p>		</div>

			<footer class="entry-footer">
		<span class="tags-links">Tagué <a href="https://lavietoutsimplement.home.blog/tag/illuminations/" rel="tag">Illuminations</a>, <a href="https://lavietoutsimplement.home.blog/tag/nuit/" rel="tag">Nuit</a>, <a href="https://lavietoutsimplement.home.blog/tag/villes-la-nuit/" rel="tag">Villes la nuit</a></span><span class="comments-link"><a href="https://lavietoutsimplement.home.blog/2019/04/14/une-ville-la-nuit/#comments">6 commentaires</a></span>	</footer><!-- .entry-footer -->
		
	</div><!-- .entry-body -->
</article><!-- #post-## -->

<article id="post-543" class="post-543 post type-post status-publish format-standard has-post-thumbnail hentry category-impressions tag-bienveillance tag-constructivite tag-critique-negative tag-critique-positive with-featured-image">
			<div class="post-thumbnail">
			<a href="https://lavietoutsimplement.home.blog/2019/04/04/construire-sa-critique/">
				<img width="880" height="312" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg?w=880&amp;h=312&amp;crop=1" class="attachment-dara-featured-image size-dara-featured-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg?w=880&amp;h=312&amp;crop=1 880w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg?w=1760&amp;h=624&amp;crop=1 1760w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg?w=150&amp;h=53&amp;crop=1 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg?w=300&amp;h=106&amp;crop=1 300w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg?w=768&amp;h=272&amp;crop=1 768w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg?w=1024&amp;h=363&amp;crop=1 1024w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg?w=1440&amp;h=510&amp;crop=1 1440w" sizes="(max-width: 880px) 100vw, 880px" data-attachment-id="551" data-permalink="https://lavietoutsimplement.home.blog/20190404_173745/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg" data-orig-size="3840,1874" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190404_173745" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/04/20190404_173745.jpg?w=1024" />			</a>
		</div>
	
	<header class="entry-header">
		<span class="cat-links"><a href="https://lavietoutsimplement.home.blog/category/impressions/" rel="category tag">Impressions</a></span><h2 class="entry-title"><a href="https://lavietoutsimplement.home.blog/2019/04/04/construire-sa-critique/" rel="bookmark">Construire sa critique</a></h2>	</header>

	<div class="entry-body">
							<div class="entry-meta">
			<span class="posted-on"><a href="https://lavietoutsimplement.home.blog/2019/04/04/construire-sa-critique/" rel="bookmark"><time class="entry-date published updated" datetime="2019-04-04T16:40:00+01:00">4 avril 2019</time></a></span><span class="byline"> <span class="author vcard"><a class="url fn n" href="https://lavietoutsimplement.home.blog/author/audelvts/">La vie, tout simplement !</a></span></span>		</div><!-- .entry-meta -->		
		<div class="entry-content">
			<p>Au cours d'une conversation sur mon lieu de travail, il y a quelques jours, j'ai constaté avec surprise que l'idée d'être critiqué était perçu comme une violence, ou tout du moins une attaque. Or, il y a selon moi (et pas que moi) différentes façons d'adresser une critique à quelqu'un et c'est ce que j'ai&hellip; <a href="https://lavietoutsimplement.home.blog/2019/04/04/construire-sa-critique/" class="more-link">Lire la suite <span class="screen-reader-text">Construire sa critique</span></a></p>		</div>

			<footer class="entry-footer">
		<span class="tags-links">Tagué <a href="https://lavietoutsimplement.home.blog/tag/bienveillance/" rel="tag">Bienveillance</a>, <a href="https://lavietoutsimplement.home.blog/tag/constructivite/" rel="tag">Constructivité</a>, <a href="https://lavietoutsimplement.home.blog/tag/critique-negative/" rel="tag">Critique négative</a>, <a href="https://lavietoutsimplement.home.blog/tag/critique-positive/" rel="tag">Critique positive</a></span><span class="comments-link"><a href="https://lavietoutsimplement.home.blog/2019/04/04/construire-sa-critique/#comments">6 commentaires</a></span>	</footer><!-- .entry-footer -->
		
	</div><!-- .entry-body -->
</article><!-- #post-## -->

<article id="post-527" class="post-527 post type-post status-publish format-standard has-post-thumbnail hentry category-quand-est-ce-quon-mange tag-cuisine tag-facile tag-legumes tag-one-pot tag-pates tag-rapide tag-riz with-featured-image">
			<div class="post-thumbnail">
			<a href="https://lavietoutsimplement.home.blog/2019/03/29/a-la-fortune-du-pot/">
				<img width="880" height="312" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg?w=880&amp;h=312&amp;crop=1" class="attachment-dara-featured-image size-dara-featured-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg?w=880&amp;h=312&amp;crop=1 880w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg?w=1760&amp;h=624&amp;crop=1 1760w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg?w=150&amp;h=53&amp;crop=1 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg?w=300&amp;h=106&amp;crop=1 300w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg?w=768&amp;h=272&amp;crop=1 768w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg?w=1024&amp;h=363&amp;crop=1 1024w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg?w=1440&amp;h=510&amp;crop=1 1440w" sizes="(max-width: 880px) 100vw, 880px" data-attachment-id="529" data-permalink="https://lavietoutsimplement.home.blog/20190328_091529/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg" data-orig-size="3008,1588" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190328_091529" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190328_091529.jpg?w=1024" />			</a>
		</div>
	
	<header class="entry-header">
		<span class="cat-links"><a href="https://lavietoutsimplement.home.blog/category/quand-est-ce-quon-mange/" rel="category tag">Quand est-ce qu'on mange ?</a></span><h2 class="entry-title"><a href="https://lavietoutsimplement.home.blog/2019/03/29/a-la-fortune-du-pot/" rel="bookmark">A la fortune du pot&nbsp;!</a></h2>	</header>

	<div class="entry-body">
							<div class="entry-meta">
			<span class="posted-on"><a href="https://lavietoutsimplement.home.blog/2019/03/29/a-la-fortune-du-pot/" rel="bookmark"><time class="entry-date published updated" datetime="2019-03-29T15:19:41+01:00">29 mars 2019</time></a></span><span class="byline"> <span class="author vcard"><a class="url fn n" href="https://lavietoutsimplement.home.blog/author/audelvts/">La vie, tout simplement !</a></span></span>		</div><!-- .entry-meta -->		
		<div class="entry-content">
			<p>Si comme moi vous vivez de gros casse-tête pour trouver des idées de menus tous les soirs, que vous avez envie de manger équilibré mais simple et que vous n'avez pas beaucoup de temps pour tout préparer, j'ai peut-être une solution. J'ai en effet découvert par hasard le "one-pot", c'est à dire la cuisson tout&hellip; <a href="https://lavietoutsimplement.home.blog/2019/03/29/a-la-fortune-du-pot/" class="more-link">Lire la suite <span class="screen-reader-text">A la fortune du pot&nbsp;!</span></a></p>		</div>

			<footer class="entry-footer">
		<span class="tags-links">Tagué <a href="https://lavietoutsimplement.home.blog/tag/cuisine/" rel="tag">cuisine</a>, <a href="https://lavietoutsimplement.home.blog/tag/facile/" rel="tag">facile</a>, <a href="https://lavietoutsimplement.home.blog/tag/legumes/" rel="tag">légumes</a>, <a href="https://lavietoutsimplement.home.blog/tag/one-pot/" rel="tag">one pot</a>, <a href="https://lavietoutsimplement.home.blog/tag/pates/" rel="tag">pâtes</a>, <a href="https://lavietoutsimplement.home.blog/tag/rapide/" rel="tag">rapide</a>, <a href="https://lavietoutsimplement.home.blog/tag/riz/" rel="tag">riz</a></span><span class="comments-link"><a href="https://lavietoutsimplement.home.blog/2019/03/29/a-la-fortune-du-pot/#comments">2 commentaires</a></span>	</footer><!-- .entry-footer -->
		
	</div><!-- .entry-body -->
</article><!-- #post-## -->

<article id="post-507" class="post-507 post type-post status-publish format-standard has-post-thumbnail hentry category-decouvertes category-le-post-photo tag-elodie-studler tag-les-portes-du-mont-saint-michel tag-mont-saint-michel tag-normandy-cow with-featured-image">
			<div class="post-thumbnail">
			<a href="https://lavietoutsimplement.home.blog/2019/03/24/normandy-cow/">
				<img width="880" height="312" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg?w=880&amp;h=312&amp;crop=1" class="attachment-dara-featured-image size-dara-featured-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg?w=880&amp;h=312&amp;crop=1 880w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg?w=1760&amp;h=624&amp;crop=1 1760w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg?w=150&amp;h=53&amp;crop=1 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg?w=300&amp;h=106&amp;crop=1 300w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg?w=768&amp;h=272&amp;crop=1 768w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg?w=1024&amp;h=363&amp;crop=1 1024w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg?w=1440&amp;h=511&amp;crop=1 1440w" sizes="(max-width: 880px) 100vw, 880px" data-attachment-id="509" data-permalink="https://lavietoutsimplement.home.blog/objectout58_19_2019_125800-653000/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg" data-orig-size="3214,1954" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="objectout58_19_2019_125800.653000" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/objectout58_19_2019_125800.653000.jpg?w=1024" />			</a>
		</div>
	
	<header class="entry-header">
		<span class="cat-links"><a href="https://lavietoutsimplement.home.blog/category/decouvertes/" rel="category tag">Découvertes</a>, <a href="https://lavietoutsimplement.home.blog/category/le-post-photo/" rel="category tag">Le post photo</a></span><h2 class="entry-title"><a href="https://lavietoutsimplement.home.blog/2019/03/24/normandy-cow/" rel="bookmark">&laquo;&nbsp;Normandy Cow&nbsp;&raquo;</a></h2>	</header>

	<div class="entry-body">
							<div class="entry-meta">
			<span class="posted-on"><a href="https://lavietoutsimplement.home.blog/2019/03/24/normandy-cow/" rel="bookmark"><time class="entry-date published" datetime="2019-03-24T12:21:59+01:00">24 mars 2019</time><time class="updated" datetime="2019-05-03T10:23:27+01:00">3 Mai 2019</time></a></span><span class="byline"> <span class="author vcard"><a class="url fn n" href="https://lavietoutsimplement.home.blog/author/audelvts/">La vie, tout simplement !</a></span></span>		</div><!-- .entry-meta -->		
		<div class="entry-content">
			<p>Vous allez bien vite comprendre que le Mont Saint-Michel est une source d'inspiration quasiment inépuisable pour moi. Il se passe quelque chose de fort entre cet endroit et notre famille. Quand nous y allons, c'est toujours la même magie. L'autre jour, je vous ai présenté une Farandole d'enseignes que j'avais photographiées là-bas. Aujourd'hui, je vous&hellip; <a href="https://lavietoutsimplement.home.blog/2019/03/24/normandy-cow/" class="more-link">Lire la suite <span class="screen-reader-text">&laquo;&nbsp;Normandy Cow&nbsp;&raquo;</span></a></p>		</div>

			<footer class="entry-footer">
		<span class="tags-links">Tagué <a href="https://lavietoutsimplement.home.blog/tag/elodie-studler/" rel="tag">Elodie Studler</a>, <a href="https://lavietoutsimplement.home.blog/tag/les-portes-du-mont-saint-michel/" rel="tag">Les Portes du Mont Saint-Michel</a>, <a href="https://lavietoutsimplement.home.blog/tag/mont-saint-michel/" rel="tag">Mont Saint-Michel</a>, <a href="https://lavietoutsimplement.home.blog/tag/normandy-cow/" rel="tag">Normandy Cow</a></span><span class="comments-link"><a href="https://lavietoutsimplement.home.blog/2019/03/24/normandy-cow/#comments">Un commentaire</a></span>	</footer><!-- .entry-footer -->
		
	</div><!-- .entry-body -->
</article><!-- #post-## -->

<article id="post-490" class="post-490 post type-post status-publish format-standard has-post-thumbnail hentry category-decouvertes tag-calvados tag-honfleur tag-normandie with-featured-image">
			<div class="post-thumbnail">
			<a href="https://lavietoutsimplement.home.blog/2019/03/18/un-soir-a-honfleur/">
				<img width="880" height="312" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg?w=880&amp;h=312&amp;crop=1" class="attachment-dara-featured-image size-dara-featured-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg?w=880&amp;h=312&amp;crop=1 880w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg?w=1760&amp;h=624&amp;crop=1 1760w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg?w=150&amp;h=53&amp;crop=1 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg?w=300&amp;h=106&amp;crop=1 300w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg?w=768&amp;h=272&amp;crop=1 768w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg?w=1024&amp;h=363&amp;crop=1 1024w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg?w=1440&amp;h=510&amp;crop=1 1440w" sizes="(max-width: 880px) 100vw, 880px" data-attachment-id="491" data-permalink="https://lavietoutsimplement.home.blog/20190316_000216/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg" data-orig-size="4096,2869" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190316_000216" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190316_000216.jpg?w=1024" />			</a>
		</div>
	
	<header class="entry-header">
		<span class="cat-links"><a href="https://lavietoutsimplement.home.blog/category/decouvertes/" rel="category tag">Découvertes</a></span><h2 class="entry-title"><a href="https://lavietoutsimplement.home.blog/2019/03/18/un-soir-a-honfleur/" rel="bookmark">Un soir à&nbsp;Honfleur</a></h2>	</header>

	<div class="entry-body">
							<div class="entry-meta">
			<span class="posted-on"><a href="https://lavietoutsimplement.home.blog/2019/03/18/un-soir-a-honfleur/" rel="bookmark"><time class="entry-date published" datetime="2019-03-18T17:01:45+01:00">18 mars 2019</time><time class="updated" datetime="2019-03-28T08:59:57+01:00">28 mars 2019</time></a></span><span class="byline"> <span class="author vcard"><a class="url fn n" href="https://lavietoutsimplement.home.blog/author/audelvts/">La vie, tout simplement !</a></span></span>		</div><!-- .entry-meta -->		
		<div class="entry-content">
			<p>Vous arrive-t-il parfois de partir sur un coup de tête, de décider un peu au dernier moment de prendre la route pour vous évader ? C'est ce que nous avons fait l'autre soir, nous sommes partis et le vent nous a emmenés à Honfleur, dans le Calvados. Le vieux port est magnifique, je le connaissais&hellip; <a href="https://lavietoutsimplement.home.blog/2019/03/18/un-soir-a-honfleur/" class="more-link">Lire la suite <span class="screen-reader-text">Un soir à&nbsp;Honfleur</span></a></p>		</div>

			<footer class="entry-footer">
		<span class="tags-links">Tagué <a href="https://lavietoutsimplement.home.blog/tag/calvados/" rel="tag">Calvados</a>, <a href="https://lavietoutsimplement.home.blog/tag/honfleur/" rel="tag">Honfleur</a>, <a href="https://lavietoutsimplement.home.blog/tag/normandie/" rel="tag">Normandie</a></span><span class="comments-link"><a href="https://lavietoutsimplement.home.blog/2019/03/18/un-soir-a-honfleur/#comments">2 commentaires</a></span>	</footer><!-- .entry-footer -->
		
	</div><!-- .entry-body -->
</article><!-- #post-## -->

<article id="post-473" class="post-473 post type-post status-publish format-standard has-post-thumbnail hentry category-le-post-photo category-tres-nature tag-coucher-de-soleil tag-sunset with-featured-image">
			<div class="post-thumbnail">
			<a href="https://lavietoutsimplement.home.blog/2019/03/17/sunset/">
				<img width="880" height="312" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg?w=880&amp;h=312&amp;crop=1" class="attachment-dara-featured-image size-dara-featured-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg?w=880&amp;h=312&amp;crop=1 880w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg?w=1760&amp;h=624&amp;crop=1 1760w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg?w=150&amp;h=53&amp;crop=1 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg?w=300&amp;h=106&amp;crop=1 300w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg?w=768&amp;h=272&amp;crop=1 768w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg?w=1024&amp;h=363&amp;crop=1 1024w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg?w=1440&amp;h=510&amp;crop=1 1440w" sizes="(max-width: 880px) 100vw, 880px" data-attachment-id="487" data-permalink="https://lavietoutsimplement.home.blog/20190226_190613/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg" data-orig-size="4096,3013" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190226_190613" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/20190226_190613.jpg?w=1024" />			</a>
		</div>
	
	<header class="entry-header">
		<span class="cat-links"><a href="https://lavietoutsimplement.home.blog/category/le-post-photo/" rel="category tag">Le post photo</a>, <a href="https://lavietoutsimplement.home.blog/category/tres-nature/" rel="category tag">Très nature</a></span><h2 class="entry-title"><a href="https://lavietoutsimplement.home.blog/2019/03/17/sunset/" rel="bookmark">Sunset</a></h2>	</header>

	<div class="entry-body">
							<div class="entry-meta">
			<span class="posted-on"><a href="https://lavietoutsimplement.home.blog/2019/03/17/sunset/" rel="bookmark"><time class="entry-date published" datetime="2019-03-17T18:20:46+01:00">17 mars 2019</time><time class="updated" datetime="2019-05-03T10:25:36+01:00">3 Mai 2019</time></a></span><span class="byline"> <span class="author vcard"><a class="url fn n" href="https://lavietoutsimplement.home.blog/author/audelvts/">La vie, tout simplement !</a></span></span>		</div><!-- .entry-meta -->		
		<div class="entry-content">
			<p>Voilà plusieurs années que je vis face à la plaine, plein ouest. Alors c'est vrai, la plaine c'est plat... Parfois ça manque un peu de relief, de vues plongeantes, de collines, de forêts. Heureusement, il suffit de bouger de quelques petits kilomètres pour trouver tout ça. Donc tous les jours, c'est le plat pays. Mais&hellip; <a href="https://lavietoutsimplement.home.blog/2019/03/17/sunset/" class="more-link">Lire la suite <span class="screen-reader-text">Sunset</span></a></p>		</div>

			<footer class="entry-footer">
		<span class="tags-links">Tagué <a href="https://lavietoutsimplement.home.blog/tag/coucher-de-soleil/" rel="tag">Coucher de soleil</a>, <a href="https://lavietoutsimplement.home.blog/tag/sunset/" rel="tag">Sunset</a></span><span class="comments-link"><a href="https://lavietoutsimplement.home.blog/2019/03/17/sunset/#comments">3 commentaires</a></span>	</footer><!-- .entry-footer -->
		
	</div><!-- .entry-body -->
</article><!-- #post-## -->

<article id="post-466" class="post-466 post type-post status-publish format-standard has-post-thumbnail hentry category-je-cree category-le-post-photo tag-montage-photo tag-orange with-featured-image">
			<div class="post-thumbnail">
			<a href="https://lavietoutsimplement.home.blog/2019/03/09/instants-vitamines/">
				<img width="880" height="312" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/collage-instants-vitaminc3a9s.jpg?w=880&amp;h=312&amp;crop=1" class="attachment-dara-featured-image size-dara-featured-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/collage-instants-vitaminc3a9s.jpg?w=880&amp;h=312&amp;crop=1 880w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/collage-instants-vitaminc3a9s.jpg?w=150&amp;h=53&amp;crop=1 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/collage-instants-vitaminc3a9s.jpg?w=300&amp;h=106&amp;crop=1 300w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/collage-instants-vitaminc3a9s.jpg?w=768&amp;h=272&amp;crop=1 768w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/collage-instants-vitaminc3a9s.jpg?w=1024&amp;h=363&amp;crop=1 1024w" sizes="(max-width: 880px) 100vw, 880px" data-attachment-id="467" data-permalink="https://lavietoutsimplement.home.blog/2019/03/09/instants-vitamines/collage-instants-vitamines/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/collage-instants-vitaminc3a9s.jpg" data-orig-size="1200,828" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Collage instants vitaminés" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/collage-instants-vitaminc3a9s.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/03/collage-instants-vitaminc3a9s.jpg?w=1024" />			</a>
		</div>
	
	<header class="entry-header">
		<span class="cat-links"><a href="https://lavietoutsimplement.home.blog/category/je-cree/" rel="category tag">Je crée</a>, <a href="https://lavietoutsimplement.home.blog/category/le-post-photo/" rel="category tag">Le post photo</a></span><h2 class="entry-title"><a href="https://lavietoutsimplement.home.blog/2019/03/09/instants-vitamines/" rel="bookmark">Instants vitaminés</a></h2>	</header>

	<div class="entry-body">
							<div class="entry-meta">
			<span class="posted-on"><a href="https://lavietoutsimplement.home.blog/2019/03/09/instants-vitamines/" rel="bookmark"><time class="entry-date published" datetime="2019-03-09T17:57:12+01:00">9 mars 2019</time><time class="updated" datetime="2019-05-03T10:26:02+01:00">3 Mai 2019</time></a></span><span class="byline"> <span class="author vcard"><a class="url fn n" href="https://lavietoutsimplement.home.blog/author/audelvts/">La vie, tout simplement !</a></span></span>		</div><!-- .entry-meta -->		
		<div class="entry-content">
			<p>Pour un week-end punchy, un montage de mes photos récentes. Je vous souhaite plein d'énergie ! Bon week-end...</p>		</div>

			<footer class="entry-footer">
		<span class="tags-links">Tagué <a href="https://lavietoutsimplement.home.blog/tag/montage-photo/" rel="tag">Montage photo</a>, <a href="https://lavietoutsimplement.home.blog/tag/orange/" rel="tag">Orange</a></span><span class="comments-link"><a href="https://lavietoutsimplement.home.blog/2019/03/09/instants-vitamines/#comments">5 commentaires</a></span>	</footer><!-- .entry-footer -->
		
	</div><!-- .entry-body -->
</article><!-- #post-## -->

	<nav class="navigation posts-navigation" aria-label="Articles">
		<h2 class="screen-reader-text">Navigation des articles</h2>
		<div class="nav-links"><div class="nav-previous"><a href="https://lavietoutsimplement.home.blog/page/2/" >Articles Pr&eacute;c&eacute;dents</a></div></div>
	</nav>
		</main>
	</div>

<aside id="secondary" class="widget-area" role="complementary">
	<aside id="text-3" class="widget widget_text"><h3 class="widget-title">Bienvenue !</h3>			<div class="textwidget"><p><img loading="lazy" class="alignnone size-medium wp-image-210" src="https://lavietoutsimplementhome.files.wordpress.com/2019/01/photo-audebbs03.jpg?w=294" alt="" width="294" height="300" srcset="https://lavietoutsimplementhome.files.wordpress.com/2019/01/photo-audebbs03.jpg?w=294 294w, https://lavietoutsimplementhome.files.wordpress.com/2019/01/photo-audebbs03.jpg?w=588 588w, https://lavietoutsimplementhome.files.wordpress.com/2019/01/photo-audebbs03.jpg?w=147 147w" sizes="(max-width: 294px) 100vw, 294px" />Je partage ici un peu de mon univers, tout ce qui fait que la vie est simple mais savoureuse.</p>
<p>Entrez !</p>
</div>
		</aside><aside id="text-5" class="widget widget_text"><h3 class="widget-title">Le post photo</h3>			<div class="textwidget"><p><img loading="lazy" class="alignnone size-medium wp-image-369" src="https://lavietoutsimplementhome.files.wordpress.com/2019/02/old-camera-1379445539hqh.jpg?w=300" alt="" width="300" height="199" srcset="https://lavietoutsimplementhome.files.wordpress.com/2019/02/old-camera-1379445539hqh.jpg?w=300 300w, https://lavietoutsimplementhome.files.wordpress.com/2019/02/old-camera-1379445539hqh.jpg?w=600 600w, https://lavietoutsimplementhome.files.wordpress.com/2019/02/old-camera-1379445539hqh.jpg?w=150 150w" sizes="(max-width: 300px) 100vw, 300px" />De temps à autre, je partage avec vous quelques photos que j&rsquo;ai prises&#8230; pour le plaisir des yeux, tout simplement !</p>
</div>
		</aside><aside id="follow_button_widget-3" class="widget widget_follow_button_widget">
		<a class="wordpress-follow-button" href="https://lavietoutsimplement.home.blog" data-blog="157046534" data-lang="fr" >Follow La vie, tout simplement ! on WordPress.com</a>
		<script type="text/javascript">(function(d){ window.wpcomPlatform = {"titles":{"timelines":"Fils d\u2019actualit\u00e9 int\u00e9grables","followButton":"Bouton S\u2019abonner","wpEmbeds":"Int\u00e9grations WordPress"}}; var f = d.getElementsByTagName('SCRIPT')[0], p = d.createElement('SCRIPT');p.type = 'text/javascript';p.async = true;p.src = '//widgets.wp.com/platform.js';f.parentNode.insertBefore(p,f);}(document));</script>

		</aside><aside id="search-3" class="widget widget_search"><h3 class="widget-title">Rechercher</h3><form role="search" method="get" class="search-form" action="https://lavietoutsimplement.home.blog/">
				<label>
					<span class="screen-reader-text">Rechercher&nbsp;:</span>
					<input type="search" class="search-field" placeholder="Recherche&hellip;" value="" name="s" />
				</label>
				<input type="submit" class="search-submit" value="Rechercher" />
			</form></aside>
		<aside id="recent-posts-3" class="widget widget_recent_entries">
		<h3 class="widget-title">Articles récents</h3>
		<ul>
											<li>
					<a href="https://lavietoutsimplement.home.blog/2022/02/17/resilience/">Résilience</a>
											<span class="post-date">17 février 2022</span>
									</li>
											<li>
					<a href="https://lavietoutsimplement.home.blog/2019/06/19/cest-lhistoire-dune-lyceenne/">C&rsquo;est l&rsquo;histoire d&rsquo;une&nbsp;lycéenne&#8230;</a>
											<span class="post-date">19 juin 2019</span>
									</li>
											<li>
					<a href="https://lavietoutsimplement.home.blog/2019/05/02/avancer-malgre-le-doute/">Avancer malgré le&nbsp;doute</a>
											<span class="post-date">2 Mai 2019</span>
									</li>
											<li>
					<a href="https://lavietoutsimplement.home.blog/2019/04/14/une-ville-la-nuit/">Une ville, la&nbsp;nuit</a>
											<span class="post-date">14 avril 2019</span>
									</li>
											<li>
					<a href="https://lavietoutsimplement.home.blog/2019/04/04/construire-sa-critique/">Construire sa critique</a>
											<span class="post-date">4 avril 2019</span>
									</li>
					</ul>

		</aside><aside id="block-2" class="widget widget_block"></aside><aside id="facebook-likebox-3" class="widget widget_facebook_likebox"><h3 class="widget-title"><a href="https://www.facebook.com/La-vie-tout-simplement-Le-blog-337291646980514/">La vie tout simplement Le blog</a></h3>		<div id="fb-root"></div>
		<div class="fb-page" data-href="https://www.facebook.com/La-vie-tout-simplement-Le-blog-337291646980514/" data-width="340"  data-height="130" data-hide-cover="true" data-show-facepile="false" data-tabs="false" data-hide-cta="false" data-small-header="false">
		<div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/La-vie-tout-simplement-Le-blog-337291646980514/"><a href="https://www.facebook.com/La-vie-tout-simplement-Le-blog-337291646980514/">La vie tout simplement Le blog</a></blockquote></div>
		</div>
		</aside><aside id="block-4" class="widget widget_block">
<ul class="wp-block-social-links is-layout-flex wp-block-social-links-is-layout-flex"><li class="wp-social-link wp-social-link-instagram  wp-block-social-link"><a href="https://www.instagram.com/lavietoutsimplementblog/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewbox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Instagram</span></a></li></ul>
</aside></aside>

	</div>

	
<div id="tertiary" class="widget-area footer-widget-area" role="complementary">
		<div id="widget-area-2" class="widget-area">
		<aside id="media_gallery-5" class="widget widget_media_gallery"><div data-carousel-extra='{&quot;blog_id&quot;:157046534,&quot;permalink&quot;:&quot;https://lavietoutsimplement.home.blog/2019/03/09/instants-vitamines/&quot;}' id='gallery-466-1' class='gallery galleryid-466 gallery-columns-6 gallery-size-thumbnail'><figure class='gallery-item'>
			<div class='gallery-icon landscape'>
				<a href='https://lavietoutsimplement.home.blog/20190122_210411/'><img width="150" height="113" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210411.jpg?w=150" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210411.jpg?w=150 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210411.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" data-attachment-id="249" data-permalink="https://lavietoutsimplement.home.blog/20190122_210411/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210411.jpg" data-orig-size="4128,3096" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190122_210411" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210411.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210411.jpg?w=1024" /></a>
			</div></figure><figure class='gallery-item'>
			<div class='gallery-icon landscape'>
				<a href='https://lavietoutsimplement.home.blog/20190115_141718/'><img width="150" height="150" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190115_141718.jpg?w=150" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190115_141718.jpg?w=150 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190115_141718.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" data-attachment-id="247" data-permalink="https://lavietoutsimplement.home.blog/20190115_141718/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190115_141718.jpg" data-orig-size="3096,3096" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="20190115_141718" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190115_141718.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190115_141718.jpg?w=1024" /></a>
			</div></figure><figure class='gallery-item'>
			<div class='gallery-icon landscape'>
				<a href='https://lavietoutsimplement.home.blog/20190122_210721/'><img width="150" height="113" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210721.jpg?w=150" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210721.jpg?w=150 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210721.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" data-attachment-id="253" data-permalink="https://lavietoutsimplement.home.blog/20190122_210721/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210721.jpg" data-orig-size="4128,3096" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190122_210721" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210721.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_210721.jpg?w=1024" /></a>
			</div></figure><figure class='gallery-item'>
			<div class='gallery-icon landscape'>
				<a href='https://lavietoutsimplement.home.blog/20190122_203321/'><img width="150" height="64" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_203321.jpg?w=150" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_203321.jpg?w=150 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_203321.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" data-attachment-id="251" data-permalink="https://lavietoutsimplement.home.blog/20190122_203321/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_203321.jpg" data-orig-size="4698,1996" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190122_203321" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_203321.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_203321.jpg?w=1024" /></a>
			</div></figure><figure class='gallery-item'>
			<div class='gallery-icon landscape'>
				<a href='https://lavietoutsimplement.home.blog/20190122_212308/'><img width="150" height="113" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_212308.jpg?w=150" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_212308.jpg?w=150 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_212308.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" data-attachment-id="252" data-permalink="https://lavietoutsimplement.home.blog/20190122_212308/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_212308.jpg" data-orig-size="4128,3096" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190122_212308" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_212308.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_212308.jpg?w=1024" /></a>
			</div></figure><figure class='gallery-item'>
			<div class='gallery-icon landscape'>
				<a href='https://lavietoutsimplement.home.blog/20190122_204129/'><img width="150" height="92" src="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_204129.jpg?w=150" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" srcset="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_204129.jpg?w=150 150w, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_204129.jpg?w=300 300w" sizes="(max-width: 150px) 100vw, 150px" data-attachment-id="254" data-permalink="https://lavietoutsimplement.home.blog/20190122_204129/" data-orig-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_204129.jpg" data-orig-size="3134,1917" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="20190122_204129" data-image-description="" data-image-caption="" data-medium-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_204129.jpg?w=300" data-large-file="https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/20190122_204129.jpg?w=1024" /></a>
			</div></figure>
		</div>
</aside>	</div><!-- #widget-area-2 -->
	
	
	</div><!-- #tertiary -->

	<footer id="colophon" class="site-footer" role="contentinfo">
				<div class="site-info">
	<a href="https://wordpress.com/?ref=footer_custom_com" rel="nofollow">Site Web créé avec WordPress.com</a>.
	
	</div><!-- .site-info -->	</footer>
</div>
		<script type="text/javascript">
		var infiniteScroll = {"settings":{"id":"main","ajaxurl":"https://lavietoutsimplement.home.blog/?infinity=scrolling","type":"click","wrapper":true,"wrapper_class":"infinite-wrap","footer":"page","click_handle":"1","text":"Articles pr\u00e9c\u00e9dents","totop":"Retour en Haut","currentday":"09.03.19","order":"DESC","scripts":[],"styles":[],"google_analytics":false,"offset":1,"history":{"host":"lavietoutsimplement.home.blog","path":"/page/%d/","use_trailing_slashes":true,"parameters":""},"query_args":{"error":"","m":"","p":0,"post_parent":"","subpost":"","subpost_id":"","attachment":"","attachment_id":0,"name":"","pagename":"","page_id":0,"second":"","minute":"","hour":"","day":0,"monthnum":0,"year":0,"w":0,"category_name":"","tag":"","cat":"","tag_id":"","author":"","author_name":"","feed":"","tb":"","paged":0,"meta_key":"","meta_value":"","preview":"","s":"","sentence":"","title":"","fields":"all","menu_order":"","embed":"","category__in":[],"category__not_in":[],"category__and":[],"post__in":[],"post__not_in":[],"post_name__in":[],"tag__in":[],"tag__not_in":[],"tag__and":[],"tag_slug__in":[],"tag_slug__and":[],"post_parent__in":[],"post_parent__not_in":[],"author__in":[],"author__not_in":[],"search_columns":[],"lazy_load_term_meta":false,"posts_per_page":10,"ignore_sticky_posts":false,"suppress_filters":false,"cache_results":true,"update_post_term_cache":true,"update_menu_item_cache":false,"update_post_meta_cache":true,"post_type":"","nopaging":false,"comments_per_page":"50","no_found_rows":false,"order":"DESC"},"query_before":"2025-12-27 20:58:01","last_post_date":"2019-03-09 17:57:12","body_class":"infinite-scroll","loading_text":"Chargement d\u2019une nouvelle page","stats":"blog=157046534\u0026v=wpcom\u0026tz=1\u0026user_id=0\u0026arch_home=1\u0026subd=lavietoutsimplementhome\u0026x_pagetype=infinite-click"}};
		</script>
		<!--  -->
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/files/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/pub/dara/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script type="text/javascript" src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=202552924dcd77a86c6f1d3698ec27fc5da92b28585ddad3ee636c0397cf312193b2a1" id="grofiles-cards-js"></script>
<script type="text/javascript" id="wpgroho-js-extra">
/* <![CDATA[ */
var WPGroHo = {"my_hash":""};
//# sourceURL=wpgroho-js-extra
/* ]]> */
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i'></script>

	<script>
		// Initialize and attach hovercards to all gravatars
		( function() {
			function init() {
				if ( typeof Gravatar === 'undefined' ) {
					return;
				}

				if ( typeof Gravatar.init !== 'function' ) {
					return;
				}

				Gravatar.profile_cb = function ( hash, id ) {
					WPGroHo.syncProfileData( hash, id );
				};

				Gravatar.my_hash = WPGroHo.my_hash;
				Gravatar.init(
					'body',
					'#wp-admin-bar-my-account',
					{
						i18n: {
							'Edit your profile →': 'Modifier votre profil →',
							'View profile →': 'Afficher le profil →',
							'Contact': 'Contact',
							'Send money': 'Envoyer de l’argent',
							'Sorry, we are unable to load this Gravatar profile.': 'Toutes nos excuses, nous ne parvenons pas à charger ce profil Gravatar.',
							'Gravatar not found.': 'Gravatar not found.',
							'Too Many Requests.': 'Trop de requêtes.',
							'Internal Server Error.': 'Erreur de serveur interne.',
							'Is this you?': 'C\'est bien vous ?',
							'Claim your free profile.': 'Claim your free profile.',
							'Email': 'E-mail',
							'Home Phone': 'Téléphone fixe',
							'Work Phone': 'Téléphone professionnel',
							'Cell Phone': 'Cell Phone',
							'Contact Form': 'Formulaire de contact',
							'Calendar': 'Calendrier',
						},
					}
				);
			}

			if ( document.readyState !== 'loading' ) {
				init();
			} else {
				document.addEventListener( 'DOMContentLoaded', init );
			}
		} )();
	</script>

		<div style="display:none">
	</div>
		<!-- CCPA [start] -->
		<script type="text/javascript">
			( function () {

				var setupPrivacy = function() {

					// Minimal Mozilla Cookie library
					// https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie/Simple_document.cookie_framework
					var cookieLib = window.cookieLib = {getItem:function(e){return e&&decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*"+encodeURIComponent(e).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1"))||null},setItem:function(e,o,n,t,r,i){if(!e||/^(?:expires|max\-age|path|domain|secure)$/i.test(e))return!1;var c="";if(n)switch(n.constructor){case Number:c=n===1/0?"; expires=Fri, 31 Dec 9999 23:59:59 GMT":"; max-age="+n;break;case String:c="; expires="+n;break;case Date:c="; expires="+n.toUTCString()}return"rootDomain"!==r&&".rootDomain"!==r||(r=(".rootDomain"===r?".":"")+document.location.hostname.split(".").slice(-2).join(".")),document.cookie=encodeURIComponent(e)+"="+encodeURIComponent(o)+c+(r?"; domain="+r:"")+(t?"; path="+t:"")+(i?"; secure":""),!0}};

					// Implement IAB USP API.
					window.__uspapi = function( command, version, callback ) {

						// Validate callback.
						if ( typeof callback !== 'function' ) {
							return;
						}

						// Validate the given command.
						if ( command !== 'getUSPData' || version !== 1 ) {
							callback( null, false );
							return;
						}

						// Check for GPC. If set, override any stored cookie.
						if ( navigator.globalPrivacyControl ) {
							callback( { version: 1, uspString: '1YYN' }, true );
							return;
						}

						// Check for cookie.
						var consent = cookieLib.getItem( 'usprivacy' );

						// Invalid cookie.
						if ( null === consent ) {
							callback( null, false );
							return;
						}

						// Everything checks out. Fire the provided callback with the consent data.
						callback( { version: 1, uspString: consent }, true );
					};

					// Initialization.
					document.addEventListener( 'DOMContentLoaded', function() {

						// Internal functions.
						var setDefaultOptInCookie = function() {
							var value = '1YNN';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 365 * 24 * 60 * 60, '/', domain );
						};

						var setDefaultOptOutCookie = function() {
							var value = '1YYN';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 24 * 60 * 60, '/', domain );
						};

						var setDefaultNotApplicableCookie = function() {
							var value = '1---';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 24 * 60 * 60, '/', domain );
						};

						var setCcpaAppliesCookie = function( applies ) {
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'ccpa_applies', applies, 24 * 60 * 60, '/', domain );
						}

						var maybeCallDoNotSellCallback = function() {
							if ( 'function' === typeof window.doNotSellCallback ) {
								return window.doNotSellCallback();
							}

							return false;
						}

						// Look for usprivacy cookie first.
						var usprivacyCookie = cookieLib.getItem( 'usprivacy' );

						// Found a usprivacy cookie.
						if ( null !== usprivacyCookie ) {

							// If the cookie indicates that CCPA does not apply, then bail.
							if ( '1---' === usprivacyCookie ) {
								return;
							}

							// CCPA applies, so call our callback to add Do Not Sell link to the page.
							maybeCallDoNotSellCallback();

							// We're all done, no more processing needed.
							return;
						}

						// We don't have a usprivacy cookie, so check to see if we have a CCPA applies cookie.
						var ccpaCookie = cookieLib.getItem( 'ccpa_applies' );

						// No CCPA applies cookie found, so we'll need to geolocate if this visitor is from California.
						// This needs to happen client side because we do not have region geo data in our $SERVER headers,
						// only country data -- therefore we can't vary cache on the region.
						if ( null === ccpaCookie ) {

							var request = new XMLHttpRequest();
							request.open( 'GET', 'https://public-api.wordpress.com/geo/', true );

							request.onreadystatechange = function () {
								if ( 4 === this.readyState ) {
									if ( 200 === this.status ) {

										// Got a geo response. Parse out the region data.
										var data = JSON.parse( this.response );
										var region      = data.region ? data.region.toLowerCase() : '';
										var ccpa_applies = ['california', 'colorado', 'connecticut', 'delaware', 'indiana', 'iowa', 'montana', 'new jersey', 'oregon', 'tennessee', 'texas', 'utah', 'virginia'].indexOf( region ) > -1;
										// Set CCPA applies cookie. This keeps us from having to make a geo request too frequently.
										setCcpaAppliesCookie( ccpa_applies );

										// Check if CCPA applies to set the proper usprivacy cookie.
										if ( ccpa_applies ) {
											if ( maybeCallDoNotSellCallback() ) {
												// Do Not Sell link added, so set default opt-in.
												setDefaultOptInCookie();
											} else {
												// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
												setDefaultOptOutCookie();
											}
										} else {
											// CCPA does not apply.
											setDefaultNotApplicableCookie();
										}
									} else {
										// Could not geo, so let's assume for now that CCPA applies to be safe.
										setCcpaAppliesCookie( true );
										if ( maybeCallDoNotSellCallback() ) {
											// Do Not Sell link added, so set default opt-in.
											setDefaultOptInCookie();
										} else {
											// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
											setDefaultOptOutCookie();
										}
									}
								}
							};

							// Send the geo request.
							request.send();
						} else {
							// We found a CCPA applies cookie.
							if ( ccpaCookie === 'true' ) {
								if ( maybeCallDoNotSellCallback() ) {
									// Do Not Sell link added, so set default opt-in.
									setDefaultOptInCookie();
								} else {
									// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
									setDefaultOptOutCookie();
								}
							} else {
								// CCPA does not apply.
								setDefaultNotApplicableCookie();
							}
						}
					} );
				};

				// Kickoff initialization.
				if ( window.defQueue && defQueue.isLOHP && defQueue.isLOHP === 2020 ) {
					defQueue.items.push( setupPrivacy );
				} else {
					setupPrivacy();
				}

			} )();
		</script>

		<!-- CCPA [end] -->
				<div id="actionbar" dir="ltr" style="display: none;"
			class="actnbr-pub-dara actnbr-has-follow actnbr-has-actions">
		<ul>
								<li class="actnbr-btn actnbr-hidden">
								<a class="actnbr-action actnbr-actn-follow" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>S&#039;abonner</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Abonné</span>
		</a>
							<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
							<div class="tip-arrow"></div>
							<div class="tip-inner actnbr-follow-bubble">
															<ul>
											<li class="actnbr-sitename">
			<a href="http://lavietoutsimplement.home.blog">
				<img loading='lazy' alt='' src='https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=50' srcset='https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=50 1x, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=75 1.5x, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=100 2x, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=150 3x, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=200 4x' class='avatar avatar-50' height='50' width='50' />				La vie, tout simplement !			</a>
		</li>
										<div class="actnbr-message no-display"></div>
									<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
																						<div class="actnbr-follow-count">Rejoignez 29 autres abonnés</div>
																					<div>
										<input type="email" name="email" placeholder="Saisissez votre adresse e-mail" class="actnbr-email-field" aria-label="Saisissez votre adresse e-mail" />
										</div>
										<input type="hidden" name="action" value="subscribe" />
										<input type="hidden" name="blog_id" value="157046534" />
										<input type="hidden" name="source" value="https://lavietoutsimplement.home.blog/" />
										<input type="hidden" name="sub-type" value="actionbar-follow" />
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="7af19898bb" />										<div class="actnbr-button-wrap">
											<button type="submit" value="M’inscrire">
												M’inscrire											</button>
										</div>
									</form>
									<li class="actnbr-login-nudge">
										<div>
											Vous disposez déjà dʼun compte WordPress ? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Flavietoutsimplement.home.blog%252F2022%252F02%252F17%252Fresilience%252F">Connectez-vous maintenant.</a>										</div>
									</li>
								</ul>
															</div>
						</div>
					</li>
									<li class="actnbr-btn actnbr-hidden no-display" onclick="javascript:__tcfapi( 'showUi' );">
						<a class="actnbr-action actnbr-actn-privacy" href="#">
							<svg class="gridicon gridicons-info-outline" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><g><path d="M13 9h-2V7h2v2zm0 2h-2v6h2v-6zm-1-7c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8m0-2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2z"/></g></svg>							<span>Confidentialité						</span>
						</a>
					</li>
							<li class="actnbr-ellipsis actnbr-hidden">
				<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg>				<div class="actnbr-popover tip tip-top-left actnbr-more">
					<div class="tip-arrow"></div>
					<div class="tip-inner">
						<ul>
								<li class="actnbr-sitename">
			<a href="http://lavietoutsimplement.home.blog">
				<img loading='lazy' alt='' src='https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=50' srcset='https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=50 1x, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=75 1.5x, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=100 2x, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=150 3x, https://lavietoutsimplement.home.blog/wp-content/uploads/2019/01/cropped-en-tete-blog-plus-clair-2.jpg?w=200 4x' class='avatar avatar-50' height='50' width='50' />				La vie, tout simplement !			</a>
		</li>
								<li class="actnbr-folded-follow">
										<a class="actnbr-action actnbr-actn-follow" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>S&#039;abonner</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Abonné</span>
		</a>
								</li>
														<li class="actnbr-signup"><a href="https://wordpress.com/start/">S’inscrire</a></li>
							<li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Flavietoutsimplement.home.blog%252F2022%252F02%252F17%252Fresilience%252F">Connexion</a></li>
															<li class="flb-report">
									<a href="https://wordpress.com/abuse/?report_url=http://lavietoutsimplement.home.blog" target="_blank" rel="noopener noreferrer">
										Signaler ce contenu									</a>
								</li>
															<li class="actnbr-reader">
									<a href="https://wordpress.com/reader/feeds/92544432">
										Voir le site dans le Lecteur									</a>
								</li>
															<li class="actnbr-subs">
									<a href="https://subscribe.wordpress.com/">Gérer les abonnements</a>
								</li>
																<li class="actnbr-fold"><a href="">Réduire cette barre</a></li>
														</ul>
					</div>
				</div>
			</li>
		</ul>
	</div>
	
<script>
window.addEventListener( "DOMContentLoaded", function( event ) {
	var link = document.createElement( "link" );
	link.href = "/wp-content/mu-plugins/actionbar/actionbar.css?v=20250116";
	link.type = "text/css";
	link.rel = "stylesheet";
	document.head.appendChild( link );

	var script = document.createElement( "script" );
	script.src = "/wp-content/mu-plugins/actionbar/actionbar.js?v=20250204";
	document.body.appendChild( script );
} );
</script>

			<div id="jp-carousel-loading-overlay">
			<div id="jp-carousel-loading-wrapper">
				<span id="jp-carousel-library-loading">&nbsp;</span>
			</div>
		</div>
		<div class="jp-carousel-overlay" style="display: none;">

		<div class="jp-carousel-container">
			<!-- The Carousel Swiper -->
			<div
				class="jp-carousel-wrap swiper jp-carousel-swiper-container jp-carousel-transitions"
				itemscope
				itemtype="https://schema.org/ImageGallery">
				<div class="jp-carousel swiper-wrapper"></div>
				<div class="jp-swiper-button-prev swiper-button-prev">
					<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskPrev" mask-type="alpha" maskunits="userSpaceOnUse" x="8" y="6" width="9" height="12">
							<path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskPrev)">
							<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
				<div class="jp-swiper-button-next swiper-button-next">
					<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskNext" mask-type="alpha" maskunits="userSpaceOnUse" x="8" y="6" width="8" height="12">
							<path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskNext)">
							<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
			</div>
			<!-- The main close buton -->
			<div class="jp-carousel-close-hint">
				<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
					<mask id="maskClose" mask-type="alpha" maskunits="userSpaceOnUse" x="5" y="5" width="15" height="14">
						<path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/>
					</mask>
					<g mask="url(#maskClose)">
						<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/>
					</g>
				</svg>
			</div>
			<!-- Image info, comments and meta -->
			<div class="jp-carousel-info">
				<div class="jp-carousel-info-footer">
					<div class="jp-carousel-pagination-container">
						<div class="jp-swiper-pagination swiper-pagination"></div>
						<div class="jp-carousel-pagination"></div>
					</div>
					<div class="jp-carousel-photo-title-container">
						<h2 class="jp-carousel-photo-caption"></h2>
					</div>
					<div class="jp-carousel-photo-icons-container">
						<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Activer la visibilité des métadonnées sur les photos">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskInfo" mask-type="alpha" maskunits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/>
									</mask>
									<g mask="url(#maskInfo)">
										<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
							</span>
						</a>
												<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Activer la visibilité des commentaires sur les photos">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskComments" mask-type="alpha" maskunits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/>
									</mask>
									<g mask="url(#maskComments)">
										<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>

								<span class="jp-carousel-has-comments-indicator" aria-label="Cette image comporte des commentaires."></span>
							</span>
						</a>
											</div>
				</div>
				<div class="jp-carousel-info-extra">
					<div class="jp-carousel-info-content-wrapper">
						<div class="jp-carousel-photo-title-container">
							<h2 class="jp-carousel-photo-title"></h2>
						</div>
						<div class="jp-carousel-comments-wrapper">
															<div id="jp-carousel-comments-loading">
									<span>Chargement des commentaires&hellip;</span>
								</div>
								<div class="jp-carousel-comments"></div>
								<div id="jp-carousel-comment-form-container">
									<span id="jp-carousel-comment-form-spinner">&nbsp;</span>
									<div id="jp-carousel-comment-post-results"></div>
																														<form id="jp-carousel-comment-form">
												<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Écrire un commentaire...</label>
												<textarea
													name="comment"
													class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea"
													id="jp-carousel-comment-form-comment-field"
													placeholder="Écrire un commentaire..."
												></textarea>
												<div id="jp-carousel-comment-form-submit-and-info-wrapper">
													<div id="jp-carousel-comment-form-commenting-as">
																													<fieldset>
																<label for="jp-carousel-comment-form-email-field">E-mail (requis)</label>
																<input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-author-field">Nom (requis)</label>
																<input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-url-field">Site web</label>
																<input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" />
															</fieldset>
																											</div>
													<input
														type="submit"
														name="submit"
														class="jp-carousel-comment-form-button"
														id="jp-carousel-comment-form-button-submit"
														value="Laisser un commentaire" />
												</div>
											</form>
																											</div>
													</div>
						<div class="jp-carousel-image-meta">
							<div class="jp-carousel-title-and-caption">
								<div class="jp-carousel-photo-info">
									<h3 class="jp-carousel-caption" itemprop="caption description"></h3>
								</div>

								<div class="jp-carousel-photo-description"></div>
							</div>
							<ul class="jp-carousel-image-exif" style="display: none;"></ul>
							<a class="jp-carousel-image-download" href="#" target="_blank" style="display: none;">
								<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="mask0" mask-type="alpha" maskunits="userSpaceOnUse" x="3" y="3" width="19" height="18">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white"/>
									</mask>
									<g mask="url(#mask0)">
										<rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
								<span class="jp-carousel-download-text"></span>
							</a>
							<div class="jp-carousel-image-map" style="display: none;"></div>
						</div>
					</div>
				</div>
			</div>
		</div>

		</div>
		
	<script type="text/javascript">
		(function () {
			var wpcom_reblog = {
				source: 'toolbar',

				toggle_reblog_box_flair: function (obj_id, post_id) {

					// Go to site selector. This will redirect to their blog if they only have one.
					const postEndpoint = `https://wordpress.com/post`;

					// Ideally we would use the permalink here, but fortunately this will be replaced with the 
					// post permalink in the editor.
					const originalURL = `${ document.location.href }?page_id=${ post_id }`; 
					
					const url =
						postEndpoint +
						'?url=' +
						encodeURIComponent( originalURL ) +
						'&is_post_share=true' +
						'&v=5';

					const redirect = function () {
						if (
							! window.open( url, '_blank' )
						) {
							location.href = url;
						}
					};

					if ( /Firefox/.test( navigator.userAgent ) ) {
						setTimeout( redirect, 0 );
					} else {
						redirect();
					}
				},
			};

			window.wpcom_reblog = wpcom_reblog;
		})();
	</script>
<script type="text/javascript" id="coblocks-loader-js-extra">
/* <![CDATA[ */
var wpcom_coblocks_js = {"coblocks_masonry_js":"https://s2.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-masonry.min.js?m=1681832297i","coblocks_lightbox_js":"https://s2.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-lightbox.min.js?m=1681832297i","jquery_core_js":"/wp-includes/js/jquery/jquery.min.js","jquery_migrate_js":"/wp-includes/js/jquery/jquery-migrate.min.js","masonry_js":"/wp-includes/js/masonry.min.js","imagesloaded_js":"/wp-includes/js/imagesloaded.min.js"};
var coblocksLigthboxData = {"closeLabel":"Fermer la galerie","leftLabel":"Pr\u00e9c\u00e9dent","rightLabel":"Prochain"};
//# sourceURL=coblocks-loader-js-extra
/* ]]> */
</script>
<script type="text/javascript" id="jetpack-facebook-embed-js-extra">
/* <![CDATA[ */
var jpfbembed = {"appid":"249643311490","locale":"fr_FR"};
//# sourceURL=jetpack-facebook-embed-js-extra
/* ]]> */
</script>
<script type="text/javascript" id="jetpack-carousel-js-extra">
/* <![CDATA[ */
var jetpackSwiperLibraryPath = {"url":"/wp-content/mu-plugins/jetpack-plugin/moon/_inc/blocks/swiper.js"};
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"fr","ajaxurl":"https://lavietoutsimplement.home.blog/wp-admin/admin-ajax.php","nonce":"36bc236117","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Commentaire","post_comment":"Laisser un commentaire","write_comment":"\u00c9crire un commentaire...","loading_comments":"Chargement des commentaires\u2026","image_label":"Ouvrez l\u2019image en plein \u00e9cran.","download_original":"Afficher dans sa taille r\u00e9elle \u003Cspan class=\"photo-size\"\u003E{0}\u003Cspan class=\"photo-size-times\"\u003E\u00d7\u003C/span\u003E{1}\u003C/span\u003E.","no_comment_text":"Veuillez ajouter du contenu \u00e0 votre commentaire.","no_comment_email":"Merci de renseigner une adresse e-mail.","no_comment_author":"Merci de renseigner votre nom.","comment_post_error":"Une erreur s\u2019est produite \u00e0 la publication de votre commentaire. Veuillez nous en excuser, et r\u00e9essayer dans quelques instants.","comment_approved":"Votre commentaire a \u00e9t\u00e9 approuv\u00e9.","comment_unapproved":"Votre commentaire est en attente de validation.","camera":"Appareil photo","aperture":"Ouverture","shutter_speed":"Vitesse d\u2019obturation","focal_length":"Focale","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https://lavietoutsimplementhome.wordpress.com/wp-login.php?redirect_to=https%3A%2F%2Flavietoutsimplement.home.blog%2F2022%2F02%2F17%2Fresilience%2F","blog_id":"157046534","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=157046534&v=wpcom&tz=1&user_id=0&arch_home=1&subd=lavietoutsimplementhome","is_public":"1"};
//# sourceURL=jetpack-carousel-js-extra
/* ]]> */
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??-eJydUVtOxDAMvBCpadWF/iCOgvJwi9skjuKkC7enRdsVWiEh9ssaa2bk8cA5KcuxYCxgPE8q+TpRFDhzdtqJsl6LoMC8rXTxau2aWR7ghyzUq2jGkrRdLhgCc4Q3ihZMJe+A4kiRCiqxmb0/8GcTKN66HpaWt7PsItA17dC0Sigkjyrj2vTgSMp+2UFSnrXD/JtfecewxUjVgNNZw56qfMeKeqVJF+J/aGShpDzFRY1sq6iRPu55y6gtGuZFYTDobh3+6sOGBGu3j8bU6Dze34zVmaugv/KOxeWVr+GlfX46Daeh7x/nL9LE0T8='></script>
<script type="text/javascript" id="jetpack-testimonial-theme-supports-js-after">
/* <![CDATA[ */
const jetpack_testimonial_theme_supports = false
//# sourceURL=jetpack-testimonial-theme-supports-js-after
/* ]]> */
</script>
<script type="text/javascript" src="/wp-content/mu-plugins/jetpack-plugin/moon/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js?m=1755006225i&amp;ver=15.4-a.6" id="tiled-gallery-js" defer="defer" data-wp-strategy="defer"></script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/mu-plugins/carousel-wpcom/carousel-wpcom.js?m=1761899756i'></script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/","ext":".png","svgUrl":"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/","svgExt":".svg","source":{"concatemoji":"/wp-includes/js/wp-emoji-release.min.js?m=1764078722i&ver=6.9-RC2-61304"}}
</script>
<script type="module">
/* <![CDATA[ */
/*! This file is auto-generated */
const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))});
//# sourceURL=/wp-includes/js/wp-emoji-loader.min.js
/* ]]> */
</script>
		<script type="text/javascript">
			(function() {
				var extend = function(out) {
					out = out || {};

					for (var i = 1; i < arguments.length; i++) {
						if (!arguments[i])
						continue;

						for (var key in arguments[i]) {
						if (arguments[i].hasOwnProperty(key))
							out[key] = arguments[i][key];
						}
					}

					return out;
				};
				extend( window.infiniteScroll.settings.scripts, ["jetpack-mu-wpcom-settings","rlt-proxy","cmp-script-stub","wpcom-actionbar-placeholder","grofiles-cards","wpgroho","jetpack-testimonial-theme-supports","wordads-client","the-neverending-homepage","coblocks-loader","dara-navigation","dara-skip-link-focus-fix","jetpack-facebook-embed","cmp-script","jetpack-carousel","tiled-gallery","carousel-wpcom"] );
				extend( window.infiniteScroll.settings.styles, ["free-site-marketing-bar","the-neverending-homepage","wp-block-library","coblocks-frontend","wpcom-core-compat-playlist-styles","wpcom-text-widget-styles","wpcom-bbpress2-staff-css","dara-style","dara-blocks","genericons","dara-wpcom-styles","reblogging","geo-location-flair","a8c-global-print","h4-global","wp-emoji-styles","classic-theme-styles","dara-fonts","jetpack_facebook_likebox","jetpack-global-styles-frontend-style","wp-block-group","wp-block-paragraph","wp-block-social-links","wp-block-gallery","wp-block-image","wp-block-social-link","global-styles","core-block-supports","core-block-supports-duotone","jetpack-swiper-library","jetpack-carousel","tiled-gallery"] );
			})();
		</script>
				<span id="infinite-aria" aria-live="assertive"></span>
		<script src="//stats.wp.com/w.js?68" defer></script> <script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'157046534','blog_tz':'1','user_lang':'fr','blog_lang':'fr','user_id':'0'}]);
		// Prevent sending pageview tracking from WP-Admin pages.
		_stq.push(['view', {'blog':'157046534','v':'wpcom','tz':'1','user_id':'0','arch_home':'1','subd':'lavietoutsimplementhome'}]);
		_stq.push(['extra', {'crypt':'UE5XaGUuOTlwaD85flAmcm1mcmZsaDhkV11YdWFnNncxc1tjZG9XVXhRZS03JixUXy5Sc1NlcUZteXlfNHhuQS9QS01oblYzY0MrUVVlSTdVb294UlUmVmNRR2gwY35VUWpDW1YlbFtKajFfLmpTeFFlSl1RNyYuLzA/eWNnbGRCNFtBby1CVFF6Ui15eXNlXXZHVnNqX1RmcUp0RHZpcytfNjV4eURdM29DPTclUUNwR09RcGlRQmVuQVIuZiVkeVY1L11CRXhMXXk5Rl85TlQmRUhwSlRidDRSfD9rXzRNMnpJQnl4Q1J0Z3w/OFVzLUFJZTNPfkZUSCtLLDBzei05TjhrM2xFOVhyYXA1W3FzdFFYamlVbUs1cHFCVmJkPXBiUXA5Vi5vX3xCUCtLNGszZXQwJXlIb35uUTlhTUxSOTVnW0drNFZNW0prdlkw'}]);
_stq.push([ 'clickTrackerInit', '157046534', '0' ]);
</script>
<noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<meta id="bilmur" property="bilmur:data" content="" data-provider="wordpress.com" data-service="simple" data-site-tz="Etc/GMT-1" data-custom-props="{&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;pub\/dara&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}"  >
		<script defer src="/wp-content/js/bilmur.min.js?i=17&amp;m=202552"></script> 	<div id="marketingbar" class="marketing-bar noskim"><div class="marketing-bar-text">Concevoir un site comme celui-ci avec WordPress.com</div><a class="marketing-bar-button" href="https://wordpress.com/start/fr?ref=marketing_bar">Commencer</a><a class="marketing-bar-link" tabindex="-1" aria-label="Créer un nouveau site sur WordPress.com" href="https://wordpress.com/start/fr?ref=marketing_bar"></a></div>		<script type="text/javascript">
			window._tkq = window._tkq || [];

			window._tkq.push( [ 'recordEvent', 'wpcom_marketing_bar_impression', {"is_current_user_blog_owner":false} ] );

			document.querySelectorAll( '#marketingbar > a' ).forEach( link => {
				link.addEventListener( 'click', ( e ) => {
					window._tkq.push( [ 'recordEvent', 'wpcom_marketing_bar_cta_click', {"is_current_user_blog_owner":false} ] );
				} );
			});
		</script>
</body>
</html>