﻿/*devexpress fix para checkboxes readonly en las grillas*/
.dxICBReadonlyMarker {
    cursor: not-allowed !important;
}

/*devexpress fix*/
.dxeEditAreaSys,
.dxeMemoEditAreaSys, /*Bootstrap correction*/
input[type="text"].dxeEditAreaSys, /*Bootstrap correction*/
input[type="password"].dxeEditAreaSys /*Bootstrap correction*/ {
    line-height: 22px;
    height: 14px;
}

/*devexpress fix*/
#documentViewer_Splitter_Toolbar_Menu_ITCNT5_PageNumber_I,
#documentViewer_Splitter_Toolbar_Menu_ITCNT6_PageCount_I,
#documentViewer_Splitter_Toolbar_Menu_ITCNT11_SaveFormat_I {
    line-height: 14px !important;
    margin-bottom: -1px;
    margin-top: -1px;
}

.ui-widget-content a {
    color: #0088cc;
    text-decoration: underline;
}


.grillaAncha {
    width: fit-content;
    padding-right: 30px;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu-horizontal-header {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 8px;
    padding-right: 8px;
    color: white;
    cursor: pointer;
}


.menu-horizontal-header:hover {
    background-color: #444444;
}

.menu-horizonal-opcion:hover {
    background-color: #E0E0E8;
}


.stat-widget-container .stat-widget {
    width: unset;
}

.CellsEllipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.GrillaRowHover, .GrillaRowHover td {
    background-color: lightcyan !important;
}

.GrillaRowClicked, .GrillaRowClicked td {
    background-color: lightgray !important;
}

.ui-widget {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
}

body:not([class^="dx"]) {
    line-height: 30px;
}

/* sacar el fondo de la pagina principal, y solo ponerlo en el menu, sino se ven feas las grillas que son mas anchas 
    y salen con color de fondo por ejemplo las paginas de error */
body {
    background: white;
    background-image: none;
    background-position: initial initial;
    background-repeat: repeat;
}

select:not([class^=dx]):not([class^=note-codable]):not([class^=myrtf]),
textarea:not([class^=dx]):not([class^=note-codable]):not([class^=myrtf]),
input[type="text"]:not([class^=dx]):not([class^=note-codable]):not([class^=myrtf]),
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    /*display: inline-block !important;*/
    padding: 4px 6px !important;
    color: #555555; /*!important;*/
    padding-top: 4px !important;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    /*display: inline-block !important;*/
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    color: #555555; /*!important;*/
}



    select[disabled]:not([class^="dx"]),
    input[disabled]:not([class^="dx"]),
    input[readonly]:not([class^="dx"]) {
        cursor: not-allowed;
        background-color: #eeeeee;
    }



input[type="radio"]:not([class^="dx"]) {
    margin-top: -1px;
    vertical-align: middle;
}

input[type="checkbox"]:not([class^="dx"] ) {
    vertical-align: top;
    /*margin-top:0px;*/
}


label:not([class^="dx"]) {
    font-size: 12px;
    font-weight: bold;
}

label[class^="dx"] {
    font-size: 12px;
    font-weight: normal;
}

label[class="display-checkbox"] {
    font-size: 14px;
    font-weight: normal;
}



/*.sidebar-nav {
    width:auto;
}*/


/***************************************************************************/

/* sobre-escribo los colores de los botones del template, para usar los de bootstrap nuevos y el Fprimary azul mas oscuro*/

.btn-primary {
    background-image: -o-linear-gradient(top, #6c7994, #414959);
    background-image: linear-gradient(to bottom, #6c7994, #414959);
    background-image: -moz-linear-gradient(top, #6c7994, #414959);
    filter: progid:dximagetransform.microsoft.gradient(startColorStr='#6c7994', EndColorStr='#414959');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#6c7994',EndColorStr='#414959')";
    border: 1px solid #363d4a;
}

    .btn-primary:hover {
        background-color: #414959;
        *background-color: #414959;
    }

.btn-danger {
    background-image: -webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);
    background-image: -o-linear-gradient(top,#d9534f 0,#c12e2a 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));
    background-image: linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #b92c28;
}

    .btn-danger:hover {
        background-color: #c12e2a;
        *background-color: #c12e2a;
    }

.btn-success {
    background-image: -webkit-linear-gradient(top,#5cb85c 0,#419641 100%);
    background-image: -o-linear-gradient(top,#5cb85c 0,#419641 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));
    background-image: linear-gradient(to bottom,#5cb85c 0,#419641 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #3e8f3e;
}

    .btn-success:hover {
        background-color: #419641;
        *background-color: #419641;
    }

.btn-warning {
    background-image: -webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);
    background-image: -o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));
    background-image: linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #e38d13;
}

    .btn-warning:hover {
        background-color: #eb9316;
        *background-color: #eb9316;
    }


.btn-info {
    background-image: -webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);
    background-image: -o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));
    background-image: linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #28a4c9;
}

    .btn-info:hover {
        background-color: #2aabd2;
        *background-color: #2aabd2;
    }


