@charset "utf-8";
/* CSS  */

/*//////////////////////////////*/
/*Hoja de Estilo para pagina web Solorzano*/
/*//////////////////////////////*/


#todo				
	{
	position:relative;
	margin:auto;
	width:1024px;
	height:auto;
	text-align:center;
	background-color:#000000;
	}
#encabezado
	{
	width:1024px;
	height:190px;
	}
	
#contenido
	{
	width:1024px;
	height:auto;
	}
	
#pie
	{
	width:1024px;
	height:100px;
	}
	
/*Formato al Menu*/
.menu,
.menu ul,
.menu li,
.menu a {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}
 
ul.menu {
    height: 40px;
    width: 395px;
 	
	/*Color de fonddo del Menu principal*/
    background: #353535;
    background: -webkit-linear-gradient(top, #353535 0%,#353535 300%);
    background: -moz-linear-gradient(top, #353535 0%,#353535 100%);
    background: -o-linear-gradient(top, #353535 0%,#353535 100%);
    background: -ms-linear-gradient(top, #353535 0%,#353535 100%);
    background: linear-gradient(top, #353535 0%,#353535 100%);
 
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	z-index:1;
	
}

ul.menu li {
    position: relative;
    list-style: none;
    float: left;
    display: block;
    height: 30px;
}
ul.menu li a {
    display: block;
    padding: 0 10px;
    margin: 6px 0;
    line-height: 30px;
    text-decoration: none;
    /* color del separador de menus y grosor */
    border-left: 1px solid #FFCC00;
    border-right: 1px solid #FFCC00;
 
    font-family: "Oxygen";
    /*font-weight: bold;*/
    font-size: 16px;
 	
	/*Color del Texto*/
    color: #FFF;
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
 
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

ul.menu li:first-child a { border-left: none; }
ul.menu li:last-child a{ border-right: none; }
 
ul.menu li:hover > a { color: #FFCC00; }
ul.menu ul {
    position: absolute;
    top: 40px;
    left: 0;
 
    opacity: 0;
	/*Color de Fondo Sub-menu*/
    background: #292929;
 
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
 
    -webkit-transition: opacity .25s ease .1s;
    -moz-transition: opacity .25s ease .1s;
    -o-transition: opacity .25s ease .1s;
    -ms-transition: opacity .25s ease .1s;
    transition: opacity .25s ease .1s;
	z-index:5;
}
 
.menu li:hover > ul { opacity: 1; z-index:5;}

ul.menu ul li {
    height: 0;
    overflow: hidden;
 
    -webkit-transition: height .25s ease .1s;
    -moz-transition: height .25s ease .1s;
    -o-transition: height .25s ease .1s;
    -ms-transition: height .25s ease .1s;
    transition: height .25s ease .1s;
	z-index:5;
}
 
ul.menu li:hover > ul li {
    height: 36px;
    overflow: visible;
	z-index:5;
}
ul.menu ul li a {
    width: 210px;
    padding: 0 10px;
    margin: 0;
    font-size: 15px;
 
    border: none;
    border-bottom: 1px solid #000;
	z-index:5;
}

ul.menu ul li:last-child a { border: none; }

/* Formato Caja de texto para seccion de Contacto*/
.textbox
  {
  border: 1px solid #DBE1EB;
  font-size: 14px;
  font-family: "Oxygen";
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  background: #FFFFFF;
  background: linear-gradient(left, #FFFFFF, #F7F9FA);
  background: -moz-linear-gradient(left, #FFFFFF, #F7F9FA);
  background: -webkit-linear-gradient(left, #FFFFFF, #F7F9FA);
  background: -o-linear-gradient(left, #FFFFFF, #F7F9FA);
  color: #2E3133;
  }
   
.textbox:focus
  {
  color: #2E3133;
  border-color: #FBFFAD;  }
/* termina formato para caja de texto*/ 


/*Fuente y Formato para el texto del Pie de Pagina*/  
/* Vinculo Cintillo Amarillo Menu */  
A.cinta:link {    /* Color del enlace no visitado Negro */   
    text-decoration:none; color: #000; font-family: "Oxygen"; font-size:18px; font-weight:bold;    
}   
A.cinta:visited {    /* Color del enlace visitado Negro */   
    text-decoration: none; color: #000; font-family: "Oxygen"; font-size:18px; font-weight:bold; 
}   
A.cinta:active {        /* Color que toma el ultimo enlace visitado Negro*/   
    text-decoration: none; color: #000;  font-family: "Oxygen"; font-size:18px; font-weight:bold; 
}   
A.cinta:hover {        /* Color que toma el enlace al pasar el raton sobre el vinculo GRIS*/  
     text-decoration: none; color: #FFF; font-family: "Oxygen"; font-size:18px; font-weight:bold; 
}  
/*Termina formato para vinculos de Cintillo Amarillo Menu*/

/*Hipervinculos*/  
A.vinculo:link {    /* Color del enlace no visitado amarillo */   
    text-decoration:none; color: #FFCC00; font-family: "Oxygen"; font-size:14px; font-weight:bold;    
}   
A.vinculo:visited {    /* Color del enlace visitado amarillo */   
    text-decoration: none; color: #FFCC00; font-family: "Oxygen"; font-size:14px; font-weight:bold; 
}   
A.vinculo:active {        /* Color que toma el ultimo enlace visitado amarillo*/   
    text-decoration: none; color: #FFCC00;  font-family: "Oxygen"; font-size:14px; font-weight:bold; 
}   
A.vinculo:hover {        /* Color que toma el enlace al pasar el raton sobre el vinculo GRIS*/  
     text-decoration: none; color: #F90; font-family: "Oxygen"; font-size:14px; font-weight:bold; 
}  
/*Termina formato para vinculos*/

.pie_txt
{
	font-family: "Oxygen";	
	font-size:14px;
	color:#FFF;
	font-weight:normal;
	text-align:center;
}

.texto_inicio
{
	font-family: "Oxygen";
    font-size: 14px;
}

.texto_inicio_black
{
	font-family: "Oxygen";
    font-size: 14px;
	font-weight:bold;
}

.texto_cont
{
	font-family: "Oxygen";
	font-size:13px;
	color:#FFF;
	text-align:justify;
}

.texto_envio
{
	font-family: "Oxygen";
}