@charset "utf-8";
/*=========STYLES GÉNÉREAUX=*/
body {
	font-family: Anton;
    background-color: #8333FF;
}
.global{
	margin: 0 auto;
	width: 1300px;
    background-image: url(../images/fond.jpg);
}
header{
	width: 960px;
	padding-top: 80px;
	padding-left: 100px;
	display: grid;
}
article{
	width: 960px;
	padding-top: 10px;
	padding-left: 100px;
	padding-bottom: 150px;
	display: grid;
}
.content{
	width: 950px;
	padding-top: 5px;
	padding-bottom: 20px;
	display: grid;
	grid-template-columns: 33.3% 33.3% 33.3%;
	grid-template-areas: 'convocation proces divers'
}

h1{
	text-align: center;
	font-size: 2.5rem;
	font-weight: bold;
}
h2{
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
}
.texte1{
text-align:center;
font-size: 0.8rem


}
.convocation{
	text-align: left;
	font-size: 1rem
	
}
.proces{
	text-align: left;
	font-size: 1rem
}
.divers{
	text-align: left;
	font-size: 1rem
}
/*=========STYLES Tableau=*/
table{
	border-collapse: collapse;
	width: 100%;
}
th{
	background-color: #EAECEE;
}
tr{
	height: 25px;
	text-align: center;
	padding: 15px;	
}
td{
	height: 25px;
	text-align: center;
	vertical-align: bottom;
	padding: 15px;
}
th, td {
  border-bottom: 1px solid black;
}
tr:hover {background-color: #f5f5f5;}
/* unvisited link */
a:link {
  color: black;
}

/* visited link */
a:visited {
  color: #3B087D;
}

/* mouse over link */
a:hover {
  color: red;
}
iframe{
	margin: 0 auto;
}

/* selected link */
a:active {
  color: darkred;
}