/*   Reset du site de Saint-Urbain - V0.1   */

/* reset de tous les éléments HTML puis attribution des valeurs par défaut*/

html, body, div, span,					/* conteneurs */
a, address, object, iframe, img,   	/* divers */
h1, h2, h3, h4, h5, h6, p, tt, pre, abbr, acronym, cite, code, blockquote, q, dfn, var,   				/* éléments de texte */
form, fieldset, label, legend, kbd, textarea,  /* formulaires */
dl, dt, dd, ol, ul, li,  						/* listes */
table, caption, tbody, tfoot, thead, tr, th, td {  /* tableaux */
    margin: 0;
    padding: 0;
}

/* structures */

html {
    font-size: 100%; 		/* à cause bug IE... hé oui ! */
}
body {
	font-family: Verdana, "DejaVu Sans", "Lucida sans", helvetica, tahoma, arial, sans-serif;
/*	font-family: sans-serif; */
	font-weight: normal;
	font-size: 1em;		/* 1 em = 16 px par défaut pour firefox et autres en principe */
	font-size-adjust: 0.58;  /* pour Verdana */
	/*line-height: 1.5;  	*/
}

/* éléments de texte */

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}
h1{
	font-size: 1.75em;
	line-height: 1.15;/* facteur multiplicateur de la taille de police pour l'interligne */
	margin: 1em 0;
}
h2{
	font-size: 1.5625em;
	line-height: 1.2;
	margin: 0.6em 0;
}
h3{
	font-size: 1.375em;
	line-height: 1.2;
	margin: 0.6em 0;
}
h4{
	font-size: 1.1875em;
	line-height: 1.2;
	margin: 0.6em 0;
}
h5{
	font-size: 1em;
	line-height: 1.1;
	margin: 0.3em 0;
}

h6{
	font-size: 0.875em;
	line-height: 1.1;
	margin: 0.3em 0;
}
p {
	font-size: 0.8em;
	line-height: 1.5;
	font-weight: normal;
}
ul {
	font-weight: normal;
}
li {
	line-height:1.5em;
	font-weight: normal;
	margin: 0.15em 0;
}
code, samp, tt {
	font-family: "DejaVu Sans Mono","Bitstream Vera Sans Mono","lucida console","courier new", monospace;
	font-size: 0.6875em;
	line-height: 1.3;
}
input, textarea {
	font-family: "DejaVu Sans Mono","Bitstream Vera Sans Mono","lucida console","courier new", monospace;
	font-size: 0.9375em;
	line-height: 1.3;
}
pre, kbd {
	font-family: "Lucida Bright", Georgia, "Times New Roman", Times, Bodoni, serif;
	font-size: 0.6875em;
	line-height: 1.2;
	font-weight: normal;
}
pre {
	white-space: pre;
}
cite {
	font-size: 1em;
	font-style: italic;
	color: #13055C;
}
q {
	quotes: none;
	color: #555555;
	font-size: 0.9em;
}
blockquote {
	quotes: "«" "»";
	font-family: cursive; /*cursive fantasy*/
	line-height:1.5em;
	margin-left: 2em;
}
blockquote>p {
	font-size: 0.75em;
}
hr {
	margin: 1em 0;
}

/* a voir plus tard

blockquote: before, blockquote: after, q: before, q: after {
	content: none;
	content: "";
}
abbr, acronym, dfn {
	border-bottom: 1px dotted;
	cursor: help;
	font-style: normal;
	font-variant: normal;
}
var {
	font-style: normal;
}
*/

/* liens hypertexte */

a {			/*non visité */
	color: #0000FF;
	font-weight: normal;
	text-decoration: none;
}
a:visited {			/* visité */
	color: #551A8B;
	font-weight: normal;
	text-decoration: none;
}
a:hover {			/* survolé */
	color: #FF0000;
	/*font-size: smaller;*/
	font-weight: bold;
	text-decoration: none;
}
a:focus {
	outline: dotted 1px;
	text-decoration: none;
}

/* images */

img {
	border: none;
}

/* listes */
/*
ul {
	list-style: disc outside none;
}
ol {
	list-style: decimal outside none;
}
li {
	margin-left: 2em;
}
li ul, li ol {
	margin-bottom: 0;
}
dd {
	margin-bottom: 1em;
}
dt {
	font-weight: bold;
}
*/

/* mise en formle du texte */
/*
big {
	font-size: 1.25em;
}
small, sub, sup {
	font-size: 0.85em;
}
sub, sup {
	line-height: 1;
}
sub {
	vertical-align: bottom;
}
sup {
	vertical-align: top;
}
del, s, strike {
	text-decoration: line-through;
}
ins {
	border-bottom: 1px dotted;
	text-decoration: none;
}
bdo {
	border-bottom: 1px dotted;
}
u {
	text-decoration: underline;
}
em, i, blockquote, q, cite {
	font-style: italic;
}
strong, b {
	font-weight: bold;
}
*/

/* formulaires */
/*
fieldset {
	padding: 1em;
}
legend {
	font-weight: bold;
	padding: 0 .25em;
}
input, textarea, select, button {
	font-family: inherit;
	font-size: 1em;
}
input[type=button], input[type=file], input[type=image], input[type=reset], input[type=submit], button[type=button], button[type=reset], button[type=submit]{
	cursor: pointer;
	line-height: 1;
}
input[type=text], input[type=password], textarea {
	padding: 1px;
}
textarea {
	line-height: 1.25;
	text-align: left;
}
*/

/* tableaux */

table {
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 1.3;
}
caption, th, td {
	text-align: left;
	vertical-align: middle;
}
th, td {
	border: 1px solid;
	padding: 0;
}
caption {
	padding-bottom: 1em;
}
th {
	font-weight: bold;
}

