/*

---------		Par Forissier Pierrick

Cr&eacute;&eacute; le 10 Janvier 2007




*/

/* Certains des styles ici pr&eacute;sents ne devraient pas &ecirc;tre chang&eacute;s, comme .souligne, .barre etc. */
.fondbloc { background-color: rgb(246, 232, 206); }
.fondbloc2 { background-color: rgb(186, 218, 223); }
.colorehaut { color:#a19377; }
.soulignecolore { text-decoration: underline; color:#366c61; }
.souligne { text-decoration: underline; }
.barre { text-decoration: line-through; }
.italique { font-style: italic; }
.gras { font-weight:bold; }





/* Petit arrangement CSS pour une diff&eacute;rence entre IE et Firefox. On r&eacute;tablit en fait la
hauteur en auto (par d&eacute;faut), et on utilise min-height pour d&eacute;finir une hauteur minimale
sous Firefox et autres navigateurs comprenant le CSS 2. */
html>body .information, html>body .attention, html>body .question, html>body .erreur
{
	height:auto;
	min-height:30px;
}

.orange { color: rgb(236, 118, 0); }
.noir { color: black; }
.marron { color: maroon; }
.vertf { color: green; }
.olive { color: olive; }
.marine { color: navy; }
.violet { color: purple; }
.bleugris { color: teal; }
.argent { color: silver; }
.gris { color: rgb(100, 100, 100); }
.rouge { color: red; }
.vertc { color: lime; }
.jaune { color: yellow; }
.bleu { color: blue; }
.rose { color: fuchsia; }
.turquoise { color: aqua; }
.blanc { color: white; }

.arial { font-family: Arial, serif; }
.times { font-family: Times, serif; }
.courrier { font-family: Courier, serif; }
.impact { font-family: Impact, serif; }
.geneva { font-family: Geneva, serif; }
.optima { font-family: Optima, serif; }

.ttpetit { font-size: xx-small; }
.tpetit { font-size: x-small; }
.petit { font-size: small; }
.gros { font-size: large; }
.tgros { font-size: x-large; }
.ttgros { font-size: xx-large; }

.centre { text-align: center; }
.gauche { text-align: left; }
.droite { text-align: right; }
.justifie { text-align: justify; }

.flot_gauche { float: left; }
.flot_droite { float: right; }
.flot_gauche, .flot_droite { margin:1em; }

.position_relatif { position: absolute;
   
   top: 30px; }

.liste_i { list-style-type: lower-roman; }
.liste_I { list-style-type: upper-roman; }
.liste_a { list-style-type: lower-latin; }
.liste_A { list-style-type: upper-latin; }
.liste_1 { list-style-type: decimal; }
.liste_rectangle { list-style-type: square; }
.liste_cercle { list-style-type: circle; }
.liste_disque { list-style-type: disc; }

.citation /* Titre du code, de la citation et du spoiler */
{
	font-weight: bold;
	display:block;
	width:90%;
	margin:auto;
}

.citation2 /* Contenu du code, de la citation et du spoiler */
{
	border:1px dashed #000000;
	background-color:#c3ae9c;
	width: 90%;
	padding: 8px;
	margin:auto;
}

.smilies
{
	vertical-align: middle;
}

/* Les tableaux zCode */

.tab_user 
{
	border-collapse:collapse;
	border:2px solid #2C485C;
	margin: 0px auto 0px auto;
}

.tab_user caption
{
	text-align:center;
	font-weight:bold;
}

.tab_user td
{
	border:1px solid #2C485C;
	background-color:#E9F0F5;
	padding:2px;
}

.tab_user th
{
	background-color: #FBFCFD;
	background-image: url('../../include/images/designs/1/menu/header.png');
	background-repeat: repeat-x;
	border-right:1px solid #2C485C;
	padding:2px;
}

h3 /* Balise s&eacute;mantique "Sous-titre 1" */
{
	font-size:1.5em;
	margin-left:40px;
	padding-left:5px;
	background-color:#BEDBF3;
	border-left:3px solid #B5C4D3;
	border-bottom:1px solid #B5C4D3;

}

h4 /* Balise s&eacute;mantique "Sous-titre 2" */
{
	font-weight:bold;
	font-size:1.1em;
	font-style:italic;
	padding-left:20px;
}

h3,h4
{
	display:inline;
}