<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*********************************************************************/
/* = Designed by Patrick Joly - patrickjoly@free.fr */
/*********************************************************************/

/* variables */
:root {
  --blanc: #ffffff;
  --bleu: #006698;
  --rouge: #e81d25;
}

body {
	color: var(--bleu);
	font-family: arial narrow, sans-serif;
	font-size: 1.25em;
	line-height: 1.5;
	margin: 0 auto;
	overflow: scroll;
	padding: 0;
	text-align: justify;
}

*,*:after, *:before{
	box-sizing:border-box
}

/*********************************************************************/
/* ligne et colonne */
/*********************************************************************/
.ligne {
	margin: 0 auto;
	max-width: 1200px;
	min-width: 768px;
	overflow: hidden;
	padding: 0;
}

.col {
	float: left;
	padding: 0 10px 0 10px;
}

.une {width: 8.33%}
.deux {width: 16.66%}
.trois {width: 25%}
.quatre {width: 33.33%}
.cinq {width: 41.67%}
.six {width: 50%}
.sept {width: 58.33%}
.huit {width: 66.67%}
.neuf {width: 75%}
.dix {width: 83.33%}
.onze {width: 91.67%}
.douze {width: 100%}

/*********************************************************************/
/* header */
/*********************************************************************/
header {
	color: var(--blanc);
	margin: 0 0 10px 0;
	padding: 0;
}

header a {
	text-decoration: none;
}

/*********************************************************************/
/* navigation */
/*********************************************************************/
nav {
	min-height: 20px;
	letter-spacing: 2px;
	margin: 0;
	padding: 20px 0 20px 0;
	text-align: right;
	text-transform: uppercase;
}

nav ul {
	margin: 0;
	padding: 0;	
}

nav li {
	display: inline-block;
}

nav a {
	color: var(--blanc);
	border-bottom: 2px solid transparent;
	display: block; 
	padding: 5px;
	text-decoration: none;
}

nav a:hover {
	border-bottom: 2px solid var(--blanc);	
}

nav &gt; input {display: none}

nav &gt; label {
	display: none;
}

/*********************************************************************/
/* fond */
/*********************************************************************/
.fond-couleur {
	background: var(--bleu);
	color: var(--blanc);	
	margin: 20px 0 20px 0;
}

.fond-couleur a {
	color: var(--blanc);
}

.fond-couleur h3 {
	border-top: none !important;	
	font-size: 3em;
	margin: 20px 0 20px 0;
	padding: 0;
	text-align: center;
}

.fond-couleur h4 {
	border-bottom: 1px solid var(--blanc);
	color: var(--blanc);
	font-size: 2em;	
	margin: 20px 0 0 0;
	padding: 5px;
	text-align: center;
}

/*********************************************************************/
/* titres */
/*********************************************************************/
h1 {
	color: var(--blanc);
	font-size: 2em;
	margin: 10px 0 0 0;
	padding: 0;
}

h2 {
	font-size: 2em;
	margin: 20px 0 20px 0;
	padding: 0;
	text-align: center;
}

h3 {
	border-top: 1px solid var(--rouge);	
	font-size: 3em;
	margin: 20px 0 20px 0;
	padding: 0;
	text-align: center;
}

h4 {
	border-bottom: 1px solid var(--bleu);
	color: var(--bleu);
	font-size: 2em;	
	margin: 20px 0 20px 0;
	padding: 5px;
	text-align: center;
}

/*********************************************************************/
/* divers */
/*********************************************************************/
/* liens */
a {
	color: var(--bleu);
	text-decoration: underline
}

a:hover {
	text-decoration: none
}

/* position */
.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

/* font */
.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

/* cercle */
.cercle {
	background: var(--blanc);
	border: 2px solid var(--blanc);
	border-radius: 100px;
	color: var(--rouge);	
	display: inline-block;
	font-size: 4em;
	font-weight: bold;
	height: 150px;
	line-height: 150px;
	margin: 20px 10px 10px 10px;
	text-align: center;
	text-decoration: none;
	width: 150px;	
}

/* img */
img {
    margin: 0 auto;
	padding: 0;
	width: 100%;
}

/* formulaire */
fieldset {
  border: 1px solid var(--rouge);	
  color: var(--bleu);
}

input[type=text], input[type=email], input[type=tel], select, textarea {
  border: 1px solid var(--rouge);
  border-radius: 5px; 
  box-sizing: border-box;
  padding: 10px;  
  resize: vertical;
  width: 100%; 
}

label {
  border-radius: 5px;	
  display: inline-block;
  padding: 10px 0 10px 0;
}

input[type=submit], input[type=reset] {
  background-color: var(--bleu);
  border: none;
  border-radius: 5px;
  font-size: 0.9em;
  cursor: pointer;
  color: var(--blanc);
  padding: 10px;
}

/*********************************************************************/
/* footer */
/*********************************************************************/
.footer {
	color: var(--blanc);
	margin: 10px 0 10px 0;
	padding: 0;
	text-align: center;
}

.footer a {
	color: var(--blanc);	
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.footer img {
	margin: 0;
	width: 48px !important;
	padding: 0;
}

/*********************************************************************/
/* Feuille de style responsive */
/*********************************************************************/
@media (max-width:768px) {
body {
	overflow: scroll;
	text-align: justify;
}

header {
	margin: 0;
}

/*********************************************************************/
/* navigation */
/*********************************************************************/
nav li {
	display: block;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
    transform: translateZ(0);
	transition: .4s max-height;
}

nav a {
	border: 1px solid var(--blanc);
	border-radius: 5px;	
	display: block;
	margin-bottom: 10px;
	padding: 10px;
	text-align: center;
}

nav a:hover {
	border: 1px solid var(--blanc);
	background: var(--blanc);
	color: var(--bleu);
}
	
nav &gt; input:not(:checked) ~ ul {
	max-height: 0;
	overflow: hidden;
}

/* attention : ajuster la hauteur du dÃ©calage du menu / au nombre de &lt;li&gt; */
nav &gt; input:checked ~ ul {
	max-height: 400px;
}

nav &gt; label {
	color: var(--blanc);
	cursor: pointer;
	display: block;
	font-size: 1.25em;
	padding: 0;
	position: absolute;
	right: 30px;
	top: 30px;
}
	
/*********************************************************************/
/* ligne et colonne */
/*********************************************************************/
.ligne {
	min-width: 0;
	width: 100%;
}

.col {
	display: block !important;
	float: none;
	width: auto !important;	
}

.une, .deux, .trois, .quatre, .cinq, .six, .sept, .huit, .neuf, .dix, .onze, .douze {
	display: block !important;
	padding: 0 10px 0 10px;
	width: 100%;
}

/*********************************************************************/
/* titres */
/*********************************************************************/
h1 {
	font-size: 2em;
	padding: 10px 0 0 0;
}

h3 {
	font-size: 1.5em;
}
}</pre></body></html>