﻿.Grid {
background-color: #fff;
margin: 5px 0 10px 0;
border: solid 1px #525252;
border-collapse: collapse;
font-family: Calibri;
color: #474747;
}

.Grid td {
    padding: 2px;
    border: solid 1px #c1c1c1;
}

.Grid th {
    padding: 4px 2px;
    color: #fff;
    background: #363670 url(Images/grid-header.png) repeat-x top;
    border-left: solid 1px #525252;
    font-size: 0.9em;
}

.Grid .alt {
    background: #fcfcfc url(Images/grid-alt.png) repeat-x top;
}

.Grid .pgr {
    background: #363670 url(Images/grid-pgr.png) repeat-x top;
}

    .Grid .pgr table {
        margin: 3px 0;
    }

    .Grid .pgr td {
        border-width: 0;
        padding: 0 6px;
        border-left: solid 1px #666;
        font-weight: bold;
        color: #fff;
        line-height: 12px;
    }

    .Grid .pgr a {
        color: Gray;
        text-decoration: none;
    }

        .Grid .pgr a:hover {
            color: #000;
            text-decoration: none;
        }

  




/*Estilo general para el gridView*/
.gridView {
    margin: 0 auto;
    font-size: 11px;
    text-align: center;
    border: hidden;
}
    /*Selecciona las filas pares y las colorea*/
    .gridView tr:nth-child(even) {
        background-color: #a9c673;
    }
    /*Selecciona las filas impares y las colorea*/
    .gridView tr:nth-child(odd) {
        background-color: #fff;
    }
    /*Estilo para las casillas del gridView*/
    .gridView td {
        padding-left: 3px;
        padding-right: 3px;
        border: hidden;
    }

.gridViewHeader {
    height: 35px;
}

    .gridViewHeader th {
        background-color: #435B14;
        padding: 5px;
        border: hidden;
        color: #fff;
    }

        /*Redondeamos el borde superior izquierdo de la primera casilla del header*/

        .gridViewHeader th:first-child {
            border-radius: 5px 0 0 0;
        }

        /*Y el borde superior derecho de la ultima casilla*/

        .gridViewHeader th:last-child {
            border-radius: 0 5px 0 0;
        }

        /*Estilo para los enlaces del header...*/

        .gridViewHeader th a {
            padding: 5px;
            text-decoration: none;
            color: #435B14;
            background-color: #a9c673;
            border-radius: 5px;
        }

            .gridViewHeader th a:hover {
                color: #435B14;
                background-color: #B1C689;
                box-shadow: 0 0 .9em rgba(0, 0, 0, .8);
            }

