/* 
    Document   : TableStyle
    Created on : 9 février 2005
    Author     : de LANFRANCHI
    Description: Purpose of the stylesheet follows.
*/
root {
    display: block;
}

/* positionnement du tableau en relatif */
.tableau {
    position: relative;    
    margin-left: 0px;
    /*overflow: auto ;
    height:450px;*/
}

/* style du tableau */
table.minimaliste {
    border-width: 0px;
    table-layout: fixed;
    border-spacing: 0px;
}

/* style du tableau */
table.simple {
    border-style: solid;
    border-width: 1px;
    border-color: black;
    table-layout: auto;
    border-spacing: 5px;    
}

.simple tbody {    
    padding-right:20px;
    height: 400px;
    overflow: auto;   
}

/* titre du tableau */
.titre {
    background-color: #F0F8FF;
}

/* entete de colonne du tableau */
.entete {
    background-color: #B0C4DE;
    font-size: 12px;
    text-align: center;
}

/* marquage de trie sur les entetes de colonne du tableau */
.tableau .sortable {
    font-style: italic;
    font-size: 12px;
    color: silver;
}

/* bandeau nombre d'items */
.pagebanner {
    border-style: solid;
    border-width: 1px;
    border-color: silver;
    background-color: #B0C4DE;
    text-align: center;
}

/* bandeau lien de page */
.pagelinks {
    background-color: #B0C4DE;
}

/*bandeau option export */
.export {
    background-color: #F0F8FF;
    text-align: center;
}

/* ligne paire du tableau */
.even {
    height: 20px;
    background-color: #F0F8FF;
}

/* ligne impaire du tableau */
.odd {
    height: 20px;
    border-style: none;
}

/* alignement texte */
.align {
    text-align: center;
}

/* alignement nombre */
.nombre {
    text-align: left;
    width: 100px;
}

/* autre style */
.tableau a:link {
    color: #6A5ACD;
    text-decoration: none;
}

.tableau a:visited {
    color: #778899;
    text-decoration: none;
}

.tableau a:hover {
    font-weight: bolder;
    text-decoration: none;
}

