﻿/*inicia reseteo universal*/
*{
    border:0;
    margin:0;
    padding:0;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    /*font-size: 100%;*/
	/*font: inherit;
	vertical-align: baseline;*/
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section{ display:block;
                                                                                   margin:0;
                                                                                   padding:0;
}

ul, ol,li{
    list-style:none;
    text-decoration:none;
}
 img{
     max-width:100%;
 }

body {
    background-color:#c3b78e;
    color:#424242;
    font-family:Arial, Helvetica, sans-serif, Verdana;     
}

#contenedor{
    max-width:1000px;
    margin:0 auto;    
    padding:0;    
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    background-color:white;
}
header, footer, section#contenido{
    width:100%;       
}

header h1 {
        font-size:20pt;
    }

h2 {
    font-family: 'Open Sans', sans-serif;
	font-weight: bold;	
	font-size: 12pt; /* 18px */
	line-height: 1.333em; /* 24px/18px */
    margin-left:5px;
    color:#1f3c6c;
}
/************** MENU SUPERIOR H-TOP *******************************/
section#h-top{
    background: #001e5a;
	font-size: 12px;   
	color: #fff;
    max-width:100%;
    text-align:center;
	/*padding: 11px 10px 13px 30px;*/
  
}

footer{
    font-size: 12px;   
	color: #fff;
    max-width:100%;
    padding: 10px 20px 10px 0;
    text-align:right;
    background-color:#001e5a;
	/*padding: 11px 10px 13px 30px;*/
  
}


/************** TERMINA MENU SUPERIOR H-TOP *******************************/


/************** SECCION LOGOS *******************************/

section#h-top ul{
    list-style:none;
    text-align:center;

}
    section#h-top li {
        display: inline-block;
        padding: 10px 40px 10px 0;
        vertical-align: middle;
        text-align:center;
    }

section#h-top ul li img{
                   max-width:70%;
                   text-align:center;
}

section#grafg ul{
    list-style:none;

}
    section#grafg li {
        display: inline-block;
        padding: 10px;
        vertical-align: middle;
        text-align:center;
    }

section#grafg ul li img{
                   max-width:50%;
}
/* TERMINA SECCION LOGOS */


/*INICIA MENU DE NAVEGACION*/

