/*
scode.css
---------		Par Jarod01

Créé le 25 Decembre 2008


Description : apparence du texte sCode

*/

/* Certains des styles ici prï¿½sents ne devraient pas ï¿½tre changï¿½s, comme .souligne, .barre etc. */

.souligne { text-decoration: underline; }
.barre { text-decoration: line-through; }
.italique { font-style: italic; }
.gras { font-weight:bold; }

.rmq /* Style des "remarques" : information, erreur, question et attention */
{
	background-position:10px center;
	background-repeat: no-repeat;
	padding: 8px;
	padding-left: 55px;

}

.erreur
{
	color: red;
	font-weight:bold;
	background-image: url('http://www.sciencesettechniques.com/images/scode/rmq_erreur.png');
}

.question
{
	color: #3366CC;	
	background-image: url('http://www.sciencesettechniques.com/images/scode/rmq_interrogation.png');
}

.attention
{
	color: #CCCC33;
	font-weight: bold;	
	background-image: url('http://www.sciencesettechniques.com/images/scode/rmq_attention.png');
}

.information
{
	 color: #00CC33;
	background-image: url('http://www.sciencesettechniques.com/images/scode/rmq_information.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;
}

.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; }

.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; }

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

div.code2, .citation2, .spoiler2, .spoiler2_hidden /* Contenu du code, de la citation et du spoiler */
{
	border:1px dashed #e6e6e6;
	background-color:white;
	margin-left: 40px;
	margin-right: 40px;
	padding: 8px;
	overflow: auto;
}

@media screen {
	.code2, .citation2, .spoiler2, .spoiler2_hidden /* Contenu du code, de la citation et du spoiler */
	{
	max-height: 700px;
	}
}

.syntaxtable
{
	width: 90%;
	border: 1px solid red;
}

.syntaxtable .linenos
{
	width: 30px;
}

.syntaxtable, .syntaxtable tr, .syntaxtable td, .syntaxtable tbody
{
	margin: 0px;
	padding: 0px;
	padding-left: 10px;
	border-collapse: collapse;
	border: none;
	background-color: white;
}

.code2 pre, span.code2
{
	font-family:'Courier New', 'DejaVu Sans Mono', monospace;
	font-size:1.0em;
	line-height: 110%;
}

.ln-xtra { color: #880; background-color: #ffb; }

div.console, .console table, .console td, .console tr
{
	background-color:black;
	color:white;
	border:none;
}

.console .linenos
{
	display: none;
}

.code_lien_numerotation
{
	font-size:0.8em;
}

.smilies
{
	vertical-align: middle;
}

/* Les tableaux zCode */

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

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

.tab_user td
{
	border:1px dashed #cfcfcf;
	background-color:#efefef;
	padding:2px;
}

.tab_user th
{
	background-color: #7c9fbc;
	background-image: url('../../images/designs/24/news/fondinfos.png');
	background-repeat: repeat-x;
	border-right:1px solid #cfcfcf;
	padding:2px;
	color: white;
}

#centre h3 /* Balise sï¿½mantique "Sous-titre 1" */
{
	font-size:1.5em;
	margin-left:40px;
	margin-right: 100px;
	padding-left:5px;
	background-color:#efefef;
	border-left:3px solid #d0def9;
	padding-right: 5px;
	display: inline;
}

#centre h4 /* Balise sï¿½mantique "Sous-titre 2" */
{
	font-weight:bold;
	font-size:1.2em;	
	padding-left:20px;
	color:black;
	display: inline;
	padding-right: 5px;
	text-decoration:underline;
}

span.console {
    background-color: black;
    color: white;
    padding: 1px;
    padding-left: 5px;
    padding-right: 5px;
}
    
