<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* *************************************************** */
/* Colours  */
/* *************************************************** */
:root {
	--ml-primary-color-light: #75c6e6;
	--ml-primary-color: #2faee0;
	--ml-primary-color-dark: #009acc;
	--ml-primary-color-darker: #144b61;
	--ml-primary-grayblue: #315361;
	--ml-primary-color-hover: #5bbfe6;
	--ml-secondary-color-light: #d8ba7e;
	--ml-secondary-color: #bea064;
	--ml-max-width: 1152px;
	
	--ml-bleu-uefachampionsleague: #0561ae;
	--ml-orange-uefaeuropaleague: #ff6900;
	--ml-bleuclair-barrage: #5c91f9;
	--ml-vert: #15C255;
	--ml-orange: orange;
	--ml-orangefonce: #ee0000;
}

/* *************************************************** */
/* General  */
/* *************************************************** */
html {
	margin: 0;
	padding: 0;
	overflow-y: scroll;
}

body {
	background: #eee;
	background-image: linear-gradient(to bottom, #009acc 0, #009acc 16px, #23bef4 16px, #23bffa 20px), url("./img/home_bg.jpg");
	font-family: 'Roboto', sans-serif;
	box-sizing: border-box;
	margin: 0;
	background-repeat: repeat-x;
	background-size: auto 20px, auto;
}

.wrapper {
	margin: 20px auto;
	max-width: 960px;
}

.site-design {
	display: none;
	font-size: 10px;
	line-height: 18px;
}

h1 {
	color: #027EB2;
	font-size: calc(0.7rem + 1vw);
	margin: 0 0 15px;
	text-align: center;
}

/* Menu principal
--------------------------------------------- */
.topmenu { 
	margin-bottom: 28px;
}

.menu { 
	max-width: 904px;
	margin: 0 auto;
	background: linear-gradient(to bottom, #0182b4 0%,#0182b4 34%,#056eab 100%);
	list-style: none;
	padding: 0 20px;
	display : flex;
	border-radius: 0 0 5px 5px;
	align-items: center;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	border: 2px groove #3394c4;
	border-top: 0;
	box-shadow: 0 1px 1px 2px rgba(176, 176, 176, 0.27);
}

.menu-checkbox {
	position:absolute;
	left:-999em;
}

.menu-label {
	background: #009acc no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' aria-labelledby='hamburgerIconTitle' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' color='%23000'%3E%3Cpath d='M6 7h12M6 12h12M6 17h12'/%3E%3C/svg%3E");
	border: 3px solid #22bff6;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	line-height: normal;
	margin: 0 0.6em 0;
	width: 32px;
	height: 32px;
	float: right;
}

.menu-checkbox:checked + .menu-label {
	background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.657 12.071 5 6.414 6.414 5l5.657 5.657L17.728 5l1.414 1.414-5.657 5.657 5.657 5.657-1.414 1.414-5.657-5.657-5.657 5.657L5 17.728z' fill='%23fff' fill-rule='evenodd'/%3E%3C/svg%3E");
} 

.menu-checkbox:checked ~ .menu {
	display: flex;
}

.menu-item { 
	flex : 1 1 auto;
	border-left: 2px groove #3394c4;
	position: relative;
}

.menu-item:last-child {
	border-right: 2px groove #3394c4;
}

.current_page_item::before {
	content: "";
	border-top: 3px solid #6dc9e8;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
}

a.link-item {
	color: #fff;
	display: flex;
	padding: 6px 0;
	justify-content: center;
	text-decoration: none;
	position: relative;
}

.hover-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity .5s ease-in-out;
}

.link-item:hover .hover-bg {
	background: linear-gradient(to bottom, #0075b0 0%,#1b7ab2 3%,#046eac 7%,#046eac 10%,#0379b2 27%,#0083b8 93%,#168ebf 97%,#0075b0 100%);
	box-shadow: -1px 0 0 rgba(0, 0, 0, 0.25);
	opacity: 1;
}

.link-text {
	z-index: 1;
}

/* Header
--------------------------------------------- */
.header {
	background: url("./img/bg_header.png") no-repeat;
	color: #fff;
	width: 960px;
	height: 120px;
	padding: 0;
	margin-top: -20px;
}

a#logo {
	background: url("./img/site_logo.png") no-repeat top center;
	width: 267px;
	height: 119px;
	text-align: left;
	text-indent: -999%;
	float: left;
	padding: 0 13px 0 20px;
	margin: 0;
}

/* Contenu
--------------------------------------------- */
.main {
	clear: both;
	padding: 15px;
	margin-top: 0;
}

/* Fil d'Ariane
--------------------------------------------- */
.breadcrumb {
	color: #666;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 10px;
	font-weight: bold;
	line-height: 18px;
	margin: -5px 0 5px 10px;
}

.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumb li:not(:last-child)::after {
	content: "&gt;";
	display: inline-block;
	padding: 0 4px;
}

.breadcrumb a {
	color: #026aa5;
	text-decoration: none;
}

.breadcrumb a:hover {
	color: #39c;
}

/* Footer
--------------------------------------------- */
.footer {
	background: url("./img/bg_footer.png") no-repeat;
	clear: both;
	width: 960px;
	height: 120px;
	margin: 0 auto;
}

#colophon {
	margin-top: 0;
	overflow: hidden;
	padding: 18px 0;
}

#site-info {
	float: left;
	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
	font-size: 11px;
	font-weight: bold;
	margin: 45px 0 0 30px;
	color: #fff;
}

#site-info a {
	color: #fff;
	text-decoration: none;
}

#copyright {
	color: #fff;
	text-align: right;
	margin-right: 20px;
}

#copyright a {
	text-decoration: none;
	font-weight: bold;
	color: #fff;
}

/* Responsive
--------------------------------------------- */
@media(max-width: 640px) {
	.wrapper {
		clear: both;
		margin: 0;
	}

	.topmenu {
		margin: 0;
	}

	.menu {
		display:none;
		flex-flow: column wrap;
		align-items: start;
		background: #009acc;
		animation: unfold 150ms ease-in-out forwards;
		transform-origin: top center;
		font-size: 1.5em;
		margin-bottom: 20px;
		border: 0;
		border-bottom-left-radius: 0;
	}
	
	.menu-checkbox:checked ~ .menu {
		margin-bottom: 0;
	}
	
	.menu-item {
		margin: 4px 0;
	}
	
	.menu-item, .menu-item:last-child {
		border: 0;
	}
	
	.current_page_item::before {
		border-top: 0;
		border-left: 5px solid #6dc9e8;
		left: -12px;
		bottom: 0;
	}

	@keyframes unfold {
		0% {
			transform: scaleY(0);
		}
		100% {
			transform: scaleY(1);
		}
	}
}

@media(min-width: 641px) {
	.topmenu { 
		line-height: 18px;
	}
	.menu-label {
		display: none;
	}
}

@media (max-width: 700px) {
	.main {
		padding: 5px;
	}
}

@media (min-width: 960px) {
	.site-design {
		display: block;
	}
	.main {
		background: url("./img/bg_body.png") repeat-y;
	}
}</pre></body></html>