/*
Author     : AntonioL
Description:
Hoja de estilos para mensajes y pantallas emergentes.

Esta hoja de estilos forma parte de la plantilla y NO DEBE modificarse.
*/

/* NOTA PLANTILLA:
- Salvo excepciones en estilos propios de la plantilla, los nombres de los
estilos deben empezar en minúscula y hacer la separación de términos
empezando cada palabra con mayuscula, por ejemplo: esteEsElNombreDelEstilo */


/**** LOGIN ****************************************************************/

.color_texto_titulo_emergente{ /*color:#E5CEA8;*/color: #dab362; }
.color_texto_titulo_emergente_login{ color: #dab362; }
.contenedorBarraCarga{
    position: fixed;
    top:50%;
    left:47%;
    z-index:1205;
}
/****************************************************************************************/
/****** Estilos capa transparente para bloquear la pantalla al mostrar un emergente *****/
/****************************************************************************************/
.transparente, .transparenteDoble, .transparenteTriple, .transparenteBarraCarga{     /* Redefinicion en explorer.css */
                                                                                     /* transparenteBarraCarga está declarado en el fichero comunes.css */
                                                                                     position :fixed !important;
                                                                                     position: absolute;
                                                                                     width :100%;
                                                                                     height :100%;
                                                                                     background-color :#ffffff;
                                                                                     -moz-opacity :0.75;
                                                                                     opacity :0.50;
                                                                                     top:0px;
                                                                                     left:0px;
                                                                                     filter :alpha(opacity='75');
}
.transparente{
    z-index :200; /*Este valor debe ser igual al del emergente sobre el que se superpone*/
}
.transparenteDoble{
    z-index :150; /*Este valor debe ser igual al del emergente sobre el que se superpone*/
}
.transparenteTriple{
    z-index :170; /*Este valor debe ser igual al del emergente sobre el que se superpone*/
}
.transparenteBarraCarga {
    z-index :500;
}

/****************************************************************************************/
/**** FIN estilos capa transparente para bloquear la pantalla al mostrar un emergente ***/
/****************************************************************************************/



.botonMaximizar, .botonMinimizar, .botonRestaurar { /* Este estilo se sobrescribe en el CSS del módulo correspondiente para cambiar la imagen de la maximizar/minimizar */
                                                    background-position: center center;
                                                    background-repeat: no-repeat;
                                                    cursor: pointer;
                                                    float: right;
                                                    height: 10px;
                                                    margin-right: 3px;
                                                    width: 10px;
                                                    z-index: 152;
}
.botonMaximizar { 
    background-image: url(../imagenes/IconoEmergenteMaximizar.png);
}
.botonMaximizar:hover {
    background-image: url(../imagenes/IconoEmergenteMaximizarHover.png);
}

.botonMinimizar {
    background-image: url(../imagenes/IconoEmergenteMinimizar.png);
}
.botonMinimizar:hover {
    background-image: url(../imagenes/IconoEmergenteMinimizarHover.png);
}

.botonRestaurar { 
    background-image: url(../imagenes/IconoEmergenteRestaurar.png);
}
.botonRestaurar:hover {
    background-image: url(../imagenes/IconoEmergenteRestaurarHover.png);
}

.ventanaMaximizada{
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    position: fixed !important;
}

.contenidoVentanaMaximizada {
    max-height: 100% !important;
    max-width: 100% !important;
}
.caja_mensaje_cotizaciones {
    position:absolute left:20px;top:40px;
    text-decoration: none;
    font-family: verdana;
    font-size: 12px;
    color: #222222;
    border-width: 2px;
    border-style: solid;
    background-color: #ffffff;
    z-index: 300;
    float: left;
    box-shadow: 0 0 10px 3px #ffe2a7;
}

.caja_mensaje {
    position :fixed;
    text-decoration: none;
    font-family: verdana;
    font-size: 12px;
    color: #222222;
    border-width: 2px;
    border-style: solid;
    background-color: #ffffff;
    z-index: 300;
    width: 351px;
    float: left;
    box-shadow: 0 0 10px 3px #ffe2a7;
}

.bordesRedondeadosCajaMensaje {
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    -khtml-border-radius: 9px;
    border-radius: 9px;
}
.caja_mensaje_error {
    background-color: #FFFFFF;
    border: 2px solid #6DA5FF;
    border-radius: 9px;
    box-shadow: 0 0 10px 2px #999999;
    color: #E50005;
    font-family: verdana;
    font-size: 11px;
    left: 38%;
    top: 23%;
    position: absolute !important;
    text-decoration: none;
    width: 350px;
    z-index: 302;
}
.cabecera_mensaje { /* Redefinicion en explorer.css */
                    /*    width: 99.8%;*/
                    padding: 4px 0 4px 15px; /*top right bottom left*/
                    font-weight: 700;
                    border-bottom: 1px solid;
}

.bordesRedondeadosCabeceraMensaje {
    -webkit-border-top-left-radius: 7px;
    -webkit-border-top-right-radius: 7px;
    -moz-border-radius-topleft: 7px;
    -moz-border-radius-topright: 7px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.tituloCabeceraVentanaEmergente {
    font-size: 14px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.texto_mensaje {
    width: 91%;
    padding: 2px;
    padding-right: 0px;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left:15px;
    text-align: center;
}
.texto_mensaje_comprimido {
    width: 91%;
    padding: 2px;
    padding-right: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left:16px;
    /*text-align: center;*/
}
.texto_mensaje_ampliado {
    width: 96.5%;
    padding: 2px;
    padding-right: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
    height:300px;
    overflow:auto;
}
.texto_mensaje_ampliado2 {
    width: 96.5%;
    padding: 2px;
    padding-right: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
    height:200px;
    overflow:auto;
}
.lista_errores{
    margin-left: 25px;
    text-align:justify;
    padding-right:9px;
}

.cabecera_formulario {
    height:15px;
    padding-top:1px;
    padding-bottom:1px;
    color: #ffffff;
    background-color:#E50005;

}

.cabecera_formulario_fases {
    height:15px;
    padding-top:1px;
    padding-bottom:1px;
    padding-right:15px;
    padding-left:15px;
    color: #ffffff;
    background-color:#E50005;
}


.boton_formulario {
    border:none;
    background-color:#E50005;
    color:#FFFFFF;
    font-size:10px;
    padding-top:2px;
    padding-bottom:2px;
    width:70px;
    cursor:pointer;
}

.boton_administrar {
    border:none;
    background-color:#ffffff;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:10px;
    color:#666666;
    cursor: pointer;
    padding-left: 2px;
    padding-right: 2px;

}
.boton_administrar:hover {
    border:none;
    background-color:#ffffff;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:10px;
    color:#FF8148;
}

.contenedor_boton_formulario_mensajes{
    width:70px;
}

.contenedor_campo_formulario_mensajes{
    width:50%;
    float:right;
}

.linea_formulario{
    margin:15px;
    height:15px;
    clear:both;
}

.lineaFormularioSinAltura{
    margin:15px;
    clear:both;
}

.linea_formulario_botones{
    height:15px;
    clear:both;
}

.campo_formulario_mensajes{
    width:96%;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:11px;
}

.color_texto_etiqueta_error { color: #FF0000; }

.letra_advertencia{
    padding-left:22px;
    height:15px;
}

.ul_lista_errores{
    margin-left: -23px;
}

.boton_pantalla_completa{
    bottom:13px;
    left:50%;
    position:absolute;
}

.contenedorBotonesMensajeUnBoton{ margin-left: 114px; }
.contenedorBotonesMensajeDosBotones{ margin-left: 73px; }
.contenedorBotonesMensajeDosBotonesSalir{ margin-left: 80px; }
.contenedorBotonesMensajeTresBotones{ margin-left: 52px; }

.margenInferiorBotones{
    padding-bottom: 10px !important;
}

.draggable {
    cursor: move;
}
.contenedor_modulo {
    float: left;
    height: 100%;
    color: black;
    width: 100%;
    height: 382px;
    overflow-y: auto;
    position: relative;
}
.contenedor_mensaje {
    border: 0px solid #E50005;
    clear: both;
    margin: 1px;
    overflow: auto;
    padding-bottom: 22px;
    padding-left: 14px;
    padding-right: 16px;
    position: relative;
}
.contenedorAvisoFormularioAcceso{
    text-align: center;
}
.textoAviso{
    color: #FF0000;
}
.contenedor_modulo_acceso {
    float: left;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    position: relative;
}

.contenedor_modulo2_coste {
    float: left;
    height: 100%;
    color: black;
    width: 100%;
    overflow-y: auto;
    position: relative;
}

.contenedor_modulo2_facturacion {
    float: left;
    height: 100%;
    color: black;
    width: 100%;
    overflow-y: auto;
    position: relative;
}

.contenido_modulo {
    position :relative;
    width: 100%;
    min-width: 620px;
}

.contenido_modulo_acceso {
    position :relative;
    width: 100%;
    min-width: 320px;

}

.contenido_modulo2 {
    position :relative;
    width: 100%;
}

.capaMaximizada{
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.cabeceraMensajeTitulo {
    width: 92.2%;
}

.botonCerrar, .botonCerrarAyuda {
    /* Este estilo se sobrescribe en el CSS del módulo correspondiente para cambiar la imagen de la 'X' */
    background-image: url(../imagenes/iconoCerrarVentana.png);
    float: right;
    margin-right: 7px;
    margin-top: -10px;
    height: 10px;
    width: 10px;
    z-index: 152;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.botonCerrar:hover, .botonCerrarAyuda:hover{
        background-image: url(../imagenes/iconoCerrarVentanaBlanco.png);
}

.contenedorBotonImagenMensajeSuperiorQuienesSomos {
    position:relative;
    /*width:100%;*/
    /*border-bottom: 1px solid #cb9904;*/
    float:left;
    height: 22px;
    bottom: -1px;
}

.contenedorBotonImagenMensajeSuperior {
    position:relative;
    width:100%;
    /*border-bottom: 1px solid #cb9904;*/
    float:left;
    height: 22px;
}

.contenedorBotonImagenMensajeSuperiorInterior{
    position:relative;
    margin-left: 10px;
}
.contenedorBotonImagenMensajeSuperiorInteriorQuienesSomos{
    position:absolute;
    margin-left: 9px;
}
.contenedor_aviso {
    position: relative;
    clear: both;
    padding-right: 15px;
    padding-left: 14px;
    padding-bottom: 19px;
    margin: 1px;
    overflow: auto;
    height: auto;
}

.contenido_aviso {
    position: relative;
    float: left;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    padding-top: 10px;
    height: auto;
    width:100%;
}

.bordesRedondeadosPieMensaje {
    -webkit-border-bottom-left-radius: 9px;
    -webkit-border-bottom-right-radius: 9px;
    -moz-border-radius-bottomleft: 9px;
    -moz-border-radius-bottomright: 9px;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
}
