﻿/*=================================================================================
    Pestañas
====================================================================================*/
.Pestañas
{
    float: top;
    position: relative;
}

.Pestañas li
{
    list-style-type: none;
    float: left;
    text-align: center;
    margin: -10px 0px 0px 0px;
    background: #999999;
    padding: 15px 0px 15px 0px;
    width: 33%;
    max-width: 150px;
    transition: background 0.2s ease-out;
}

.Pestañas li:hover
{
    background: #115494;
    transition: background 0.2s ease-out;
}

.Pestañas a:link, .Pestañas a
{
    text-decoration: none;
    color: #FFFFFF;
}

.CenterAlign
{
    width: 80%;
    margin: auto;
}

.Tabla > thead
{
    background-color: #004383;
    color: #FFFFFF;
    height: 30px;
}

.Tabla > thead > tr > th
{
    border-radius:0em;
}

.Tabla > tbody > tr
{
    color: #004383;
    height: 40px;
}

.Tabla > tbody:hover
{
    background-color: #AAAAAA;
    transition: background-color 0.2s ease-out;
}

.Tabla > tbody > tr:hover
{
    color: #FFFFFF;
    transition: color 0.2s ease-in;
    cursor: default;
}

.Tabla > tbody > tr > td
{
    border-radius:0em;
}

.horizontal-scrollbar
{
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
}