/*
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:purple;
	font-weight:bold;
}
pre.Clr_Code {
	font-size: 12px;
}
.Clr_Comment{
	color:gray;
}
a.Clr_Funct:link{
	color:navy;
	text-decoration:none;
	border-bottom: 1px dashed orange;
}
a.Clr_Funct:hover{
	text-decoration:none;
	border-bottom: 1px solid orange;
}
a.Clr_Funct:visited{
	color:navy;
	text-decoration:none;
	border-bottom: 1px dashed orange;
}
.Clr_Int{
	color:red;
}
.Clr_KeyWord{
	font-weight: bold;
}
.Clr_NonPHP {
	color: Silver;
}
.Clr_Operator{
	color:green;
}
.Clr_SpeChar {
	color:green;
}
.Clr_String{
	color:blue;
}
.Clr_Var{
	color:purple;
}
.Clr_VarInString {
	color:navy;
	font-weight:bold;
}