h1 { /*Header : Mots clicable*/
	font-family: "Maiandra GD";
	font-size: 19px; 
	letter-spacing: 1px; 
	color: white;
	}
h2 { /*Tableau : titres*/
	font-size: 30px;
}
h3 { /*Tableau : notions*/
	font-size: 24px;
	font-family: "calibri";
}

h4 { /*Contenu : grands titres rouges*/
	color: #370028;
	font-size: 30px;
	font-weight: bold;
	text-decoration: underline;
	font-family: "Bernard MT Condensed";
	letter-spacing: 1px;
}
h5 { /*Contenu : titres sous parties noir*/
	color: black;
	font-size: 25px;
	text-decoration: underline;
	font-family: "Maiandra GD";
}
h6 { /*Contenu : Problematique*/
	color: #0a7a00;
	font-size: 25px;
	font-family: "Bradley Hand ITC";
	font-weight: bold;
}
p { /*Contenu : texte simple*/
	color: black;
	font-size: 18px;
	font-family: "Microsoft JhengHei Light";
	/*font-weight: bold;*/
}

.content{ /*Texte propre a chaque page*/
	top: 150px;
	position: relative;
	margin-left: 3%;
	margin-right: 3%;
}

a:link { /*Liens vers d'autres pages*/
	font-weight: bold; 
	text-decoration: underline; 
	color: #6d00d3;
}
a:visited { 
	font-weight: bold; 
	text-decoration: underline;
}
a:hover, a:focus, a:active { 
	text-decoration: underline; 
	color: #cf58b0;
	cursor: pointer;
}
.header:link, .header:visited { /*Liens du header vers d'autres pages*/
	color:white;
	text-decoration: none;
}
.header:hover, .header:focus, .header:active {
	color:white;
	text-decoration: underline;
}

body { /*Style global de tout le site*/
  	background-color: #e4e4e4;
  	background-attachment: fixed;
  	font-family: Arial, sans-serif;
  	margin: 0;
  	padding: 0;
}

.table-notions { /*Tableaux des notions et des auteurs*/
	position: relative;
	top: 20%;
	padding: 5px;
	background-color: #370028;
	border: solid 7px;
	border-color: #370028;
	padding: 10px;
}
.table-notions tr {
	background-color: #e4e4e4;
	padding: 5px;
}
.table-notions td {
	vertical-align: text-bottom;
}

.table-reperes { /*Tableau des reperes*/
	position: relative;
	top: 20%;
	padding: 5px;
}
.table-reperes tr {
	background-color: #e4e4e4;
	padding: 5px;
}
.table-reperes td {
	vertical-align: text-bottom;
	text-align: left;
}

header {
    background-color: #370028;
    padding: 10px;
    position: fixed;
    width: 100%;
    z-index: 1;
	display: flex;
    justify-content: center;
}
header a {
    margin: 0px 10px;
}

.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #555;
    box-shadow: 0 8px 16px #00000033;
    z-index: 1;
}
.dropdown:hover .dropdown-content {
    display: block;
    background-color: #5b436e;
}
