connexion.css
Feuille de style pour la page de connexion
Définition des styles appliqués aux pages de connexion

liseretgauche : définition du liseret gauche de la fenêtre
liseretdroit : définition du liseret droit de la fenêtre
haut : définition du bandeau haut de la fenêtre
bas : définition du bandeau bas de la fenêtre
tableconnexion : définition du tableau de la fenêtre
leftalign : définition de l'alignement gauche des cellules du tableau de la fenêtre
rightalign : définition de l'alignement droit des cellules du tableau de la fenêtre
/* style pour la demande de connexion */
.liseretgauche {
    background-image: url('@URL_IMG_ImagesGrapheCnx_gauche@'); 
    background-position: left top; 
    background-repeat: repeat-y;
    width: 6px;
}

.liseretdroit {
    background-image: url('@URL_IMG_ImagesGrapheCnx_droite@');
    background-position: right top;
    background-repeat: repeat-y;
    width: 4px;
}

.haut {
    background-image: url('@URL_IMG_ImagesGrapheCnx_haut@'); 
    background-position: left bottom; 
    background-repeat: no-repeat;
    width: 348px;
    height:38px;
}

.bas {
    background-image: url('@URL_IMG_ImagesGrapheCnx_bas@'); 
    background-position: bottom; 
    background-repeat: no-repeat;
    width:348px;
    height:49px;
}

table.tableconnexion {
    width:348px;
    background-color: #f1f1f1;
}       

td.leftalign {
    text-align:left;
    padding-left : 20px;
}
td.rightalign {
    text-align:right;
    padding-right:20px;
}
td.centeralign {
    text-align:center;
}