﻿/* ---------------------- RESET ------------------------- */

/* CAMBIAR COLORES AQUI Y SOLO AQUI A SER POSIBLE ;)
----------------------------------------------------------*/
:root {
    --font-form-color: #ffffff; /* Fondo Web */
    --font-color: #12295d; /* ¿? */
    --menu-bg-color: #ffffff; /* Fondo Cabecera */
    --menu-desp-bg-color: #666666; /* Fondo Menú */
    --main-bg-color: #12295d; /* Fondo Pie Web, Botón Atrás, Calendario y Hover Botones */
    --second-bg-color: #ed1b24; /* Botones y Hover Calendario */
    --menu-color: #777777; /* Texto Menú */
    --menu-desp-color: #ffffff; /* Texto Menú Desplegable */
    --main-color: #ffffff; /* Texto Columnas, Botones y Pie Web */
    --second-color: #ffffff; /* Texto Hover Botones */
    --text-color: #777777; /* Texto Títulos y Hover Grids */
    --autocomplete-textbox-color: #808080; /* Color del borde de los Textbox Autocompletables*/
    --autocomplete-textbox-background-color: white; /* Color del fondo de los Textbox Autocompletables*/
    --autocomplete-border-list-color: #ccc; /* Color del borde de las listas de los textbox Autocompletables*/
    --autocomplete-background-list-color: white; /* fondo de las listas de los textbox Autocompletables*/
    --autocomplete-itemlist-fontcolor: #333333; /*Color del texto de los items de las listas de los textbox autocompletables*/
    --autocomplete-hightlighted-itemlist-fontcolor: #ffffff; /*Color del texto de los items de las listas de los textbox autocompletables*/
    --autocomplete-hightlighted-itemlist-background-color: #0081c2;
    --autocomplete-hightlighted-itemlist-gradient-color1: #0088cc;
    --autocomplete-hightlighted-itemlist-gradient-color2: #0077b3;
}

/* PARA MODIFICAR EL SOMBREADO
----------------------------------------------------------*/
.sombraFondo {
    box-shadow: 5px 0px 2px -2px rgba(119,119,119,0.25), -5px 0px 2px -2px rgba(119,119,119,0.25);
}

/*--------------------------------------------------------*/

body {
    font-size: 1em;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0px;
    padding: 0px;
    color: var(--text-color);
    background: var(--font-form-color);
    background-attachment: fixed;
}

p {
    margin-bottom: 10px;
    line-height: 1.6em;
}


/* HEADINGS   
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    font-variant: small-caps;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
}

h1 {
    font-size: 1.6em;
    padding-bottom: 0px;
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the 
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2 {
    margin-top: 0px;
}

/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

.page {
    width: 960px;
    background-color: var(--menu-bg-color);
    margin: 20px auto 0px auto;
    border: 0px solid #496077;
}

.header h1 {
    font-weight: 700;
    margin: 0px;
    padding: 0px 0px 0px 20px;
    color: var(--menu-color);
    border: none;
    line-height: 2em;
    font-size: 2em;
}

.main {
    padding: 0px 12px;
    margin: 12px 8px 8px 8px;
    min-height: 420px;
}

.leftCol {
    padding: 6px 0px;
    margin: 12px 8px 8px 8px;
    width: 267px;
    min-height: 200px;
    display: block;
    float: left;
}

.rightCol {
    padding: 6px 0px;
    margin: 11px 8px 8px 0px;
    width: 303px;
    min-height: 200px;
    display: block;
    float: right;
    height: 126px;
}

/* TAB MENU   
----------------------------------------------------------*/

div.menu {
    padding: 4px 0px 4px 8px;
}

    div.menu ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
        width: auto;
    }

        div.menu ul li a:hover {
            background-color: #bfcbd6;
            color: #465c71;
            text-decoration: none;
        }

        div.menu ul li a:active {
            background-color: #465c71;
            color: #cfdbe6;
            text-decoration: none;
        }

