@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');
*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.3);
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 5px;
    height: 10px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    width: 5px;
    height: 10px;
    background-color: rgba(25, 186, 237, 0.5);
}
#encabezado{
    width: 100%;
    height: 40px;
    background-color: #222222;
    border-bottom: 3px solid #19baed;
}
#tituloEncabezado{
    width: 100%;
    height: auto;
    padding: 0 40px;
}
#tituloEncabezado #conjuntoTitulo{
    width: 100%;
    height: auto;
    border-bottom: 6px double #000;
    margin: auto;
    display: flex;
}
.txtTitulo{
    width: 100%;
    height: auto;
    text-align: center;
    margin: auto 0;
}
.txtTitulo a{
    width: 100%;
    display: block;
    font-weight: 600;
}
.txtTitulo #Uno{
    font-size: 32px;
    color: #000000;
}
.txtTitulo #Dos{
    font-size: 22px;
    color: #a4a4a4;
}
#conjuntoTitulo .iconLogo{
    width: 200px;
    height: 150px;
    margin: auto;
}
#resultados{
    width: 100%;
    height: auto;
    padding: 50px;
}
#datos{
    width: 100%;
    height: auto;
    display: flex;
    overflow-x: scroll;
    padding: 40px 0;
}
tr{
    width: 100%;
    margin: auto;
    height: auto;
    text-align: center;
}
th,td{
    margin: auto;
    max-width: 300px;
    min-width: 150px;
    height: auto;
    padding: 20px;
}
#footer{
    width: 100%;
    padding: 20px;
    background-color:#222222;
    text-align: center;
        color: #f5f5f5;
    text-decoration: none;
}
#footer p{
    padding: 5px 0;
}
#footer p a{
    color: #f5f5f5;
    text-decoration: none;
}