.grid{
	display:flex;
	flex-direction:column;
	width:300px;
	height:150px;
	border:solid;
	}

.grid_main{
	align-items: normal;
	//display:table;
	//table-layout:fixed;
	}	
.grid_header{
	//display: table-row;
    position: sticky;
    top: -5px; /* Correspond à la bordure de .form_body */
    background-color: gray;
	}
.grid_header_column{
	
	}
.grid_body{
	//display:table-row;
	}
.grid_footer{
	
	}
.grid_grid{
	/* flex:1;  Utile pour centrer la mention No records mais effet de bord : les enregistrements des grids maximisent l'espace disponible. */
	}
.records_records{
	display:table;
	table-layout:fixed;
	}
.records_record{
	display:table-row;
	}
.grid_record[selected=true]{
	color:white;
	background-color:navy;
	}
.grid_ths, .grid_record_td{
	cursor:default;
	padding:2px 5px;
	//border:solid 1px;
	box-sizing:border-box;
	}
.grid_action{
	cursor:pointer;
	margin:2px 5px;
	user-select: none;
	}