/* CSS Document */
.status
{
	border:double;
	border-color:#e2c822;
	background:#fff9d7;
}
.status_azul
{
	border:double;
	border-color: #FF0000;
	background: #9933FF;
}
.status_iutepal
{
	border:double;
	border-color: #063a87;
	background: #B0E1F9;
}
.Estilo_Cumples {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-weight: bold;
	color: #330066;
}
.Estilo_tit {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 25px;
	font-weight: bold;
	color: #FFFFFF;
}
.Estilo_tit_rosado {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 25px;
	font-weight: bold;
	color:#CC0066;
}
.Estilo_tit_azul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 25px;
	font-weight: bold;
	color:#063a87;
}
.Estilo_tit_negro {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 25px;
	font-weight: bold;
	color:#000000;
}

.Estilo_titu {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-weight: bold;
	color:#FFFFFF;
}

.textos_blanco 
{
	font-family: Verdana, Arial, Helvetica, sans-serif, Westminster;
	font-size: 16px;
	color:#FFFFFF;
}

.textos 
{
	font-family: Verdana, Arial, Helvetica, sans-serif, Westminster;
	font-size: 16px;
	color:#063a87;
}
.textos1
{
	font-family: Verdana, Arial, Helvetica, sans-serif, Westminster;
	font-size: 15px;
	color:#000000;
}
.textos2
{
	font-family: Verdana, Arial, Helvetica, sans-serif, Westminster;
	font-size: 11px;
	color:#000000;
}
.textos_blog
{
	font-family: Verdana, Arial, Helvetica, sans-serif, Westminster;
	font-size: 15px;
	color:#000000;
}
/*a:link 
{
	TEXT-DECORATION: none;
	COLOR: #330066;
}
a:visited 
{
	TEXT-DECORATION: none;
	COLOR: #330066;
}
A:hover 
{
	text-decoration: underline overline; 
	color: #990000;
}*/
.enlace:link
{
	TEXT-DECORATION: none;
	color:#FFF;
}
.enlace:visited 
{
	TEXT-DECORATION: none;
	color:#FFF;
}
.enlace:hover
{
	text-decoration: underline overline; 
	color: #FFF;

}
.enlace1:link
{
	TEXT-DECORATION: none;
	color:#CC0066;
}
.enlace1:visited 
{
	TEXT-DECORATION: none;
	color:#CC0066;
}
.enlace1:hover
{
	text-decoration: underline overline; 
	color: #CC0066;

}
.edit 
{
	border: 1px solid #063a87;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 12pt;
	color: #063a87; 
	background-color: #FFFFFF;
	font-weight: normal;
}

.edit_botones 
{
	border: 1px solid #CC0066;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 12pt;
	color: #CC0066; 
	background-color: #FFFFFF;
	font-weight: normal;
	height:50;
}
.imgRedonda {
    width:40px;
    height:40px;
    border-radius:150px;
}
.img_Redonda {
    width:50px;
    height:50px;
    border-radius:150px;
}
.imgdesenfoque:hover {filter: blur(5px);}

.imggris:hover {filter: grayscale(80%);}

/*Estilos Base*/
.contenedor-img {
    width: 300px;
    height: 200px;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
    background: #fff;
}
    .contenedor-img .mascara,.contenedor-img .contenido {
        width: 300px;
        height: 200px;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0
    }
    .contenedor-img img {
        display: block;
        position: relative;
       
    }
    .contenedor-img h2 {
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        position: relative;
        font-size: 17px;
        padding: 10px;
        background: #CC0066;
        margin: 20px 0 0 0
    } /*rgba(0, 0, 0, 0.9)*/
    .contenedor-img p {    
        font-size: 12px;
        position: relative;
        color: #fff;
        padding: 10px 20px 10px;
        text-align: center
    }
    .contenedor-img a.link {
        display: inline-block;
        text-decoration: none;
        padding: 7px 14px;
        background: #222;
        color: #fff;
        text-transform: uppercase;
        box-shadow: 0 0 1px #000
    }
        .contenedor-img a.link:hover {
            box-shadow: 0 0 5px #000
        }
        
     
/*Ejemplo 1*/
.ejemplo-1 img { 
    transition: all 0.2s linear;
}
.ejemplo-1 .mascara {
    opacity: 0;
	/*background-color:#0000FF;*/
    background-color: rgba(0,0,0, 0.6); 
    transition: all 0.3s ease-in-out;
}
    .ejemplo-1 h2 {
        transform: translateX(-200px);
        opacity: 0;
        transition: all 0.7s ease-in-out;
    }
    .ejemplo-1 p { 
        transform: translateX(200px);
        opacity: 0;
    	transition: all 0.4s linear;
    }
    .ejemplo-1 a.link{
        opacity: 0;
    	transition: all 0.4s ease-in-out;
        transform: translateY(100px)
    }
    .ejemplo-1:hover img { 
    	transform: scale(1.1);
    } 
    .ejemplo-1:hover .mascara { 
    	opacity: 1;
    }
    .ejemplo-1:hover h2,
    .ejemplo-1:hover p,
    .ejemplo-1:hover a.link {
        opacity: 1;
        transform: translateX(0px);
    }
    .ejemplo-1:hover p {
        transition-delay: 0.1s;
    }
    .ejemplo-1:hover a.link {
        transition-delay: 0.2s;
        transform: translateY(0px);
    }
	
	
