/* Le titre de la page */
h1
{
    text-align: center;
}

p
{
    text-align: center;
}

.signature
{
    text-align: right;
}

li
{
    width: 350px; /* On a indiqué une largeur (obligatoire) */
    margin: auto; /* On peut donc demander à ce que le bloc soit centré avec auto */
    border: 1px solid black;
    text-align: justify;
    padding: 12px;
    margin-bottom: 20px;
}
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
/*fond d'ecran*/    
    background-size:90%;
    background-repeat:no-repeat;
    background-image: url(images/Logo_JeanMonnet_vector.png);
    background-position: center;
/*Rend le fond d'ecran transparent grace à une valeur defini dans RGB*/    
    background-color: rgba(255,255,255,0.8);
    background-blend-mode: lighten;
}
/* dimension et positionnement du bloc conteneur de l'image */
/*#arriere {
	position: absolute;
	right: 10em;
	top: 5em;
	height : 20em;
	width : 30em;
}

/* l'image occupe toute la place de son bloc conteneur */
#arriere img {
	width : 15%;
	height: 15%;
}
#arriere p {
	position: absolute;	/* placement du texte par-dessus l'image */
	top: 1em;
	left: 1em;
	font-size: 1.5em;
	color: white;
}

/* Lien par bouton */
.styled {
    text-align: justify;
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    font-size: 1rem;
     

    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color: rgba(220, 0, 0, 1);
    background-image: linear-gradient(to top center,
                                      rgba(0, 0, 0, .2),
                                      rgba(0, 0, 0, .2) 30%,
                                      rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
}

.styled:hover {
    background-color: rgba(255, 0, 0, 1);
}

.styled:active {
    box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6),
                inset 2px 2px 3px rgba(0, 0, 0, 0.6);
}
table{
margin: auto;
}
td {
    border: 2px solid #333;
    text-align: center;
    
}

thead,
tfoot {
    background-color: rgb(40, 152, 243);
    color: #fff;
}