body {
	margin: auto; /*body centré*/
    width: 1300px; 
    height: 700px;
    font-family: Arial;
    background-color: white;
 	position: relative;
 	/*border: 1px solid gray;*/
}

#ico_dom{
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 0px;
	line-height: 5pt;
	text-align: center;
 	/*border: 1px solid blue;*/
}
.bouton_dom{
	display : block;
	height: 44px;
	width: 78px;
	padding-left: 2px;
	padding-top: 4px;
	border: none;
	background-color: rgb(234,234,234);
	border-radius: 10px;
	box-shadow: 4px 4px 4px rgb(48,48,48) inset;
}
#preced{
	position: absolute;
	bottom: 15px;
	right: 15px;
	line-height: 5pt;
	text-align: center;
 	/*border: 1px solid red;*/
}
.bouton_preced{
	display : block;
	height: 44px;
	width: 46px;
	padding-left: 2px;
	padding-top: 4px;
	border: none;
	background-color: rgb(234,234,234);
	border-radius: 10px;
	box-shadow: 4px 4px 4px rgb(48,48,48) inset;
}

#ico_ori{
	position: absolute;
	bottom: 100px;
	right: 0px;
	line-height: 5pt;
	text-align: center;
 	/*border: 1px solid green;*/
}

#espace_def{
	margin: auto;
	width: 500px;
	border: 1px solid green;
}

/* Fonction acro (expliciter l'acronyme d'une fonction) */
.abr{
	display: inline-block;
	position: relative;
}
.abr:hover .def{
	display: inline-block;
}
.def{
	display: inline-block;
	display: none;
	float: left;
	width: 0px;
}
.deco{
	border: 1px solid silver;
	border-radius: 5px;
	font-family: Arial;
	font-size: 10pt;
	color: maroon;
	font-style: italic;
	background-color: rgb(254,248,230);
	position: relative;
	bottom: 20px;
}
/* Fin des propriétés relatives à la fonction acro */

/* Fonction ex (exemples individuels dans les tablx Récap) */
/* Fin des propriétés relatives à la fonction ex */

/* Glissement latéral des pages appelées (non utilisé) */
#gche{
animation: gliss_gche 0.5s;
}
@keyframes gliss_gche{
	from{
	margin-left: 100%;
	width: 100%;
	}
	to{
	margin-left: 0%;
	width: 100%;
	}
}
#drte{
animation: gliss_drte 0.5s;
}
@keyframes gliss_drte{
	from{
	margin-left: -100%;
	width: 100%;
	}
	to{
	margin-left: 0%;
	width: 100%;
	}
}
/* Fin des propriétés relatives au glissement */

#espace{					/* dim max des tableaux*/
	width: 1220px; 
    height: 690px; 
    margin-top: 10px;
	position: relative;
	/*border: 1px solid blue;	/* LIGNE A COMMENTER AVANT MISE EN EXPLOIT */
}

#tableau{
	z-index: 1;
	/* positionnement de la div #tableau dans la div #espace */
	position: absolute;               	/* au départ tableau est dans le coin supérieur gauche de "espace" */
  	left: 70%; top: 30%;            	/* décalage de tableau en % des dimensions de espace  : vers la drte 70%/ ; vers le bas 30% */
	transform: translate(-70%, -30%); 	/* décalage de tableau en % de ses propres dimensions : vers la gche 70%/ ; vers le haut 30% */
	/* le coin supérieur droit de tableau se retrouve par rapport au coin supérieur droit de espace 
	à une distance de 30% de la différence des dimensions (espace-tableau) */
	-webkit-transform: translate(-70%, -30%); 	/* Safari et Chrome >23.0 */
	-ms-transform: translate(-70%, -30%); 	    /* IE >10 */
	-moz-transform: translate(-70%, -30%);  	/* Firefox >16.0 */
	-o-transform: translate(-70%, -30%);    	/* Opera >12.5 */
	 
	font-family: Arial;
	font-size: 11pt;
	line-height: 14pt;
	color: navy; 
}
table { 
	table-layout: fixed;				/* largeur des colonnes fixées*/
	border-collapse: collapse;			/* bordures fusionnées */
}
table tr td {
	border: 1px solid gray;
	padding: 0.15em 0.1em 0.15em 1em;
	vertical-align: top;
}
.c7{
	font-size: 7pt;
	font-style: normal;
	font-weight: bold;
	color: navy;
	}
.c8 {
	font-size: 8pt;
	font-weight: normal;
	color: silver;
	text-align: left;
}
.c10 {
	font-size: 10pt; 
	font-weight: bold;
	vertical-align: middle;
	background-color: rgb(236,236,236);
	border: 1px solid gray;
}
.c16 {
	font-size: 16pt;
	font-weight: normal;
	text-align: left;
}
.vide {
	/*background-color: rgb(245,250,255);*/
	background: url("../images/ico_vide.png");
}

.bar1{
	font-size: 10pt; 
	font-weight: bold;
	vertical-align: middle;
	border: 1px solid gray;
	background: url("../images/bar_f53.png");
}
.bar2{
	font-size: 10pt; 
	font-weight: bold;
	vertical-align: middle;
	border: 1px solid gray;
	background: url("../images/bar_f53a.png");
}
.ico_bas{
	position: relative;
	left: 0em;
	top: 0.15em;
}

a{
	color: rgb(0,0,255);
	font-style: italic;
	text-decoration: none;
}
a:hover{"
	color: rgb(0,0,255);
	font-style: italic;
	text-decoration: underline;
}

.ti{							/* indentation 1ère ligne */
	text-indent: 1em;
	display: block;
}
.b {							/* bleu */
	color: navy;
}	
.v {                         /* vert */
	color: green;
}
.r {							/* rouge */
	color: red;
}
.bg{							/* bleu gras */
	color: navy; 
	font-weight: bold;
}
.vg{							/* vert gras */
	color: green; 
	font-weight: bold;
}
.rg{							/* rouge gras */
	color: red; 
	font-weight: bold;
}
.bs{
	color: navy;     			/* bleu souligné */
	text-decoration: underline;
}	
.vs{							/* vert souligné */
	color: green;
	text-decoration: underline;
}
.rs {							/* rouge */
	color: red;
	text-decoration: underline;
}
.bi{							/* bleu italique */
	color: navy; 
	font-style: italic;
}
.sg{							/* surligné gris */
	/*color: black;*/
	background-color: rgb(210,210,210);
}

