/*
Coloration Syntaxique par Derfum - derfum@free.fr
Script libre de droits, laissez simplement (s'il vous plait !) la ligne précédente en commentaire.
Paramètres modifiables : tout (!) sauf les noms.
- Anchor  : symboles <?php et ?>
- Bool : Booléens true et false
- Code : Le code en entier
- Comment : Commentaires
- Funct : (lien) fonctions php
- Int : Chiffres
- KeyWord : mot-clé (if, function, while, break,...)
- NonPHP (div) : Code Non PHP (pour un fichier)
- Operator : symboles = , { } ; : ! @ & ( ) [ ] - + * | ? 
- SpeChar : symboles \n \r \' \" dans une chaine
- String : Chaine de caractères
- Var : Variable
- VarInString : Variable dans une chaine
*/
.Clr_Anchor {
	color:red;
	font-weight:bold;
}
.Clr_Bool {
	color:#575BF6;
	font-weight:bold;
}
pre.Clr_Code {
	font-size: 12px;
}
.Clr_Comment {
	color:#3B951C;
}
a.Clr_Funct:link{
	color:#3B4B72;
	background-color: #FFF9CF;
	text-decoration:none;
}
a.Clr_Funct:hover{
	text-decoration:none;
	background-color: #FF0000;
}
a.Clr_Funct:visited{
	color:#3B4B72;
	background-color: #FFF9CF;
	text-decoration:none;
}
.Clr_Int{
	color:#0000CD;
}
.Clr_KeyWord{
	color:#0000A1;
	font-weight: bold;
}
.Clr_NonPHP {
	color: Silver;
}
.Clr_Operator{
	color:#000;
}
.Clr_SpeChar {
	color:green;
}
.Clr_String{
	color: #EB7200;
}
.Clr_Var{
	color:#318395;
}
.Clr_VarInString {
	color:navy;
	font-weight:bold;
}