*, *::before, *::after 
{
    box-sizing: border-box;
}

body
{
    padding: 0px;
    margin: 0px;
    font-family: Arial;
    font-size: 18px;
}

button {
	background-color: #a590c5;
	color: #FFFFFF;
	font-size: 1.1em;
	padding: 4px 8px;
	border: none;
	border-radius: 5px;
}
    
    
#entete
{
	height:40px;
	background-color: #DEDEDE;
	position:relative;
}


#corps
{
	height:calc(100vh - 42px);
	overflow:hidden;
	font-size: 0px;
}

#menugauche
{
	width: 200px;
	height:100%;
	overflow: auto;
	display:inline-block;
	vertical-align: top;
	font-size: 1rem;
	border-right:2px solid #888888;
	background: #FFFFFF;
}


.elementmenugauche 
{
	width:70%;
	margin: 10px 14.5%;	
	border:1px solid #888888;
	border-radius: 10px;
	text-align:center;	
	transition:500ms;
	background-color: #FFFFFF;
	box-shadow: 2px 2px 4px #AAAAAA;
	padding-top:10px;
	padding-bottom:10px;
}

.elementmenugauche img
{
	height:50px;	
	display:inline-block;
	
}

.ifrconteneur
{
	width:100%;
	height:100%;
	border:none;
}

.elementmenugauche:hover
{
	cursor: pointer;
	transform:scale(1.1);
}

.elementmenugauche.selected 
{
	font-weight:600;
	background-color: #efeee0;
	
}

#conteneur
{
	width: calc(100vw - 202px);
	height:100%;
	overflow: auto;
	display:inline-block;
	vertical-align: top;
	font-size: 1rem;
	background: #efeee0;
}



button:hover
{
	cursor:pointer;
} 

#identifiant
{
	float:right;
	padding-right:5px;	
	height:100%;
	display:flex;
	justify-content: center;
	align-items: center;
}
        
#identifiant button
{
	margin-left:15px;
}
        
        