/*.ventana{
  background-color:aqua;
  width:300px;
  padding: 10px 20px;
  margin: 20% auto;
  position: relative;
}
.modal{
  background-color: rgba(0,0,0,.8);
  position:fixed;
  top:-250px;
  right:0;
  bottom:0;
  left:0;
  opacity:0;
  pointer-events:none;
  transition: all 1s;
}
#IrVentanaFlotante:target{
  opacity:1;
  pointer-events:auto;
}
.opcion{width: 100px;
        background-color:yellow;
border:1px solid black;}
*/

.resultados_busqueda {
	position: absolute;
	/*top: 100%;  Coloca el div debajo del campo de búsqueda */
	/*left: 0;*/
	background-color: white;
	border: 1px solid #063a87;
	width:265px;

	padding: 5px;
	display: none; /* Inicialmente oculto */
	z-index: 999; /* Asegura que el div esté en el frente de otros elementos */
	/*left: 775px;*/
  /* Otros estilos que desees aplicar al div */
}
.resultado {
  cursor: pointer;
}

.resultado:hover {
  background-color: #063a87;
  color:#FFF;
}
.resultados_busqueda1 {
	
	/*top: 100%;  Coloca el div debajo del campo de búsqueda */
	/*left: 0;*/
	background-color: white;
	/*border: 1px solid #CC0066;*/
	width:265px;

	padding: 5px;
	/*display: none; /* Inicialmente oculto */
	z-index: 999; /* Asegura que el div esté en el frente de otros elementos */
	/*left: 775px;*/
  /* Otros estilos que desees aplicar al div */
}
.inicio_google {
	position: absolute;
	/*top: 100%;  Coloca el div debajo del campo de búsqueda */
	/*left: 0;*/
	background-color: white;
	border: 1px solid #CC0066;
	width:200px;

	padding: 5px;
	display: none; /* Inicialmente oculto */
	z-index: 999; /* Asegura que el div esté en el frente de otros elementos */
	/*left: 775px;*/
  /* Otros estilos que desees aplicar al div */
}


/* Estilo para la ventana emergente */
.ventana-emergente {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  overflow: auto;
}

/* Estilo para el contenido de la ventana emergente */
.contenido-ventana {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}

/* Estilo para el botón de cerrar */
.contenido-ventana button {
  background-color: #f44336;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}
.resultados_busqueda {
	position: absolute;
	/*top: 100%;  Coloca el div debajo del campo de búsqueda */
	/*left: 0;*/
	background-color: white;
	border: 1px solid #063a87;
	width:265px;

	padding: 5px;
	display: none; /* Inicialmente oculto */
	z-index: 999; /* Asegura que el div esté en el frente de otros elementos */
	/*left: 775px;*/
  /* Otros estilos que desees aplicar al div */
}
.resultado {
  cursor: pointer;
}

.resultado:hover {
  background-color: #063a87;
  color:#FFF;
}
.resultados_busqueda1 {
	
	/*top: 100%;  Coloca el div debajo del campo de búsqueda */
	/*left: 0;*/
	background-color: white;
	/*border: 1px solid #CC0066;*/
	width:265px;

	padding: 5px;
	/*display: none; /* Inicialmente oculto */
	z-index: 999; /* Asegura que el div esté en el frente de otros elementos */
	/*left: 775px;*/
  /* Otros estilos que desees aplicar al div */
}
.inicio_google {
	position: absolute;
	/*top: 100%;  Coloca el div debajo del campo de búsqueda */
	/*left: 0;*/
	background-color: white;
	border: 1px solid #CC0066;
	width:200px;

	padding: 5px;
	display: none; /* Inicialmente oculto */
	z-index: 999; /* Asegura que el div esté en el frente de otros elementos */
	/*left: 775px;*/
  /* Otros estilos que desees aplicar al div */
}


/* Estilo para la ventana emergente */
.ventana-emergente {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  overflow: auto;
}

/* Estilo para el contenido de la ventana emergente */
.contenido-ventana {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}

/* Estilo para el botón de cerrar */
.contenido-ventana button {
  background-color: #f44336;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}
@font-face {
    font-family: 'IutepalPersonalizada1';
    src: url('../fonts/Microgramma_Extended_Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
.titulo_iutepal {
    font-family: 'IutepalPersonalizada1', sans-serif;
}