/* para separar el contenido del sitio de la fila con el titulo de la pagina y de los bordes */
.pageContainer {
    margin-top: 20px;
    margin-bottom: 20px;
    /*margin-left: 20px;
    margin-right: 20px;*/
}

.fondo-color {
    background: #222 !important;
    background-image: url('../Images/fondo.png');
    background-position: initial initial;
    background-repeat: initial initial;
}

/*Ajustes para no dejar espacio respecto al menu izquierdo*/
.content {
    border-left: 1px solid #cccccc;
    margin-left: 228px;
    margin-top: 0px;
    min-height: 1200px;
}


.http-error-inside {
    margin-top: 5em;
    text-align: center;
    color: #444;
    background: white;
    background-image: none;
    padding-top: 30px;
    padding-bottom: 30px;
}

/*Error Pages del blue nile que me gusta mas*/
body .http-error {
    border: none;
}

.http-error h1 {
    font-size: 70px;
    line-height: 1em;
    text-shadow: 1px 1px 0px #fff;
    color: #444;
}

.http-error p {
    margin: 0px;
}

.http-error .info {
    font-size: 28px;
    line-height: 1.5em;
    margin-bottom: 1em;
}

.http-error i {
    font-size: 3em;
    line-height: .75em;
    text-shadow: 1px 1px 0px #fff;
}


/* Para evitar que los estilo de devexpress le ganen en precedencia a los de bootstrap*/

/*input,
button,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  padding: 4px 6px !important;
}*/



.field-validation-error {
    background-image: url('../Images/error.png');
    background-repeat: no-repeat;
    color: transparent;
    background-size: 16px 16px;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border-color: #ff0000;
    border-style: outset;
}

