/** Couleur du textes par defaut **/

body * {
    color : #333333;
    /*letter-spacing:-.1pt;*/
}

/** Classes pour la taille des textes : 10px à 26px **/

.txt10 {
    font-size:10px;
}

.txt11 {
    font-size:11px;
}

.txt12 {
    font-size:12px;
}

.txt13 {
    font-size:13px;
}

.txt14 {
    font-size:14px;
}

.txt15 {
    font-size:15px;
}

.txt16 {
    font-size:16px;
}

.txt17 {
    font-size:17px;
}

.txt18 {
    font-size:18px;
}

.txt19 {
    font-size:19px;
}

.txt20 {
    font-size:20px;
}

strong {
    font-weight:bold;
}

.error {
    color:red;
    font-weight:bold;
}

/** Titres **/

h1 {
    color : #036;
    font-weight:bold;
    font-size:13px;
    padding : 10px 10px 10px 0;
}

h2 {
    color : #036;
    font-weight:bold;
    font-size:13px;
    padding : 10px 10px 10px 0;
}

h2.marged {
    margin-left : 100px;
    padding-bottom : 0;
}

/** Paragraphes **/

p {
    padding : 0 10px 10px 0;
}

/** Liens **/

a {
    color : #595858;
    text-decoration:none;
}

a:hover {
    color : #4a4a4a;
    text-decoration:underline;
}

.chevrons {
    color : #E3853D;
}

.footer_txt a {
    color : #666;
    text-decoration:none;
}

.footer_txt a:hover {
    color : #f60;
    text-decoration:underline;
}

/** Vrai saut de ligne **/

.spacer {
    clear:both;
    font-size:0;
    line-height:0;
}

