/*********************************
Style Sheet

*********************************/


/* HEADERS */

/* Font family for Headers */
/* (the "serif" is just to stop a warning) */
h1, h2, h3, h4
{
	font-family: "lucida calligraphy", tahoma, garamond, times, serif;
	color: #483d8b;
	font-style: italic;
}
/* Font sizes for Headers */
h1
{
	font-size: 170%;
	text-align: center
}
h2
{
	font-size: 140%; 
}
h3
{
	font-size: 110%; 
}
/* BODY OF TEXT */

/* The background for all web pages. */
body
{
	/* A "Marial Blue" color, as far as possible. */
	background-color:  #C8E2F6; 
	
}
/* The normal, standard text.  */
p
{
	/* 
	Bizarre, le premier choix ("Lucida Bright") ne fonctionne plus 2024-juin-09, et le deuxième est moche.
	En plus, ça c'est "local" sur mon laptop. Et les comportements sont différents encore sur le serveur 
	www.inquisition.ca et sur celui www.jesus-eucharistie.org! Que faire? Aucune idée. C'est Sébastien qui
	a remarqué le changement, mais je ne sais pas quand cette ligne de CSS s'est brisée.
	*/
	font-family: /* "Lucida Bright", tahoma, */ garamond, times, serif;
	font-size: 100%;
	/* By default, each paragraph seems
	to be separated a bit too much from
	the others. */
	margin-top: 12pt;
	margin-bottom: 12pt;
}
/* The top and bottom "breadcrumbs" so people can find their
way around the web site*/
p.poucethaut
{
	margin-top: 0;
	background-color: pink;
	font-size: 80%;
}
p.poucetbas
{
	margin-top: 24pt;
	margin-bottom: 0;
	background-color: pink;
	font-size: 80%;
}
span.logo
{
	color: red;
	font-family: times, serif;
	font-weight: bold;
	font-style: italic;
	font-size: 100%;
}
/* The "self-numbered list" style" */
p.list
{
	margin-left: 30pt;
}
p.list2
{
	margin-left: 60pt;
}
p.list3
{
	margin-left: 90pt;
}
p.comment
{
	margin-left: 30pt;
	font-style: italic;
}
/* Questions and answers inside the Caté-Quiz. */
p.question
{
	font-style: italic;
}
p.reponse
{
	margin-left: 30pt;
}
/* For pictures centered on the page */
p.photo
{
	text-align: center;
}
/* DEFAULT FOR TABLES */
table
{
	border-collapse:collapse;
}
td
{
	border-style: solid;
	border-width: 1px;
	border-color: black;
	padding:0pt 6pt 0pt 6pt;
	background:white;
}
/* A paragraph to hold graphics*/
p.figure
{
	text-align:center;
}
/* Horizontal Rule */
hr
{
	color:#483d8b;
}
/* VARIOUS DIVISIONS (CATÉ-QUIZ, CAPSULE DE GENTILLESSE) */
div
{
	margin-top: 	12pt;
	margin-bottom: 	12pt;
	margin-left: 	12pt;
	margin-right: 	12pt;
	padding-top: 	6pt;
	padding-bottom: 6pt;
	padding-left: 	12pt;
	padding-right: 	12pt;
}
div.capsule
{
	border-color: red;
	background: #FFE5E5;
	border-style: double;
}
div.catequiz
{
	color:#483d8b;
	background:white;
	border-style: double;
}
/* PROGRAMMING CODE STYLE */
pre
{
	/* font-family: "Courier New", courier, "sans serif"; */
	font-size: 95%;
	background:white;
}

