#content {

    table.content_table tr:nth-child(1) td { 

        background-image: url(/images/bgta.png);
        background-size: contain;
        background-color: white;
        height: 30px;
        width: 95px;
        text-align: center;
        font-weight: bold;
        vertical-align: middle;
    }

    table.content_table tr:nth-child(even) {
        background-color: #FFFFFF;
    }

    table.content_table tr:nth-child(odd) {
        background-color: #E0E0E0;
    }

    table.content_table td {

        vertical-align: middle;
        text-align: center;
    }

    .paginacion {

        text-align: center;
        font-size: 14px;
    }

    form.busqueda {

        text-align: right;

        input[type=text] {

            margin-right: 10px;
            width: 110px;
            height: 22px;
        }
    }

    form.formulario {

        tr td:first-child {
            
            font-weight: bold;
            font-size: 18px;
        }

        i {
            
            margin-left: 5px;
        }

        .autocomplete_wrapper {

            display: inline-block;
            width: 50%;
            position: relative;
            padding-right: 10px;
            margin-right: 5px;

            .autocomplete {

                width: 100%;
            }

            .autocomplete_results {

                position: absolute;
                background: #fff;
                border: 1px solid #ddd;
                border-top: none;
                width: 100%;
                max-height: 220px;
                overflow-y: auto;
                list-style: none;
                margin: 0;
                padding: 0;
                z-index: 9999;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);

                li {

                    padding: 10px 12px;
                    cursor: pointer;
                    font-size: 14px;
                }

                li:hover, li.active {

                    background: #f2f2f2;
                }

                &:empty {
                    display: none;
                }
            }
        }
    }
}