@charset "utf-8";
/* CSS Document */

.zone_libre .frappe_lettre caption /* Titre du tableau */
{
	font-family: Arial, Times, "Times New Roman", serif;
	font-weight: bold;
	font-size: 1.2em;
	color: #000066; /* Pour éviter que le titre ne soit trop collé au tableau en-dessous */
	margin-bottom: 20px;
}

.zone_libre .frappe_lettre /* Le tableau en lui-même */
{
	border: 4px outset #000099; /* Bordure du tableau avec effet 3D (outset) */
	border-collapse: collapse;
	margin: auto;
	height: auto;
	width: 500px;
}

.zone_libre .frappe_lettre th /* Les cellules d'en-tête */
{
	background-color: #0000FF;
	color: white;
	font-size: 12px;
	font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
	width: 20%;
	padding-top: 2px;
	padding-bottom: 2px;
}

.zone_libre .frappe_lettre td /* Les cellules normales */
{
	border: 1px solid black;
	font-family: "Comic Sans MS", "Trebuchet MS", Times, "Times New Roman", serif;
	text-align: center; /* Tous les textes des cellules seront centrés*/
	padding: 5px;
	background-color: #FFFFCC;
}