.divErrorCampo {
    float: left;
    width: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.oculto {
    display: none;
}

.ocultar-si-vacio:empty {
    display: none;
}


.validation-summary-errors {
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 10px 5px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    font-size: 12px;
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('../Images/error.png');
    background-size: 32px 32px;
}

    .validation-summary-errors:empty {
        display: none;
    }

.validation-summary-valid {
    display: none;
}

.validation-summary-ok {
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 10px 5px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    font-size: 12px;
    background-size: 32px 32px;
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image: url('../Images/success.png');
}

    .validation-summary-ok:empty {
        display: none;
    }

.menu-seleccionado {
    /*  background-color: black;*/
    padding-left: 15px;
    padding-right: 15px;
    background-color: rgb(215,215,215);
}


/*ACCORDION*/
.accordion {
    /*border: 1px solid #ccc;*/
}

.ui-accordion .ui-accordion-header {
    background: #8c8c8c;
    background: #8c8c8c -webkit-gradient(linear, left top, left bottom, from(#bfbfbf ), to(#8c8c8c)) no-repeat;
    background: #8c8c8c -moz-linear-gradient(top, #bfbfbf, #8c8c8c) no-repeat;
    border-bottom: 1px solid #333;
    border-top: 1px solid #ccc;
    color: #fff;
    display: block;
    font-style: normal;
    margin: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    /*text-shadow:            0 -1px 2px #333, #ccc 0 1px 2px;*/
    font-size: small;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.ui-accordion .ui-accordion-header-active {
    background: #369;
    background: #369 -webkit-gradient(linear, left top, left bottom, from(#69c), to(#369)) no-repeat;
    background: #369 -moz-linear-gradient(top, #69c, #369) no-repeat;
    border-bottom: 1px solid #036;
    border-top: 1px solid #9cf;
    /*text-shadow:            0 -1px 2px #036, #9cf 0 1px 2px;*/
}

.navbar .brand {
    color: white;
}

label:not([class^=dx]),
/*input:not([class^=dx]),*/
/*button:not([class^=dx]),*/
select:not([class^=dx]),
textarea:not([class^=dx]) {
    line-height: 30px;
    margin-bottom: 0px;
    height: 30px;
}


/* cosas para mobile*/


.mostrarEnMovil {
    display: none;
}

.mostrarEnDesktop {
    display: block;
}

@media only screen and (max-width: 768px) { /*estoy en movil*/
    .movMenuInterruptor {
        background-image: url('../Images/menuMovil_blanco.png');
        background-repeat: no-repeat;
        width: 26px;
        height: 26px;
        background-size: contain;
        margin-top: 17px;
    }

    .mostrarEnMovil {
        display: block;
    }

    .mostrarEnDesktop {
        display: none;
    }

    .menuLateral {
        width: 100%;
    }

    .content {
        margin-left: 0px;
        min-width: 320px;
    }
}

textarea:not([class^=dx]) {
    line-height: 30px;
    /*width: 100%;*/
    height: 60px;
    /*margin-bottom: 9px;*/
}

.header {
    border-left: 0px;
}

.nav-list .divider {
    height: 0px;
    margin: 5px 0px;
}

/* seccion para form controls cuando es editor-field */

.editor-field > input:-moz-placeholder {
    color: #999999;
}

.editor-field > input::-moz-placeholder {
    color: #999999;
}

.editor-field > input:-ms-input-placeholder {
    color: #999999;
}

.editor-field > input::-webkit-input-placeholder {
    color: #999999;
}


.editor-field > input, select {
    /*/margin-bottom: 10px;*/
    /*height: 30px;*/
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    /*border-radius: 4px;*/
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

    .editor-field > input:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

    .editor-field > select[disabled],
    .editor-field > input[disabled],
    .editor-field > input[readonly] {
        cursor: not-allowed;
        background-color: #eeeeee;
    }

.editor-field > textarea {
    margin-bottom: 0px;
}

.editor-field > input {
    margin-bottom: 0px;
}

.display-label {
    float: left;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    width: 150px;
}

.botonDeshabilitado {
    background-color: darkgrey !important;
    color: lightgray !important;
}

.comoDX {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 12px !important;
    border: 1px solid #aecaf0 !important;
}


input[type="checkbox"] {
    margin-top: 9px;
}

.floatLeft {
    float: left;
}

.sepBotonGrilla {
    margin-left: 4px;
}

.floatRight {
    float: right;
}

.clearBoth {
    clear: both;
}

.clear-both {
    clear: both;
}

.alinearDerecha {
    text-align: right;
}

.renglon-alto {
    height: 40px;
    vertical-align: middle;
}

.renglon-bajo {
    height: 20px;
    vertical-align: middle;
}

.renglon-estandar {
    height: 30px;
    vertical-align: middle;
}


.btn-toolbar { /*agrego atributos al btn-toolbar ya existe de bootstrap (fondo, margen, etc)*/
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dddddd), color-stop(1, #fafafa));
    padding-left: 1em;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #a6a6a6;
    margin-top: 0px;
    height: 35px;
    padding-top: 5px;
    padding-left: 10px;
    vertical-align: middle;
    margin-bottom: 0px;
}

.recuadro {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
}

.recuadro-margen {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    padding: 10px;
}

.borde-derecho {
    border-right: 1px solid #CCCCCC;
}

.borde-izquierdo {
    border-left: 1px solid #CCCCCC;
}

a.visited.hipervinculo {
    color: #A1A1A1;
    text-decoration: underline;
}

a.hipervinculo {
    text-decoration: underline;
}

.hipervinculoGrillaAjax {
    color: #005580;
    text-decoration: underline;
    float: left;
    margin-right: 5px;
}

    .hipervinculoGrillaAjax:hover {
        color: #CC6600;
        text-decoration: underline;
    }

.botonCentroGrilla {
    color: #005580;
    text-decoration: underline;
    float: left;
    margin-right: 5px;
    width: 100%;
}

    .botonCentroGrilla:hover {
        color: #CC6600;
        text-decoration: underline;
    }

.bloque {
    border: 1px solid #ccc;
}

.cabezalBloque {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dddddd), color-stop(1, #fafafa));
    border-top: 1px solid #fff;
    border-bottom: 1px solid #a6a6a6;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 8px;
}

.cuerpoBloque {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
}

.block-body table {
    margin-top: 0px;
}

.modal-header {
    background: #4d5b76;
    background: -ms-linear-gradient(bottom, #4d5b76, #6c7a95);
    background: -moz-linear-gradient(center bottom, #4d5b76 0%, #6c7a95 100%);
    background: -o-linear-gradient(bottom, #4d5b76, #6c7a95);
    color: white;
}

.modal-header-error {
    background: #ff0000;
    background: -ms-linear-gradient(bottom, #ff5050, #ff5050);
    background: -moz-linear-gradient(center bottom, #ff5050 0%, #ff5050 100%);
    background: -o-linear-gradient(bottom, #ff0000, #ff5050);
    color: white;
}

.modal-header-nopermisos {
    background: #ff6600;
    background: -ms-linear-gradient(bottom, #ff6600, #ff8533);
    background: -moz-linear-gradient(center bottom, #ff6600 0%, #ff8533 100%);
    background: -o-linear-gradient(bottom, #ff6600, #ff8533);
    color: white;
}


.grillaErrorFooter {
    background-color: #F3D6D6 !important;
    color: #BA1717;
}

.info_mf:empty, .success_mf:empty, .warning_mf:empty, .error_mf :empty {
    display: none;
}


.info_mf, .success_mf, .warning_mf, .error_mf, .validation_mf {
    margin: 0px 0px;
    padding: 5px 10px 5px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    font-size: 12px;
    line-height: 20px;
}

.info_mf {
    color: #00529B;
    background-color: #BDE5F8;
    background-image: url('../Images/info.png');
    background-size: 32px 32px;
}

.success_mf {
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image: url('../Images/success.png');
    background-size: 32px 32px;
}

.warning_mf {
    color: #9F6000;
    background-color: #FEEFB3;
    background-image: url('../Images/warning.png');
    background-size: 32px 32px;
}

    .info_mf.cartelPequenio, .success_mf.cartelPequenio, .warning_mf.cartelPequenio, .error_mf.cartelPequenio {
        background-size: 20px 20px;
        line-height: 20px;
        padding-left: 38px;
    }

.error_mf {
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('../Images/error.png');
    background-size: 32px 32px;
}


.opcionModulo {
    color: black;
    font-weight: bold;
}

.nav-pills > .active > a, .nav-pills > .active > a:hover {
    color: black;
    background-color: #A0A0A0;
    text-shadow: none;
}

.btn_clear_small {
    height: 23px;
    width: 23px;
    cursor: pointer;
    margin-top: 2px;
    background-image: url('../Images/clear.png');
    background-size: contain;
}

.botonera {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dddddd), color-stop(1, #fafafa));
    padding-left: 1em;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    /*border-top: 1px solid #fff;
    border-bottom: 1px solid #a6a6a6;*/
    border-bottom: 1px solid #a6a6a6;
    margin-top: 0px;
    min-height: 38px;
    padding-top: 5px;
    padding-left: 10px;
    vertical-align: middle;
    margin-bottom: 0px;
}

/* .block .botonera si es botonera y esta contenido en block, en forma directa o indirecta*/

/* .block > .botonera, idem solo si es hijo directo de block*/

/* si es hijo de block, no agregar el borde para que no quede doble, solo el de abajo*/
.block > .botonera {
    border-top: none;
    border-left: none;
    border-right: none;
}

.botonBotonera {
    margin-left: 10px;
    min-width: 100px;
    /*float: left;*/
    /*margin-top:5px;*/
    margin-bottom: 5px;
}


.margenInferiorEstandar {
    padding-bottom: 10px;
}


.texto-aclaracion {
    font-size: x-small;
    color: maroon;
}

.texto-aclaracion-gde {
    font-size: small;
    color: maroon;
}

.icon_print_white {
    background-image: url('../Images/iconprint_white.png');
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    line-height: 24px;
    vertical-align: text-top;
    display: inline-block;
    background-size: contain;
}

.link-label {
    color: #0088cc;
    text-decoration: underline;
    cursor: pointer;
}


/* tamaños */

.separacion-der {
    margin-right: 30px;
}

.separacion-izq {
    margin-left: 30px;
}

.separacion-izq-small {
    margin-left: 8px;
}

.separator {
    border-top: 1px dotted #ccc;
    margin: 20px 0 30px 0;
}

.espacio2 {
    height: 20px;
    clear: both;
}

.espacio {
    height: 10px;
    clear: both;
}

.fieldset-listado {
    margin-left: 10px;
    margin-right: 10px;
    .dataLine margin-top: 0px;
    margin-bottom: 0px;
    line-height: 20px;
}

    .fieldset-listado input[type="checkbox"] {
        margin-top: 4px;
    }

    .fieldset-listado legend {
        margin-bottom: 10px;
    }

.dataLine {
    margin-bottom: 8px;
}

.dataLineCh {
    margin-bottom: 4px;
}

.dataLineMini {
    margin-bottom: 0px;
    line-height: 20px;
}

.seccionEstandar {
    padding: 10px 20px 10px 20px;
}

.editor-ddl {
    float: left;
}

.editor-importe {
    float: left;
}

.editor-gridlookup {
    float: left;
}

.divGridview {
    /*para identifiar las grillas. agregar mas adelante. falta*/
}

.editor-label {
    float: left;
    width: 150px;
    font-weight: normal;
    font-size: 14px;
    line-height: 30px;
}

    .editor-label > label {
        float: left;
        width: 150px;
        font-weight: normal;
        font-size: 14px;
        line-height: 30px;
    }

.editor-label-nosize {
    float: left;
    font-weight: normal;
    font-size: 14px;
    line-height: 30px;
    margin-right: 5px;
}

    .editor-label-nosize > label {
        float: left;
        margin-right: 5px;
        font-weight: normal;
        font-size: 14px;
        line-height: 30px;
    }

.display-field {
    float: left;
}


.editor-field-check {
    float: left;
    width: 20px;
}

.editor-archivo-adjunto {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    padding: 10px;
}

.margin-label-xmini {
    margin-left: 55px;
}

.display-label-xmini {
    float: left;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    width: 45px;
}

.margin-label-mini {
    margin-left: 70px;
}

.display-label-mini {
    float: left;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    width: 60px;
}

.margin-label-xsmall {
    margin-left: 100px;
}

.display-label-xsmall {
    float: left;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    width: 90px;
}

.margin-label-small {
    margin-left: 130px;
}

.display-label-small {
    float: left;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    width: 120px;
}

.margin-label-medium {
    margin-left: 160px;
}

.display-label-medium {
    float: left;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    width: 150px;
}

.margin-label-large {
    margin-left: 260px;
}

.display-label-large {
    float: left;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    width: 250px;
}

.display-label-nosize {
    float: left;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}

select.mini {
    width: 60px;
}

select.small {
    width: 120px;
}

select.medium {
    width: 150px;
}

select.large {
    width: 250px;
}

select.xlarge {
    width: 420px;
}

select.xxlarge {
    width: 530px;
}


.xmini {
    width: 45px;
}

.mini {
    width: 60px;
}

.xsmall {
    width: 90px;
}

.small {
    width: 120px;
}

.medium {
    width: 150px;
}

.large {
    width: 250px;
}

.xlarge {
    width: 420px;
}

.xxlarge {
    width: 530px;
}

.editor-field {
    float: left;
}

.editor-textarea {
    float: left;
}

    .editor-textarea > textarea {
        width: 530px; /*ancho por defecto que luego se cambia con ef-tamaño*/
    }

@media only screen and (max-width: 529px) {
    .editor-textarea > textarea {
        width: 330px;
    }
}


.ef-xmini > textarea,
.ef-xmini > input,
.ef-xmini > select {
    width: 45px;
}

.ef-mini > textarea,
.ef-mini > input,
.ef-mini > select {
    width: 60px;
}

.ef-xsmall > textarea,
.ef-xsmall > input,
.ef-xsmall > select {
    width: 90px;
}

.ef-small > textarea,
.ef-small > input,
.ef-small > select {
    width: 120px;
}

.ef-medium > textarea,
.ef-medium > input,
.ef-medium > select {
    width: 150px;
}

.ef-large > textarea,
.ef-large > input,
.ef-large > select {
    width: 250px;
}

.ef-xlarge > textarea,
.ef-xlarge > input,
.ef-xlarge > select {
    width: 420px;
}

.ef-xxlarge > textarea,
.ef-xxlarge > input,
.ef-xxlarge > select {
    width: 530px;
}

@media only screen and (max-width: 529px) {
    .ef-xxlarge > textarea,
    .ef-xxlarge > input,
    .ef-xxlarge > select {
        width: 330px;
    }
}

@media only screen and (max-width: 768px) {
    /*768 limite para movil en funcion EsMovil()*/
    .grillaResponsive {
        overflow-x: auto;
    }
}

.navbar-authorization .navbar-inner.navbar-inner-authorization {
    min-height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #fafafa;
    background-image: -moz-linear-gradient(top, #9E9E9E, #434548);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(9#9E9E9E), to(#434548));
    background-image: -webkit-linear-gradient(top, 9#9E9E9E, #434548);
    background-image: -o-linear-gradient(top, #9E9E9E, #434548);
    background-image: linear-gradient(to bottom, #9E9E9E, #434548);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9E9E9E', endColorstr='#434548', GradientType=0);
    border: 1px solid #d4d4d4;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
    *zoom: 1;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    height: 30px;
}

.ayuda {
    font-style: italic;
    color: darkred;
    font-size: x-small;
    font-style: italic;
}

.texto-aclaracion {
    font-size: x-small;
    color: maroon;
    /*line-height: 17px;*/
}

.texto-aclaracion-gde {
    font-size: small;
    color: maroon;
}

.imagen_status_grilla {
    width: 24px;
    height: 24px;
}