/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset {
    margin: 0em 0px;
    padding: 1em;
    border-top: 1px solid #ccc;
}

    fieldset p {
        margin: 0px 12px 10px 10px;
    }

    fieldset.login label, fieldset.register label, fieldset.changePassword label {
        display: block;
    }

    fieldset label.inline {
        display: inline;
    }

legend {
    font-size: 1.1em;
    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

input.textEntry {
    width: 320px;
    border: 1px solid #ccc;
}

input.passwordEntry {
    width: 320px;
    border: 1px solid #ccc;
}

div.accountInfo {
    width: 42%;
}

/* MISC  
----------------------------------------------------------*/

.clear {
    clear: both;
}

.loginDisplay {
    font-size: 1.1em;
    font-family: Arial narrow;
    display: block;
    text-align: right;
    padding: 10px;
    color: var(--menu-color);
}

    .loginDisplay a:link {
        color: var(--menu-color);
        font-family: Arial narrow;
    }

    .loginDisplay a:visited {
        color: var(--menu-color);
        font-family: Arial narrow;
    }

/*.loginDisplay a:hover
{
    color: white;
    font-family:Arial narrow;
    text-decoration:underline;
    cursor: pointer;
}*/

.failureNotification {
    font-size: 1.2em;
    color: Red;
}

.bold {
    font-weight: bold;
}

.submitButton {
    text-align: right;
    padding-right: 10px;
}

.demoHeaders {
    margin-top: 2em;
}

#dialog_link {
    padding: .4em 1em .4em 20px;
    text-decoration: none;
    position: relative;
}

    #dialog_link span.ui-icon {
        position: absolute;
        left: 0em;
        top: 50%;
        margin-top: -8px;
        width: 16px;
        height: 11px;
        margin-left: 0;
        margin-right: 5px;
        margin-bottom: 0;
    }

ul#icons {
    margin: 0;
    padding: 0;
}

    ul#icons li {
        margin: 2px;
        position: relative;
        padding: 4px 0;
        cursor: pointer;
        float: left;
        list-style: none;
    }

    ul#icons span.ui-icon {
        float: left;
        margin: 0 4px;
    }

.ET_Button {
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    font-size: 18px;
    /*border: 1px solid #575756;*/
    border-radius: 3px 4px;
    background: var(--second-bg-color);
    color: var(--main-color);
}

    .ET_Button:hover {
        /*border: 1px solid #02467b;*/
        background-color: var(--main-bg-color);
        color: var(--second-color);
    }

.header {
    position: relative;
    margin: 0px;
    padding: 0px;
    top: 0px;
    width: 100%;
    height: 58px;
    background: var(--menu-bg-color);
    color: var(--second-color);
}

div.hideSkiplink {
    background-color: var(--main-bg-color);
    width: 100%;
}

div.menu ul li a, div.menu ul li a:visited {
    background: var(--menu-bg-color);
    border: 1px solid #575756;
    color: var(--menu-color);
    display: block;
    line-height: 1.35em;
    padding: 4px 20px;
    text-decoration: none;
    white-space: nowrap;
}

.footer {
    color: var(--menu-color);
    padding: 4px 0px 4px 0px;
    margin: 0px auto;
    text-align: center;
    line-height: normal;
    background: var(--main-bg-color);
}

.page {
    margin: 0px auto 0px auto;
}

.GridHeader {
    background: var(--main-bg-color);
    font-size: 14px;
    color: var(--main-color);
}

.GridRow {
    background-color: #F7F6F3;
    font-size: 14px;
    color: #555555;
}

    .GridRow:hover {
        background-color: red;
        font-size: 14px;
        color: #555555;
    }

.GridAlterRow {
    background-color: #FDFDFD;
    font-size: 14px;
    color: #555555;
}

.GridFooter {
    background: var(--main-bg-color);
    color: var(--main-color);
    font-size: 14px;
    text-decoration: underline;
}

.GridSelectedRow {
    background-color: var(--main-bg-color);
    color: var(--text-color);
}

