/* Feuille de style css de base.
   Cette feuille de style provient du gabarit03 d'Alsacréations.
   Elle a été modifié par jQz. */
   
html {
	font-size: 100%;
}

/* Général. */

body {
	margin: 0px;
	padding: 0px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.6em;
	background-color: #fff;
}

/* Titres, Listes, Paragraphes. */

h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 0;
	font-weight: bold;
}

h1 {
	padding-top: 30px; 
	font-size: 1.75em;
	color: #5a2a20;
}

h2 {
	font-size: 1.5em;
	border-bottom: 2px solid #9fc21d;
	color: #643400;
}

h3 {
	font-size: 1.25em;
}

ul, ol {
	margin: .75em 0 .75em 24px;
	padding: 0;
}

ul {
	list-style-type: none;
}

li {
	margin: 0;
	padding: 0;
}

p {
	margin: .75em 0;
}

span.lettrine {
	float: left;
	font-size: 3em;
	font-weight: bold;
	color: #9fc21d;
	background-color: #fff;
	margin: 0px;
	padding: 0px;
	line-height: 20px;
}

/* Liens. */

a:active {
	outline: none;
}

a img {
	border: none;
}

/* Abréviation. */

abbr[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

/* Infobulles. */

a.infobulle {
	position: relative;
}

a.infobulle span {
	display: none;
}

a.infobulle:hover {
	background: none; /* Only for IE */
}

a.infobulle:hover span, a.infobulle:focus span, a.infobulle:active span {
	display: inline;
	position: absolute;
	top: 20px;
	left: 0px;
	width: 250px;
	height: 40px;
	border: 2px solid #aaa;
	background-color: #9fc21d;
	text-decoration: none;
	color: #fff;
}