﻿@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
}
html, body {
	height: 100%;
}
.contenedor_del_centro_de_la_pagina {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -4em;
}
.footer_siempre_abajo {
	height: 4em;
	text-align: center;
	background-color: #CCC;
	font-weight: bold;
}
.limpiar_divs {
	height: 4em;
	text-align: center;
}
.pie {
	padding-top: 5px;
}


.titulo_contenido{
	text-align: center;
	font-size: 25px;
	color: #039;
	width: 100%;
	float: left;
	font-family: "Times New Roman";
	font-weight: bold;
	font-style: italic;
	padding-top: 10px;
}
.contenido_pagina {
	width: 100%;
	text-align: center;
	float: left;
	padding-top: 20px;
}
.header {
	background-image: url(../images/fondocabecera.png);
	background-repeat: repeat-x;
	height: 90px;
	float: left;
	width: 100%;
}
.headerinterior{
	width: 100%;
}
.imagenheader{
	float: left;
	height: 90px;
	width: 241px;
	background-image: url(../images/logo.jpg);
	background-repeat: no-repeat;
}
.textoheader{
	color: #FFF;
	float: left;
	height: 86px;
	font-size: 14px;
	margin-top: 7px;
	margin-left: 7px;
}
.usuario{
	float: right;
	font-weight: bold;
	color: #FFF;
	height: 86px;
	font-size: xx-small;
	text-align: center;
}
#encabezado_pagina{
	width: 100%;
	background-image: url(../images/fondocabecera.png);
	background-repeat: repeat-x;
	text-align: center;
	overflow: hidden;
	padding: 0px;
	font-size: 12px;
	color: #FFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#menu2 {
	background-color: #CCC;
	width: 100%;
	font-size: 12pt;
	text-align: left;
}
#cuerpo{
	width: 90%;
	background-color: #FFF;
	font-size: 12px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#EspacioContenido {
    padding-top: 140px;
    padding-left: 28px;
    padding-bottom: 30px;
    margin: 0px 28px 10px 0px;
    
}

#encabezado_estatico {
    position: fixed;
    width: 100%
}

/*PARA QUE EL MODAL BOOTSTRAP SALGA CENTRADO EN PANTALLA*/
.modal {
    z-index: 999999;
}

.ayuda-centrar-modal {
    display: table;
    height: 100%;
    width: 100%;
    padding-left: 50px;
}

.centrar-modal-verticalmente {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
}

/*EVITA QUE SE DESPLACE EL FORMULARIO DETRAS DEL MODAL ABIERTO*/
/*ME DA PROBLEMAS QUE YA NO APARECE EL SCROLL AL CERRAR EL MODAL, NO LOGRÉ SOLUCIONARLO*/
body.modal-open {
    /*overflow: hidden;
    position: fixed;*/
}

.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width: inherit;
    height: inherit;
    /* To center horizontally */
    margin: 0 auto;
}
/*FIN PARA QUE EL MODAL BOOTSTRAP SALGA CENTRADO EN PANTALLA*/

.cursor-pointer {
    cursor: pointer;
}

.panel-heading-personal span {
    margin-top: -16px;
    font-size: 20px;
}


.panel-heading-personal2 span {
    margin-top: -30px;
    font-size: 20px;
}

.panel-heading-personal-con-botones {
    height: 50px;
    vertical-align: middle;
}


.margen-panel-titulo-con-botones {
    margin-top: 4px;
    margin-bottom: -7px;
    font-size: 13px;
    font-weight: bold;
}

.margen-span-con-botones {
    margin-top: -21px;
    font-size: 25px;
    font-weight: bold;
}

.margen-span-con-link-botones {
    margin-top: -25px;
    font-size: 25px;
    font-weight: bold;
}


.margen-span-con-link-botones-en-modal {
    margin-top: -33px;
    font-size: 25px;
    font-weight: bold;
}

.container-fluid-margenes {
    margin-right: -13px;
    margin-left: -13px;
}

.margen-panel-titulo {
    margin-top: -7px;
    margin-bottom: -7px;
    font-size: 13px;
    font-weight: bold;
}


/* PARA PODER MOVER CON EL MOUSE LA VENTANA MODAL */
.modal {
    overflow: hidden;
}

.modal-dialog {
    margin-right: 0;
    margin-left: 0;
}

/* UN TAMAÑO FIJO DE VENTANA MODAL, PARA QUE TENGA SCROLL*/
.modal-body {
    max-height: 700px;
    overflow-y: auto;
}


/**
 * Tooltip Styles
 */

/* Clase que tendra el tooltip */
.cssToolTip {
    position: relative; /* Esta clase tiene que tener posicion relativa */
    color: #ff8c00; /* Color del texto */
    display: inline;
}

    /* El tooltip */
    .cssToolTip span {
        background: #FF8F35;
        border: 2px solid #337ab7;
        border-radius: 5px;
        box-shadow: 5px 5px 5px #333;
        color: #FFF;
        font-weight: bold;
        display: none; /* El tooltip por defecto estara oculto */
        font-size: 0.9em;
        padding: 5px 5px 5px 5px;
        max-width: 600px;
        min-width: 300px;
        position: absolute; /* El tooltip se posiciona de forma absoluta para no modificar el aspecto del resto de la pagina */
        top: 22px; /* Posicion apartir de la parte superior del primer elemento padre con posicion relativa */
        left: 0px; /* Posicion apartir de la parte izquierda del primer elemento padre con posicion relativa */
        z-index: 9999999999999999999999999999999999999999999999; /* Poner un z-index alto para que aparezca por encima del resto de elementos */
    }

    /* El tooltip cuando se muestra */
    .cssToolTip:hover span {
        display: block; /* Para mostrarlo simplemente usamos display block por ejemplo */
        z-index: 9999999999999999999999999999999999999999999999;
    }

/* Flecha del tooltip */
    .cssToolTip span:after { /* Pseudo-elemento */
        content: '';
        top: -11px;
        border-left: 10px solid transparent;
        border-bottom: 10px solid #337ab7; /* Color */
        border-right: 10px solid transparent;
        height: 0;
        left: 8%;
        margin-left: -9px;
        position: absolute;
        width: 0;
    }

.estilo-hr {
    border-top: 3px dashed #337ab7;
}

