.logocci
{
	height: 50px;
}

.logocci2
{
	width: 400px;
}


.droite
{
	padding-right: 5px;
	text-align: right;
}


.figure {
 justify-content: center;
}

.controls {
  width: 100%;
  height: 8.0971659919028340080971659919028%; /* of figure's height */
  position: relative;
}


.cont
{
	position:fixe;
	height: 100%;
	background-color: white;
	}


#conteneur
{	
	display:flex;
	justify-content: space-between;
	border-radius: 10px 10px 10px 10px;
	border:0px solid #154576;
	background-color:white ;
	height: 50px;
	opacity: 1;
}

#conteneur2
{	
	display:flex;
	justify-content: space-between;
	border-radius: 10px 10px 10px 10px;
	border:0px solid #154576;
	background-color:white ;
	height: 30px;
	opacity: 1;
}

#conteneur3
{	
	display:flex;
	justify-content: center;
	border-radius: 10px 10px 10px 10px;
	border:0px solid #154576;
	background-color:;
	height: auto;
	opacity: 1;
}

#conteneur20
{	
	display:flex;
	justify-content: space-between;
	border-radius: 10px 10px 10px 10px;
	border:0px solid #154576;
	background-color:white ;
	height: auto;
	opacity: 1;
}

#conteneur23
{	
	display:flex;
	justify-content: stretch;
	border-radius: 10px 10px 10px 10px;
	border:0px solid #154576;
	background-color:white ;
	height: auto;
	opacity: 1;
}

#contenu
{	
	height: auto;

	margin-top: 50px;
	background-color:white ;
}


.element1
{
	
	background-color: ;
}

.element2
{
	background-color: ;
}

.element3
{

	background-color: ;
}

.element4,.element5,.element6,.element7,.element8,.element9,.element10,.element11
{
	width: 100px;
	text-align: center;
	height: 50px;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	background-color:#cde ;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 6px 6px 12px black;
}

.element40,.element41
{
	width: 45%;
	text-align: left;
	height: auto;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	background-color: ;
	border-radius: 10px 10px 10px 10px;

}

.element42
{
	width: auto;
	text-align: Center;
	height: auto;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	background-color: #F5E7F4;
	border-radius: 10px 10px 10px 10px;

}

.element42bis
{
	width: auto;
	text-align: Center;
	height: auto;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	background-color: ;
	border-radius: 10px 10px 10px 10px;

}


body
{	
background-color: rgb(21,39,104);
}


#page
{	
	
	width: 70%;
	margin:auto;
	border-radius: 10px 10px 10px 10px;
	border:0px solid blue;
	background-color: white;
}

.titrepage
{
	margin-top: 0px;
	border:0px solid red;
	font-size: 35px;
	font-weight: bold;
	text-align: center;
}


label.normal
{	
	display: inline-block;
	padding-left: 10px;
	width: 200px;

}




input.reg
{
	width: 60px;
}




 p
 {
 	padding-left: 10px;
 }

 


.menu {
  margin:0;
  padding:0;
  list-style:none;
  border:0px solid #48B;
  line-height:2em;
  height:2em;
  width:6em;
}
.menu ul,
.menu li {
  margin:0;
  padding:0;
}
.menu li {
  cursor:pointer;
}
.menu li a{
  display:block;
  white-space:nowrap;
  color:#00f;
  text-decoration:none;
  padding-left: 20px;
}
.menu li ul {
  height:0;
  width:0;
  opacity:0;
  border-radius: 10px 10px 10px 10px;
  position:relative;
  z-index:1000; 
  margin-left:-180px; /* because bordure */
  margin-top:-50px;
  overflow:hidden;
  background:#EEEEEC;
  border:1px solid #48B;
  box-sizing:border-box;
  transition:all 0.5s ease;
}
.menu li:hover ul{
  height:40em;
  width:12em;
  opacity:1;
}
.menu ul li:hover{
  background:#cde;
}





input{
	width: auto;
		
	border-style:solid;
}


td{
	text-align: center;
}

.table-fixed {
    /* rules for fixed columns / rows */
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: auto;
    scrollbar-width: thin;
    /* decoration */
    border-width: 1px;
  
    border-style: solid;
    /* fixed size */
   
    max-height: 300px;
}

/* scrollable body */
.table-fixed tbody {
    display: block;
    width: 100%;
    height: 100%;

}

/* columns */
.table-fixed tr {
    display: grid;
    grid-auto-flow: column;
    justify-content: left;
}
.table-fixed tr > * {
    /* column width */
    width: 180px;
    border-width: 1px;
    border-style: hidden;
    margin-left: -1px;
    margin-top: -1px;
}


.table-fixed th {
    font-weight: bold;
    background-color: grey;
}

/* fixed head and foot */
.table-fixed thead
{ top: 0;
    border-width: 0 0 1px;
    display: block;
    position: sticky;
    z-index: 2;
    width: 100%;
    border-style: solid;
}

.table-fixed tr > :first-child {
    position: sticky;
    left: 0;
    z-index: 1;
}