a:link, a:visited, a:hover, a:active {
    color: var(--main-color);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

a:hover, a:active {
    text-decoration: underline;
}

.ET_SORT_ASC {
    background-color: Red;
}

.ET_SORT_DESC {
    background-color: Blue;
}

.BTN_DESABLED {
    border: #221122;
    background-color: #555555;
}

    .BTN_DESABLED:hover {
        border: #221122;
        background-color: #555555;
    }

.footnote {
    font-size: 0.575em;
}

.intro {
    font-size: 0.775em;
}

.radioButtonHorizontal tbody tr td input, label {
    display: inline;
    margin-right: 5px;
}
/*_______________ Autocompletable de los TextBox _________________*/
.autocompleteTextBox {
    border: 1px solid #808080;
    background-color: white;
    margin: 0 0 1em 0;
}

.autocompleteList {
    padding: 5px 0;
    margin: 2px 0;
    height: 310px;
    overflow: auto;
    position: absolute;
    border: 1px solid var(--autocomplete-border-list-color);
    *border-right-width: 2px;
    *border-bottom-width: 2px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    background-color: var(--autocomplete-background-list-color);
    cursor: pointer;
}

.autocompleteListItem {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 20px;
    color: var(--autocomplete-itemlist-fontcolor);
    white-space: nowrap;
}

.autocompleteListHighlightedItem {
    color: var(--autocomplete-hightlighted-itemlist-fontcolor);
    padding: 3px 20px;
    text-decoration: none;
    background-color: var(--autocomplete-hightlighted-itemlist-background-color);
    background-repeat: repeat-x;
    outline: 0;
    background-image: linear-gradient(to bottom, var(--autocomplete-hightlighted-itemlist-gradient-color1,var(--autocomplete-hightlighted-itemlist-gradient-color2)));
}







/*_______________________________________________*/
/*            PARA CONTINUAR EN app.css          */
/*.top-bar {
    background: var(--menu-bg-color);
    color: var(--menu-color);
}*/

/*.top-bar-section li a:not(.button) {
    background: var(--main-bg-color);
}*/

/*.top-bar-section li a:not(.button):hover {
    background: var(--second-bg-color);
}*/ /*CambiaHoverMenu*/

/*.top-bar-section .dropdown li a {
    background: var(--menu-bg-color);
}*/

/*.content {
    background: white;
}*/

/*.ET_Menu a {
    background-color: var(--menu-bg-color);
    color: var(--menu-color);
    font-family: Arial Narrow;
    font-size: 1.3em;
    margin-right: 0px;
    margin-bottom: 19px;
}*/

/*.ET_Menu li
{
    margin-left: 35px;
}*/

/*.ET_Menu li:hover
{
  list-style-type: circle; 
  text-decoration: underline;
}*/

/*.ET_Titulo {
    font-size: 2em;
    text-decoration: none;
    text-align: center;
}*/

/*.ET_Titulo2 {
    font-size: 1.5em;
    text-decoration: none;
    text-align: center;
}*/

/*.ET_Error
{
    color:Red;
    font-family:Arial Narrow;
    font-size: 1.3em;
}*/

/*.ET_Grid
{
    overflow:scroll;
    overflow-y:hidden;
    width:966px;
}*/

/*.ET_GRIDVIEW tr:hover {
    background-color: var(--main-bg-color);
    color: var(--main-color);
}*/

/*.ET_GRIDVIEW tr:last-of-type:hover {
    background: var(--main-bg-color);
    color: var(--main-color);
}*/

/*.ET_GRIDVIEW tr:first-of-type:hover {
    background: var(--main-bg-color);
    color: var(--main-color);
}*/

/*.titleAsp
{
    display: block;
    text-align: center;
    font-size:2em;
    font-weight:bold;
}*/

/*.ET_CHK_Label
{
    margin-left:10px;
}*/

/*.ET_CHK_center
{
    display: table-cell;
    vertical-align:middle;
    height:35px;
}*/

/*.ET_Login:hover {
    color: var(--text-color);
}*/

/*.ET_Label
{
    color: #111;
}*/

/*.ET_Cell
{
    border: 1px ridge;
}*/