.nave, .nave ul{
    list-style: none outside none;
    margin: 0;
    padding: 0;
}
.nave{
     font-family: "Lucida Sans Unicode",Verdana,Arial,sans-serif;
    font-size: 13px;
    height: 36px;
    list-style: none outside none;
    margin: 5px auto;
    text-shadow: 0 -1px 3px #202020;
    width: 1000px;

    /* border radius */
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;

    /* box shadow */
    -moz-box-shadow: 0px 3px 3px #cecece;
    -webkit-box-shadow: 0px 3px 3px #cecece;
    box-shadow: 0 3px 4px #8b8b8b;

    /* gradient */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #787878), color-stop(0.5, #5E5E5E), color-stop(0.51, #707070), color-stop(1, #838383));
    background-image: -moz-linear-gradient(center bottom, #787878 0%, #5E5E5E 50%, #707070 51%, #838383 100%);
    background-color: #5f5f5f;
    margin: 0 0 10px 0;
    padding: 0;
}

.nave > li {
	border-bottom: 1px solid #575757;
    border-left: 1px solid #929292;
    border-right: 1px solid #5d5d5d;
    border-top: 1px solid #797979;
    display: block;
    float: left;
    height: 34px;
    position: relative;
    width: 150px;
}
			
.nave li a {
    color: #FFFFFF;
    display: block;
    line-height: 34px;
    outline: medium none;
    text-align: center;
    text-decoration: none;

    /* gradient */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #787878), color-stop(0.5, #5E5E5E), color-stop(0.51, #707070), color-stop(1, #838383));
    background-image: -moz-linear-gradient(center bottom, #787878 0%, #5E5E5E 50%, #707070 51%, #838383 100%);
    background-color: #5f5f5f;
				/*background-color:#000;
				color:#fff;
				text-decoration:none;
				padding:10px 12px;
				display:block;*/
}
			
.nave li a:hover {
	background-color:#434343;
}
			
.nave li ul {
	display:none;
	position:absolute;
	min-width:140px;
    text-align:left;
    
}
			
.nave li:hover > ul {
	display:block;
}
			
.nave li ul li {
	position:relative;
    text-align:left;
}
			
.nave li ul li ul {
	right:-140px;
	top:0px;
    text-align:left;
}

.nave > li:first-child {
    border-left: 0 none;
    margin-left: 5px;
}

.nave ul li {
    background: none repeat scroll 0 0 #838383;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align:left;
}

/* keyframes #animation */
@-webkit-keyframes animation {
    0% {
        -webkit-transform: scale(1);
    }
    30% {
        -webkit-transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1.1);
    }
}
@-moz-keyframes animation {
    0% {
        -moz-transform: scale(1);
    }
    30% {
        -moz-transform: scale(1.2);
    }
    100% {
        -moz-transform: scale(1.1);
    }
}
.nave li > a:hover {
    /* CSS3 animation */
    -webkit-animation-name: animation;
    -webkit-animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction:;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
    color:#ffaf04;
    -moz-animation-name: animation;
    -moz-animation-duration: 0.3s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: normal;
    -moz-animation-delay: 0;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
}

/*TERMINA MENU DE NAVEGACION*/

/*INICIA CONTENIDO*/

/*------------------------------------------------------------------

[ Input ]*/
.formulario {
  width: 300px;
  
  background: #fff;
  border-radius: 2px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*.validate-input {
  position: relative;
}*/

.campos {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #dbdbdb;
  margin-bottom: 5px;
  text-align:left;
}

.label-texto {
  font-family: Verdana, sans-serif;
  font-weight:bold;
  font-size: 14px;
  color: #666666;
  line-height: 1.2;
  padding-left: 2px;
  text-align:left;
}

.input100 {
  display: block;
  width:100%;
  height: 25px;
  background: transparent;
  font-family: Verdana, sans-serif;
  font-size: 11px;  
  color: #555555;
  line-height: 1.2;
  padding: 0 2px;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #d5007d;
  background: -webkit-linear-gradient(45deg, #d5007d, #e53935);
  background: -o-linear-gradient(45deg, #d5007d, #e53935);
  background: -moz-linear-gradient(45deg, #d5007d, #e53935);
  background: linear-gradient(45deg, #d5007d, #e53935);
}


.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}
/*++++++++++++++++++++++++++++++++++++++++++++++++*/

section#contenido
{
  text-align:center;  
 
}

   
section#contenido img
{
   
}
section#contenido img, h2
{
    display:inline-block;
    vertical-align:middle;
}
/*section#contenido div{
    display:inline-block;
    margin:5px, 5px;
    
}*/
/*section#contenido h2 {
    font-family: 'Open Sans', sans-serif;
	font-weight: bold;	
	font-size: 1.1em; /* 18px 
	line-height: 1.333em; /* 24px/18px 
    margin-left:5px;
    color:#1f3c6c;
}*/



.divdefault {
    margin:10px 10px;
    width:30%; 
    display:inline-block; 
    vertical-align:top;
    text-align:justify;
    font-size:12pt;
    font-family:Arial, Verdana;
    line-height:25px;    
}
.inf{
    text-align:justify;
    /*width:1000px;*/
    margin:5px 5px;
}

.inf p{
     font-size:13pt;
	margin-top:10px;
    margin-bottom:10px;
    text-align:justify;
    line-height:23px;
    color:#666666;
   
    
}

/*****************************************/
/*.inf listas ul, .inf listas ul{
   
    margin-left:15px;
   color:#666666;
   list-style:circle;
}*/
/****************************************/

.inf ol{
   
    margin-left:15px;
    /*list-style:circle;*/
   
}


/************************/
/*.inf ul{
    margin-left:15px;
}*/
/***********************/


.inf ol li{
    
    font-size:13pt;
	margin-bottom:10px;
    text-align:justify;
    line-height:22px;
    color:#666666;
}

/***************************/
.inf li a{
    
   
   color:#666666;
   font-size:10pt;
	margin-bottom:0px;
    text-align:justify;
    line-height:15px;
    text-decoration:none;
  
    
}
.inf li a:hover{
    
   color:#1b3869;
}

/****************************/


.inf hr {
	background-color: #e5e5e5;
	color: #e5e5e5;
	border: none;
	height: 1px;
	clear: both;
	margin: 10px 0;
}
.inf h3{
    padding-top:10px;
    text-align:center;
}
.inf h2{
    padding-top:10px;
    font-family: 'Open Sans', sans-serif;
	font-weight: normal;	
	font-size: 26pt;
    text-align:left;
    padding-left:0px;
	line-height: 1.333em; /* 24px/18px */
    margin-left:0px;
    color:#1f3c6c;
}

.inf h4{
    padding-top:10px;
    font-size:14pt;
    font-weight:normal;
    text-align:left;
   padding-left:0px;
   color:#fff;
   background-color:#1f3c6c;
}

.entry-image, .entry-video, .entry-audio, .entry-slider {
	margin-bottom: 20px;
}

.entry-image > a, .entry-slider > ul > li > a {
	display: block;	
	position: relative; /* sets the initial position for the overlay */
}

.entry-image, .entry-slider > ul > li {
	background-color: #fff;
}

.entry-image {
	display: inline-block;
}

.project-carousel .entry-image,
.post-carousel .entry-image,
.portfolio-grid .entry-image,
.blog-entry-list > .entry > .entry-image {
	display: block;	
}

.entry-image,
.entry-image img,
.entry-slider,
.entry-slider img {
	max-width: 100%;	
}

.entry-title a {
   color: #383838; 
}

/* Overlay */
.float-left {
	float: left;
     
}

.float-right {
	float: right;	
}

.center-block {
	display: table !important;
	margin-left: auto;
	margin-right: auto;
}

.entry-image > a .overlay, 
.entry-slider > ul > li > a .overlay {
	opacity: 0;
	filter: alpha(opacity=0);
    z-index: 0; /* for Opera */
}

.entry-image > a:hover .overlay, 
.entry-slider > ul > li > a:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
    z-index: 1; /* for Opera */
}

.overlay {
	display: block;
	background-color: rgba(0,0,0,0.3);
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.overlay.zoom {
	background-image: url(../images/overlay-zoom.png);
}

.overlay.link {
	background-image: url(../images/overlay-link.png);
}
.entry-image.float-left, .float-left.caption,
	.entry-image.float-right, .float-right.caption,
	.entry-image.center-block, .center-block.caption {
		margin: 20px 0;	
	}

.entry-image.float-left,
.float-left.caption {
    margin: 5px 20px 15px 0;
}

.entry-image.float-right,
.float-right.caption {
    margin: 5px 0 15px 20px;
}

.entry-image.center-block,
.center-block.caption {
    margin-top: 15px;
	margin-bottom: 15px;	
}

.caption .entry-image {
    margin-bottom: 10px;
}

.bcalidad{
    width:14%;
    margin:0.25%;
    display:inline-block;
}

.dsgci
{
    width:38%;
    display:inline-block;
    vertical-align:top;
    
}
.dsgcd
{
    width:60%;
    display:inline-block;
    vertical-align:top;
    text-align:left;
    
}

/*.listas li{
    line-height:20px;  
    margin-left:2%;
    
    
   
}*/
.listacarpetas {
    border-color:#1f3c6c;
    border:1px;
    background-color:#a0c7e1;
    height:160px;
    font-size:11pt;
    color:#00005E;
    width:100%;
}

section#regs
{
    position: relative;
    width: 305px;
    margin: 0px auto 0 auto;
    text-align: center;    
}
section#regs ul li
{
    padding:5px;
    
}


/*+++++++++++++++++++++++++++++++++++++++INICIA CAJAS DE TEXTO LOGIN ++++++++++++++++++++++++++++++++++++++++++*/
/*.txt{
    color:#666666;
    height:25px;
    border:1px solid #aaa;
    box-shadow: 0px 0px 3px #ccc, 0 10px 15px #eee inset;
    border-radius:2px;
    width:150px;
    

}
.txt:focus{
    background: #fff; 
    border:1px solid #555; 
    box-shadow: 0 0 3px #aaa; 
}*/

.txt {
    width: 300px;
    height: 42px;
    margin-top: 10px;
    padding: 0 15px;
    background: #2d2d2d; /* browsers that don't support rgba */
    background: rgba(45,45,45,.15);
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #3d3d3d; /* browsers that don't support rgba */
    border: 1px solid rgba(255,255,255,.15);
    -moz-box-shadow: 0 2px 3px 0 rgba(0,0,0,.1) inset;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,.1) inset;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,.1) inset;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #190979;
    text-shadow: 0 1px 2px rgba(0,0,0,.1);
    -o-transition: all .2s;
    -moz-transition: all .2s;
    -webkit-transition: all .2s;
    -ms-transition: all .2s;
}

.txt:-moz-placeholder { color: #777777; }
.txt:-ms-input-placeholder { color: #777777; }
.txt::-webkit-input-placeholder { color: #777777; }

.txt:focus {
    outline: none;
    -moz-box-shadow:
        0 2px 3px 0 rgba(0,0,0,.1) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
    -webkit-box-shadow:
        0 2px 3px 0 rgba(0,0,0,.1) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
    box-shadow:
        0 2px 3px 0 rgba(0,0,0,.1) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
}
/*+++++++++++++++++++++++++++++++++++++++TERMINA CAJAS DE TEXTO LOGIN ++++++++++++++++++++++++++++++++++++++++++*/
.txtpart{
    color:#666666;
    height:25px;
    border:1px solid #aaa;
    box-shadow: 0px 0px 3px #ccc, 0 10px 15px #eee inset;
    border-radius:2px;
    width:60px;
    

}
.txtpart:focus{
    background: #fff; 
    border:1px solid #555; 
    box-shadow: 0 0 3px #aaa; 
}
.lbl{
    color:#666666;
    text-align:left;
}

/*++++++++++++++++++++++++++++++++++++++++++++  INICIA BOTON ++++++++++++++++++++++++++++++++++++++++++++*/
.submit2 {
    
    Width:140px;
    background-color: #68b12f;
    background: -webkit-gradient(linear, left top, left bottom, from(#68b12f), to(#50911e));
    background: -webkit-linear-gradient(top, #68b12f, #50911e);
    background: -moz-linear-gradient(top, #68b12f, #50911e);
    background: -ms-linear-gradient(top, #68b12f, #50911e);
    background: -o-linear-gradient(top, #68b12f, #50911e);
    background: linear-gradient(top, #68b12f, #50911e);
    border: 1px solid #509111;
    border-bottom: 1px solid #5b992b;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    box-shadow: inset 0 1px 0 0 #9fd574;
    -webkit-box-shadow: 0 1px 0 0 #9fd574 inset ;
    -moz-box-shadow: 0 1px 0 0 #9fd574 inset;
    -ms-box-shadow: 0 1px 0 0 #9fd574 inset;
    -o-box-shadow: 0 1px 0 0 #9fd574 inset;
    color: white;
    font-weight: bold;
    padding: 6px 20px;
    text-align: center;
    text-shadow: 0 -1px 0 #396715;
}
.submit2:hover {
    opacity:.85;
    cursor: pointer; 
}
.submit2:active {
    border: 1px solid #20911e;
    box-shadow: 0 0 10px 5px #356b0b inset; 
    -webkit-box-shadow:0 0 10px 5px #356b0b inset ;
    -moz-box-shadow: 0 0 10px 5px #356b0b inset;
    -ms-box-shadow: 0 0 10px 5px #356b0b inset;
    -o-box-shadow: 0 0 10px 5px #356b0b inset;
     
}

.submit {
    cursor: pointer;
    width: 300px;
    height: 44px;
    margin-top: 15px;
    padding: 0;
   
    /*background:#ffaf04; /*ef4300*/
    background: #343a40;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #636363;
   /* border: 1px solid #10d536; */
    -moz-box-shadow:
        0 15px 30px 0 rgba(255,255,255,.25) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
    -webkit-box-shadow:
        0 15px 30px 0 rgba(255,255,255,.25) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
    box-shadow:
        0 15px 30px 0 rgba(255,255,255,.25) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.1);
    -o-transition: all .2s;
    -moz-transition: all .2s;
    -webkit-transition: all .2s;
    -ms-transition: all .2s;
}

.submit:hover {
    -moz-box-shadow:
        0 15px 30px 0 rgba(255,255,255,.15) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
    -webkit-box-shadow:
        0 15px 30px 0 rgba(255,255,255,.15) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
    box-shadow:
        0 15px 30px 0 rgba(255,255,255,.15) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
}

.submit:active {
    -moz-box-shadow:
        0 15px 30px 0 rgba(255,255,255,.15) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
    -webkit-box-shadow:
        0 15px 30px 0 rgba(255,255,255,.15) inset,
        0 2px 7px 0 rgba(0,0,0,.2);
    box-shadow:        
        0 5px 8px 0 rgba(0,0,0,.1) inset,
        0 1px 4px 0 rgba(0,0,0,.1);

    border: 0px solid #ef4300;
}


/*++++++++++++++++++++++++++++++++++++++++++++  TERMINA BOTON ++++++++++++++++++++++++++++++++++++++++++++*/
footer h1{
    font-size:12px;
}

.titulosver{
    color:#193176;
    font-size:11pt;
    font-family:Arial, Verdana, sans-serif;
    height:25px;
    vertical-align:middle;
    text-align:right;
}
.titulosv{
    color:#fff;
    background-color:#0a8ee5;
    font-size:11pt;
    font-family:Arial, Verdana, sans-serif;
    height:44px;
    vertical-align:middle;
    text-align:center;
    font-weight:bold;
}
.titulos{
    /*background-color:#0a8ee5;
    color:white;
    font-size:11pt;
    font-family:Arial, Verdana, sans-serif;
    height:25px;
    vertical-align:middle;*/
     font-family: 'Open Sans', sans-serif;
	font-weight: bold;	
	font-size: 1.9em; /* 18px */
	line-height: 1.333em; /* 24px/18px */
    margin-left:0px;
    color:#1f3c6c;
    


}
.titulosgraf{
    background-color:#0a8ee5;
    color:white;
    font-size:10pt;
    font-family:Arial, Verdana, sans-serif;
    height:25px;
    vertical-align:middle;
}
.resulgraf{
    font-size:9pt;
    font-family:Arial, Verdana, sans-serif;
}

.aviso{
    font-size:11pt; 
    border-color: #0b2c96; 
    border-style: double; 
    color:#0f0dba;     
    width: 300px;    
    background-color:#b2e0ff;
    margin:10px auto;
  
    /*position:fixed;
    left: 350px; 
    top:0px;
    z-index: auto;*/
}

.datcas{
    font-size:10pt;
    
    text-align:center;
    
}