/*
Fond  RVB 215 - 230 - 255 Hexa #D7E6FF

Texte RVB 150 - 70 - 10   Hexa #96460A Tahoma, Geneva, sans-serif

1em is equal to the current font size. The default text size in browsers is 16px. So, the default size of 1em is 16px.
The @media rule allows different style rules for different media in the same style sheet.
@media print  { p.test {font-family:times,serif;font-size:10px;} }
http://www.w3schools.com/css/css_navbar.asp
_____________________________________________________________________________________
Exemple d'affichage des formulaires
input[type="text"]
{
width:150px;
display:block;
margin-bottom:10px;
background-color:yellow;
}
input[type="button"]
{
width:120px;
margin-left:35px;
display:block;
color:#96460A;
}
_________________________________________________________________________________________________
*/
html {overflow:hidden;margin:0px;padding:0px;}
body 
{
	background:#D7E6FF url('../images/bg_cemi98.png') top center repeat-x;
/*	background-color:#D7E6FF; */
	font-size:100%;
	margin:15px;
	padding:10px;
	color:#96460A;
	font-family:Courier;
} 
.contenu{width:955px;}

.page{
	width:955px;
	margin:0 auto 0 auto;
	padding:0;
}




h1 {font-size:2.5em;} /* 40px/16=2.5em */
h2 {font-size:1.875em;} /* 30px/16=1.875em */
p {font-size:0.875em;} /* 14px/16=0.875em */

p.normal {font-style:normal;}
p.italic {font-style:italic;}
p.oblique {font-style:oblique;}

a:link {color:#843E3E;}    /* unvisited link */
a:visited {color:#A45E5E;} /* visited link */
a:hover {color:#A81200;}   /* mouse over link */
a:active {color:#0000FF;}  /* selected link */

table
{
border-collapse:collapse;
width=90%
padding:5px;
}
td, th
{
border:1px solid #96460A;
padding:5px;
}
th
{
background-color:#96460A;
color:white;
}
.titre
{
	background-color:#96460A;
	color:white;
	border:1px solid white;
}
table.affiche
{
border:1px solid #96460A;
}
table.masque
{
border:0px;
}
td.masque
{
border:0px;
vertical-align : top;
}
#bloc-fixe { 
	position:fixed;
	overflow:auto;
	right:0px;
	left:0px;
	top:0px;
	height:100px;
	border:solid 0px;
	font-size:90%;
	/*background-color:#98bf21;*/
}
#contenu { 
	position:fixed;
	overflow:auto;
	right:0px;
	left:0px;
	bottom:0px;
	top:101px;
	border:solid 0px;
	padding:10px;
}

#pad { 
	padding:10px;
}