/*
zcode.css
---------		Par Karamilo & M@teo21, modifié par bluestorm

Créé le 15 Juillet 2004


Description : apparence du texte zCode

*/

/* Certains des styles ici présents ne devraient pas être changés, comme .souligne, .barre etc. */

.souligne { text-decoration: underline; font-style: normal; }
.barre { text-decoration: line-through; }
.italique { font-style: italic; }
.gras { font-weight:bold; }

.remarque
{
	background-position: 10px center;
	background-repeat: no-repeat;
	padding: 8px;
	padding-left: 50px;
}

.erreur
{
	color: red;
	background-image: url('../images/zcode/zcode_erreur.png');
}

.question
{
	color: blue;
	background-image: url('../images/zcode/zcode_question.png');
}

.attention
{
	color: rgb(236, 118, 0);
	background-image: url('../images/zcode/zcode_attention.png');
}

.information
{
	color: green;
	background-image: url('../images/zcode/zcode_info.png');
}

.information, .attention, .question, .erreur
{
	height:30px; /* On fixe la hauteur, que IE interprète comme une "hauteur minimale" */
	text-align:left;
}

/* Petit arrangement CSS pour une différence entre IE et Firefox. On rétablit en fait la
hauteur en auto (par défaut), et on utilise min-height pour dé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;
}

.couleur_orange { color: rgb(236, 118, 0); }
.couleur_noir { color: black; }
.couleur_marron { color: maroon; }
.couleur_vertf { color: green; }
.couleur_olive { color: olive; }
.couleur_marine { color: navy; }
.couleur_violet { color: purple; }
.couleur_bleugris { color: teal; }
.couleur_argent { color: silver; }
.couleur_gris { color: rgb(100, 100, 100); }
.couleur_rouge { color: red; }
.couleur_vertc { color: lime; }
.couleur_jaune { color: yellow; }
.couleur_bleu { color: blue; }
.couleur_rose { color: fuchsia; }
.couleur_turquoise { color: aqua; }
.couleur_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; }

.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; }

.code, .citation, .spoiler /* Titre du code, de la citation et du spoiler */
{
	font-weight: bold;
	display:block;
	width:90%;
	margin: 1% auto 0% auto;
	/*margin: 1% auto -1% auto;*/
}

.code2, .citation2, .spoiler2 /* Contenu du code, de la citation et du spoiler */
{
	border:1px dashed #A3C0D5;
	background-color:white;
	width: 90%;
	padding: 8px;
	margin:auto;
}

.code2
{
	/* font-family:Courier, Arial, Times, 'Times New Roman', serif; */
	font-size:0.9em;
	margin-top:5px;
	margin-bottom:5px;
}

.console
{
	background-color:black;
	color:white;
	border:none;
}

.spoiler2
{
	cursor: pointer;
}

.spoiler3 /* Spoiler par défaut (doit être caché) */
{
	visibility: hidden;
}

.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: #296780;
	border-right:1px solid #2C485C;
	padding:2px;
	color: white;
}

.zcode h3 /* Balise sémantique "Sous-titre 1" */
{
	font-size:1.5em;
	margin-left:40px;
	padding-left:5px;
	border-left:3px solid #296780;
	border-bottom:1px solid #296780;
	display:inline;
}

h4 /* Balise sémantique "Sous-titre 2" */
{
	font-weight:bold;
	font-size:1.1em;
	font-style:italic;
	padding-left:20px;
	display:inline;
}
