<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root
{
	--color-logo: #003040;
	--color-text: #00607f;
	--color-text-light: #77b0c3;
	--color-text-dark: #003040;
	--color-bg-light: #77b0c3;
	--color-bg-dark: #00607f;
}

body
{
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	position: absolute;

	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 24px;

	color: var(--color-text);

	overflow-y: scroll;
}

html, body
{
    overscroll-behavior-x: none;
}

b, strong
{
	font-weight: 700;
}

h1
{
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 10px;

	color: var(--color-text-dark);
}

h2
{
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

a.but
{
	background-color: var(--color-text);
	line-height: 20px;
	display: inline-block;
	padding: 15px 20px;
	text-transform: uppercase;
	cursor: pointer;
	color: #ffffff;
	text-decoration: none;
}

div#Header
{
	position: fixed;
	z-index: 10;
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	height: 80px;

	padding: 0;
	text-align: right;
	background-color: #ffffff;
}

div#Header a.Logo
{
	display: inline-block;
	position: absolute;
	top: 0;
	margin: 0 0px 0 20px;
	height: 100%;
	background-image: url(/css/img/logo3.png);
	width: 200px;
	background-size: auto 80%;
	background-repeat: no-repeat;
	background-position: left;
	left: 0;
	z-index: -1;
}

div#Languages
{
	float: right;
	display: inline-block;
	margin: 25px 20px 0 0;
	vertical-align: top;
}

div#Languages ul
{
	width: 50px;
	list-style-type: none;
	z-index: 100;
}

div#Languages ul li
{
	display: block;
	transition: opacity 0.25s;
	margin-left: 0px;
    text-transform: capitalize;
	position: relative;
	text-align: center;
}

div#Languages &gt; ul &gt; li
{
	background-image: url(/css/img/arrowdown2.png);
    padding-right: 0px;
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: right center;
}

div#Languages ul li ul li
{
}

div#Languages ul li:hover &gt; a,
div#Languages ul li.Selected a
{
	border-bottom: solid 1px var(--color-text);
}

div#Languages ul li a
{
	text-align: center;
}

div#Languages ul li ul
{
	position: absolute;
	left: 0;
	top: 0;
	display: none;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	margin-top: -10px;
	background-color: #ffffff;
	padding-bottom: 10px;
}

div#Languages ul li ul li a
{
	padding: 10px 0 0 0;
	display: inline-block;
	border-bottom: solid 1px #ffffff;
}

div#Languages ul li:hover ul
{
	display: block;
}

div#Menu
{
	display: inline-block;
	vertical-align: top;
	margin: 25px 20px 0 0;
}

div#Menu ul
{
	list-style-type: none;
	z-index: 1;
	text-transform: uppercase;
}

div#Menu li
{
	display: inline-block;
	position: relative;
	padding: 0;
	margin: 0 40px 0 0;
	transition: all 0.25s;
}

div#Menu li::before
{
	position: absolute;
	bottom: 0;
	left: 0px;
	width: 100%;
	height: 1px;
	content: '';
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	background-color: var(--color-text);
}

div#Menu &gt; ul &gt; li:first-child
{
	display: none;
}

div#Menu &gt; ul &gt; li.Selected
{
	
/*	border-bottom: solid 1px #6e3e1d;*/
}

div#Menu &gt; ul &gt; li:hover
{
/*	border-bottom: solid 1px #6e3e1d;*/
}

div#Menu &gt; ul &gt; li.Selected::before,
div#Menu &gt; ul &gt; li:hover::before
{
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

div#Menu li a
{
	display: inline-block;
}

div#Menu &gt; ul &gt; li &gt; ul
{
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	z-index: 1;
	white-space: nowrap;
	min-width: 100%;
	background-color: #f8eff0;
}

div#Menu &gt; ul &gt; li:hover &gt; ul
{
	display: block;
	
}

div#Menu &gt; ul &gt; li &gt; ul &gt; li
{
	display: block;
}

div#Menu &gt; ul &gt; li &gt; ul &gt; li:hover
{
	background-color: #f09cac;
}

div#Main
{
	position: relative;
	width: 100%;
	margin-top: 0px;
	min-height: calc(100vh - 140px);
	padding-top: 80px;
/*	padding-bottom: 140px;*/
	background-color: var(--color-text);
	overflow-x: hidden;
}

div.InstaPic &gt; div.Hover
{
	background-color:rgba(119, 176, 195, 0.7) 
}

div.Strip
{
	width: 100%;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	position: relative;
	margin-top: 0;
	padding: 80px 0;
}

div.Strip.FullPage
{
	min-height: calc(100vh - 220px);
	position: relative;
}

div.Strip.White
{
	background-color: #ffffff;
}

div.Strip.Colored,
div.Strip.Dark
{
	background-color: var(--color-bg-dark);
	color: #ffffff;
	text-align: center;
}

div.Strip.Colored a.but
{
	background-color: var(--color-text-light);
}
 
div.Strip.Light
{
	background-color: var(--color-bg-light);
	color: var(--color-text-dark);
	text-align: left;
}

div.Strip &gt; div
{
	width: 90%;
	max-width: 990px;
	margin: 0 auto;
	position: relative;
}

div.Strip h1
{
	text-transform: uppercase;
}

div.Strip.Colored h1
{
	color: #ffffff;
}

div.StripContent h3
{
	font-size: 24px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 36px;
}

div.StripContent h4
{
	font-size: 20px;
	line-height: 30px;
}

div.StripContent p + h3
{
	margin-top: 60px;
}

div.StripContent p img
{
	display: block;
	max-width: 30%;
	float: right;
	margin: 0 0px 20px 20px;
	box-shadow: 0 0 3px rgba(0,0,0,0.4);
}

div#Footer
{
	width: 100%;
	background-color: #ffffff;
	padding-top: 40px;
	height: 140px;
	font-size: 12px;
	line-height: 16px;
/*	position: fixed;*/
	bottom: 0;
	z-index: 1;
}

div#Footer b
{
	font-weight: bold;
}

div#Footer a:hover
{
	text-decoration: underline;
}

div#Footer &gt; div
{
	display: table;
	width: calc(100% - 40px);
	height: 100px;
	margin-left: 40px;
}

div#Footer &gt; div &gt; div
{
	display: table-cell;
	width: 33%;
	padding: 0 20px 0px 20px;
    vertical-align: top;
	border-left: solid 1px #6e3e1d;
	text-align: left;
}

div#Footer a.butFacebook,
div#Footer a.butInstagram,
div#Footer a.butContact,
div#Footer a.butFoursquare,
div#Footer a.butYelp
{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(/css/img/facebook.svg);
    font-size: 0;
    color: transparent;
    background-color: var(--color-text);
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100px;
    margin: 0 5px;
	cursor: pointer;
}

div#Footer a.butFacebook:hover,
div#Footer a.butInstagram:hover,
div#Footer a.butContact:hover,
div#Footer a.butFoursquare:hover,
div#Footer a.butYelp:hover
{
	background-color: var(--color-text-dark);
}

div#Footer a.butInstagram
{
   background-image: url(/css/img/instagram.svg);
   background-size: 20px;
}

div#Footer a.butContact
{
   background-image: url(/css/img/email.svg);
   background-size: 20px;
}

div#Footer a.butFoursquare
{
   background-image: url(/css/img/foursquare.svg);
   background-size: 20px;
}

div#Footer a.butYelp
{
   background-image: url(/css/img/yelp.svg);
   background-size: 20px;
}

div.InstaGalery
{
	width: 100%;
	height: 25vw;
	overflow: hidden;
	white-space: nowrap;
}

div.InstaGallery
{
	margin-top: 0;
}

div.InstaViewer
{
	width: 25vw;
	height: 25vw;
	display: inline-block;
	position: relative;
	line-height: 0;
	border: solid 2px #ffffff;

	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

div.InstaViewer &gt; div
{
	position: absolute;

	width: 100%;
	height: 100%;

	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;

	opacity: 1.0;

	transition: opacity ease-in 2s;
	-webkit-transition: opacity ease-in 2s;
	-moz-transition: opacity ease-in 2s;
	-o-transition: opacity ease-in 2s;
}

div.InstaViewer &gt; div.On
{
	opacity: 1.0;
}

div.InstaViewer &gt; div.Off
{
	opacity: 0.0;
}

div.RetailsList div.Item
{
/*	background-color: #ffffff;
	padding: 20px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
	width: 100%;
	position: relative;
	margin-bottom: 40px;
	display: block;
}

div.RetailsList div.Item h4
{
	color: inherit;
}

div.RetailsList div.Item a
{

}

div.RetailsList div.Item a:hover
{

}

div.RetailsList div.Picture
{
	width: 50%;
	display: inline-block;
	float: left;
	vertical-align: top;
	position: relative;
	border: solid 5px #ffffff;
	line-height: 0;
}

div.RetailsList div.Picture img
{
	width: 100%;
	background-color: rgba(255, 255, 255, 0.5);
}

div.RetailsList div.Infos
{
	width: 50%;
	padding-top: 20px;
	vertical-align: top;
	display: inline-block;
	padding-bottom: 20px;
	text-align: center;
}

div.RetailsList div.DeliveryMap
{
	clear:both;
	display: block;
	border: none;

	height: 0px;
	overflow: hidden;
	transition: max-height 0.5s;
}

div.RetailsList div.DeliveryMap.Shown
{
	height: 300px;
	border: solid 1px rgba(0, 0, 0, 0.2);
}

span.Warning
{
	display: block;
	margin-top: 20px;
}

form
{
	text-align: left;
	color: var(--color-text);
	background-color: #ffffff;
    padding: 40px;
}

form.Contact
{
	color: var(--color-text);
	background-color: transparent;
    padding: 0px;
}

form input,
form textarea
{
	padding: 4px 10px;
	width: 100%;
	margin-bottom: 10px;
}

form textarea
{
	min-height: 150px;
}

form a
{
	float: right;
}

form.Contact
{
	text-align: left;
}

div.InstaPic
{
	width: 25%;
	height: 25%;
	border: solid 5px #ffffff;
	background-color: var(--color-bg-light);
}

div.Picto
{
	width: auto;
	height: 144px;
	margin: 0 auto 0px auto;
	background-image: url(img/picto.png);
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
}

div.Carte
{
	background-color: #ffffff;
	padding: 60px;
}

div.Strip.Light h1
{
	color: var(--color-text);
}

div.Carte h2
{
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-bg-light);
	font-weight: 700;
}

div.Carte h3
{
	text-align: right;
	text-transform: uppercase;
	border-bottom: solid 1px var(--color-text);
	color: var(--color-text);
}

div.Carte h4
{
	font-family: serif;
	letter-spacing: 0;
	font-weight: 700;
}

div.Carte ul
{
	margin-bottom: 40px;
	padding-left: 40px;
	padding-right: 40px;
	font-family: serif;
}

div.Carte ul li
{
	border-bottom: dotted 1px var(--color-bg-light);
}

div.Carte ul li span + span
{
	float: right;
	text-align: right;
}

div.Modal
{
	position: absolute;
	width: 100%;
	z-index: 10;
	top: 0px;
	height: 100%;
	background-color: rgba(255,255,255,0.5);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	-moz-backdrop-filter: blur(2px);
	-o-backdrop-filter: blur(2px);
	-ms-backdrop-filter: blur(2px);
	left: 0;
	padding: 120px 10px;
}

div.Modal &gt; div
{
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}

div.Modal &gt; div &gt; div
{
	background-color: #ffffff;
	max-width: 500px;
	position: relative;
	margin: auto;
	padding: 40px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

div.Modal &gt; div &gt; div img
{
	max-width: 100%;
	max-height: 200px;
}

form input[type="checkbox"],
form input[type="radio"]
{
	display: none;
}

form input[type="checkbox"] + label,
form input[type="radio"] + label
{
	line-height: 32px;
    margin: 5px 5px;
    display: inline-block;
	padding-left: 40px;

    vertical-align:middle;
    background:url(/css/img/checkbox_off.svg);
    cursor:pointer;
	background-repeat: no-repeat;
	background-size: 30px;
	padding-top: 0px;
	text-align: left;
	opacity: 0.5;
	height: 30px;
	background-position: bottom left;
}

form input[type="checkbox"]:checked + label,
form input[type="radio"]:checked + label
{
    background-image:url(/css/img/checkbox_on.svg);
	opacity: 1.0;
}

ul.Openings
{
	list-style-type: none;
	margin: 0 0 20px -20px;
}

.Centered
{
	text-align: center;
}

ul.Openings li &gt; span:first-child
{
	display: inline-block;
	width: 100px;
	text-align: right;
	padding: 0 20px 0 0;
}

div#GDPR
{
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: var(--color-bg-light);
	padding: 40px;
	text-align: center;
	width: 100%;
}

div#GDPR h4
{
	font-size: 24px;
	margin-bottom: 0;
}

ul.MenuItems
{
	list-style-type: none;
}

ul.MenuItems li
{
	display: inline-block;
	width: 300px;
	margin: 20px;
	position: relative;
}

ul.MenuItems li a
{
	display: inline-grid;
	width: 100%;
	white-space: pre-line;
	vertical-align: middle;
}

div.MenuItem
{
	color: #ffffff;
}

div.MenuItem h2
{
	color: var(--color-bg-light);
}

div.MenuItem p
{
	text-align: justify;
}

div.MenuItem img
{
	width: 100%;
	border: solid 4px #ffffff;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active)
{
/* IE10+ CSS styles go here */

	div.Modal
	{
		background-color: rgba(0,0,0,0.5);
	}
}

@media (min-width: 2048px)
{
	div.InstaGalery
	{
		height: 16.666vw;
	}

	div.InstaViewer
	{
		width: 16.666vw;
		height: 16.666vw;
	}
}

@media (max-width: 1024px)
{

	div#Menu li
	{
		margin: 0 20px 0 0;
	}

	div.InstaPic
	{
		width: 33.3333%;
		height: 33.3333%;
		border: solid 3px #ffffff;
	}

	div.InstaViewer
	{
		width: 33.3333vw;
	}

	div#Footer a.butFacebook, div#Footer a.butInstagram, div#Footer a.butContact, div#Footer a.butFoursquare, div#Footer a.butYelp
	{
		margin: 0 5px;
	}
}

@media (max-width: 800px)
{
	div#Languages
	{
	/*	margin-right: 10px;*/
	}

	div#Menu
	{
		margin-right: 0;
	}

	div#Menu ul
	{
		display: inline-block;
	}

	div#Menu ul li
	{
		display: none;
		background-color: #ffffff;
	}

	div#Menu ul li a
	{
		display: block;
		padding: 10px 10px 10px 40px;
	}

	div#Menu ul li.Selected
	{
		display: block;
		background-image: url(/css/img/but_menu.png);
		background-repeat: no-repeat;
		color: transparent;
		cursor: pointer;
		height: 55px;
		border-bottom: none;
		background-position: calc(100% - 20px) -4px;
		background-size: 34px;
		background-repeat: no-repeat;
		background-color: transparent;
	}

	div#Menu li::before
	{
		background-color: transparent;
	}

	div#Menu ul.Expanded
	{
		background-color: var(--color-bg-light);
		margin-top: -10px;
		padding-bottom: 10px;
		border: solid 1px #ffffff
	}

	div#Menu ul.Expanded li
	{
		display: block;
		padding: 0;
		background-color: transparent;
	}

	div#Header div#Menu ul.Expanded li.Selected
	{
		background-image: none;
		height: auto;
		color: #6e3e1d;
	}

	div#Header div#Menu ul.Expanded li.Selected a
	{
		text-decoration: underline;
	}

	div#Main
	{
		padding-bottom: 0;
	}

	div.Strip
	{
		padding: 60px 0;
	}

	div.Strip &gt; div
	{
		width: 100%;
		padding: 0 20px;
		text-align: center;
	}
/*
	div.Picto
	{
		float: none;
		display: inline-block;
	}
*/
	div#Footer
	{
		position: relative;
		height: auto;
/*		background-color: var(--color-bg-light);*/
	}

	div#Footer &gt; div
	{
		display: block;
		margin-left: 0;
		width: 100%;
		height: auto;
	}

	div#Footer &gt; div &gt; div
	{
		display: block;
		width: 100%;
		text-align: center;
		padding-bottom: 40px;
		border: none;
	}

	div.InstaPic
	{
		width: 50%;
		height: 50%;
		border: solid 2px #ffffff;
	}

	div.InstaGalery
	{
		height: 50vw;
	}

	div.InstaViewer
	{
		width: 50vw;
		height: 50vw;
	}

	div.RetailsList div.Picture
	{
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}

	div.RetailsList div.Infos
	{
		width: 100%;
		padding-left: 0;
	}

	div.Carte
	{
		background-color: #ffffff;
		padding: 40px 20px;
		text-align: left;
		margin-left: -20px;
		width: calc(100% + 40px);
	}

	div.Carte ul
	{
		padding-left: 20px;
		padding-right: 20px;
		font-size: 14px;
	}

	form
	{
		padding: 40px 20px;
		margin-left: -20px;
		width: calc(100% + 40px);
	}

	form.Contact
	{
		margin-left: 0px;
		width: 100%;
	}

	form input[type="checkbox"] + label,
	form input[type="radio"] + label
	{
		
		display: block;
	}
}

@media (max-width: 360px)
{
	div#GDPR
	{
		padding: 20px;
		font-size: 12px;
		line-height: 16px;
	}

	div#GDPR h4
	{
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 0;
	}

	div#GDPR p
	{
	}

	div#GDPR a.butGDPR
	{
		font-size: 14px;
		margin: 20px 0 0 0;
	}
}</pre></body></html>