/* screen.css */

body {
	margin: 0;          /* Supprime les marges par defaut */
	text-align: center; /* Pour centrer le titre */
	font-family: arial, helvetica, geneva, sans-serif;
	font-size: 9pt;
	background-color: #FFFFFF;
}

fieldset {
	width: 500px;
	margin: auto;     /* Centre le bloc dans son conteneur */
	text-align: left; /* Aligne le contenu */
	padding: 10px;
}

legend {
	color: blue;      /* Automatique dans IE, pas dans Firefox */
	font-weight: bold;
}

label {
	float: left;
	width: 200px;
	padding-right: 10px;
	text-align: right;
	font-weight: bold;
	color: black;
	font-size: 14px;
}

td {
	text-align: left;
}

.bluebg {
	background-color: #CEE1ED;
}

#save {
	/*margin-left: 210px;
	margin-top: 10px;*/
}

#footer {
	font-size: 8pt;
}