﻿#clasif, #clasif td, #clasif tr {
    margin: 10px auto;
    border-spacing: 0;
    padding: 6px;
}
    /*Encabezado 1ª fila*/
    #clasif tr:first-child td:first-child {
        background-color: #364e6f;
        color: #FFFFFF;
        border-radius: 5px 5px 0 0;
        font-size: large;
        font-weight: bold;
        border-bottom: 1px #364e6f solid;
        text-align: center;
    }
    /*segunda, tercera y cuarta linea de encabezado*/
    #clasif tr:first-child + tr {
        background-color: #e8eaf7;
        text-align: center;
        font-weight: bold;
    }

    #clasif td:not(:nth-child(2)) {
        text-align: center;
    }
    /*Columna de nombresalineada izda*/
    #clasif td:first-child + td {
        text-align: left
    }
    /*columna de ptos en negrita*/
    #clasif td:last-child {
        font-weight: bold;
        text-align: center
    }


    /*redondeo de bordes(ultima fila)*/
    #clasif tr:last-child td:first-child {
        border-radius: 0 0 0 5px;
    }

    #clasif tr:last-child td:last-child {
        border-radius: 0 0 5px 0;
    }
    /*borde interior tabla*/
    #clasif td:not(:last-child) {
        border-right: 1px #364e6f solid;
        border-color: #364e6f
    }
    /*efecto zebra desde fila 4*/
    #clasif tr:nth-child(2n+4) {
        background-color: #e8eaf7
    }


#clasif {
    border-bottom: 3px #666 solid
}

    #clasif td {
        border-color: inherit;
        border-width: medium;
        white-space: nowrap;
        font-size: 12px;
        font-family: verdana;
    }
