body {
	background: #FFFFFF;
	font-family: Corbel, "Trebuchet MS", serif;
}

/* Contenu */

@media (min-width: 1200px)
{
	.content
	{
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		right : 20%;
	}
}

/* Portrait tablet to landscape and desktop */

@media (min-width: 992px) and (max-width: 1199px) {
	.content
	{
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		right : 20%;
	}
}

/* Landscape phone to portrait tablet */

@media (min-width: 768px) and (max-width: 991px){
	.content
	{
		position: absolute;
		left: 0;
		top: 10%;
		bottom: 0;
		right : 0;
	}
	p {
		font-size: xx-large;
	}

}

/* Landscape phones and down */

@media (max-width: 767px) {
	.content
	{
		position: absolute;
		left: 0;
		top: 10%;
		bottom: 0;
		right : 0;
	}
	p {
		font-size: xx-large;
	}

}

/* Menu de navigation */
.navigation
{
	display: flex;
	position: fixed;
	flex-direction: column;
	background-color: black;
	right: 0%;
	top: 0%;
	bottom: 0%;
	left: 80%;
	color : white;
	text-align: center;
	font-size: 150%;
	z-index: 1;
}

.nav-link
{
	text-decoration : none;
	color : white;
}

.nav-link:hover
{
	text-decoration: underline;
	color:white;
}

.navigation img
{
	width: 100%;
	height: auto;
}

.navigation-sm
{
	display: flex;
	position: fixed;
	flex-direction: row;
	background-color: black;
	right: 0;
	top: 0;
	bottom: 90%;
	left: 0;
	color : white;
}

.navigation-sm img
{
	width: auto;
	height: 100%;
}

#sm
{
	width: auto;
	height: 100%;
}

#navbarSupportedContent
{
	background-color: black;
}




/* TEST */



/* --- STYLES DE BASE POUR LE TEXTE ET LES PRINCIPAUX �L�MENTS --- */

/* Page */
html {
	font-size: 100%; 
}
body {
	color: black;
	background: white;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 0; 
}

h2 {font-size: 1.8em;}
h3 {font-size: 1.2em;}
h4 {font-size: 1em;}

/* Listes */
ul, ol {
	margin: .75em 0 .75em 24px;
	padding: 0; 
}

li {
	margin: .75em 0;
	padding: 0;
}

/* Paragraphes */
p {
	margin: .75em 0;
}
li p, blockquote p {
	margin: .5em 0;
}

/* Citations */
blockquote, q {
	font-size: 1.1em;
	font-style: italic;
	font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
}
blockquote {
	margin: .75em 0 .75em 24px;
}
cite {
	font-style: italic;
}

/* Liens */
a {
	color: mediumblue;
	text-decoration: underline;
}
a:hover, a:focus {
	color: crimson;
}
a img {
	border: none; 
}

/* Divers �l�ments de type en-ligne */
em {
	font-style: italic;
}
strong {
	font-weight: bold;
	color: dimgray;
}


/* --- STYLES POUR CERTAINS CONTENUS DES GABARITS --- */

pre, code {
	font-size: 100%;
	font-family: "Bitstream Vera Mono", "Lucida Console", "Courier New", monospace;
}
pre {
	width: 90%;
	overflow: auto;
	overflow-y: hidden;
	margin: .75em 0;
	padding: 12px;
	background: #eee;
	color: #555;
}
pre strong {
	font-weight: normal;
	color: black;
}
#copyright {
	margin: 20px 0 5px 0;
	text-align: right;
	font-size: .8em;
	color: #848F63;
}
#copyright a {
	color: #848F63;
	text-decoration: none;
}
#copyright a:hover, #copyright a:focus {
	text-decoration: underline;
}

