/*
Theme Name: CSS inicial 
Author: Andres Ibarra Jensen
Version: 1.1.
Description: CSS b‡sico con arreglos y selectores pre-configurados.
*/
/*** HACKS PARA IE ***/
/* Si tienes la necesidad de aplicar algún hack para IE6 utiliza este selector: */
* html {}
/* Si necesitas aplicarlo a IE7 utiliza este:*/
*:first-child+html {}
/* hack para ie8 -  */
.className { color /*\**/: blue\9 */ }
/*** NEUTRALIZANDO ESTILOS:
elementos que queremos limpiar completamente: ***/
* { margin: 0; padding: 0; border: none; }
/*----------------- 1EM=10px RST -----------------**/
body, html{ font-size: 62.5%; }
body { font-style: normal; font-size: 101%; }
html>body { font-size: 100%; }
*:first-child+html body{ font-size:101%; }
/* ------------------------------------------------*/
body { background-color:#ffffff; text-align:left; }
html { font-family: Tahoma, Arial, Helvetica, sans-serif; }
/*** NEUTRALIZANDO ESTILOS:
elementos con margen vertical: ***/
h1, h2, h3, h4, h5, h6, p, pre,blockquote, ol, dl, address { font-weight: normal; margin: 0 0 1em 0; }
/*** Algunos ajustes basicos: ***/
sup { position: relative; bottom: 0.3em; vertical-align: baseline; }
sub { position: relative; bottom: -0.2em; vertical-align: baseline; }
li, dd, blockquote { margin-left: 0em; }
/*** LINKS:
recuerda utilizar siempre la regla del LoVe-HAte ***/
/*
Si quisieramos eliminar la línea de puntos que aparece al pulsar un enlace, aplicaríamos la siguiente propiedad:
outline: 0;
Sin embargo no se recomienda, por temas de accesibilidad para navegación con teclado (lo cual implica temas legales, un tema peliagudo).
*/
a, a:link, a:visited, a:hover, a:active { text-decoration: underline; }
a:hover { text-decoration:none; }
a img {	border: none;text-decoration: none; }
img { border: none; text-decoration: none; }
/*** FORMULARIOS: ***/
label, button { cursor:pointer; }
input, select, textarea { font-size: 100%; }
input:focus, select:focus, textarea:focus { background-color: #FFF; }
fieldset { border: none; }
/* FLOATS PARA LOS CONTENIDOS DE LA HOME; */
.left { float: left; }
.right { float: right; }
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display:inline-block; }
/* Hide from IE Mac \*/ 
.clearfix { display: block; }
/* End hide from IE Mac */
/* Correccion de png */

ul.right {
	overflow:hidden;
	list-style-position:inside;
}
ul.normal {
	font-size: 1.8em;
	width: 610px;}
	
ul.normal li {
	font-weight:normal; 
	font-family: "NimbusSansBeckerTLigRegular",Helvetica,Arial,sans-serif;
}

/* CSS para la animación y localización de los DIV de cookies */
 
@keyframes desaparecer
{
0%		{bottom: 0px;}
80%		{bottom: 0px;}
100%	{bottom: -50px;}
}
 
@-webkit-keyframes desaparecer /* Safari and Chrome */
{
0%		{bottom: 0px;}
80%		{bottom: 0px;}
100%	{bottom: -50px;}
}
 
@keyframes aparecer
{
0%		{bottom: -38px;}
10%		{bottom: 0px;}
90%		{bottom: 0px;}
100%	{bottom: -38px;}
}
 
@-webkit-keyframes aparecer /* Safari and Chrome */
{
0%		{bottom: -38px;}
10%		{bottom: 0px;}
90%		{bottom: 0px;}
100%	{bottom: -38px;}
}
#cookiesms1:target {
    display: none;
}
.cookiesms{	
	width:100%;
	height:43px;
	margin:0 auto;
	padding-left:1%;
    padding-top:5px;
    font-size: 1em;
	clear:both;
    font-weight: strong;
	color: #333;
	bottom:0px;
	position:fixed;
	left: 0px;
	background-color: #FFF;
	opacity:0.9;
	filter:alpha(opacity=90); /* For IE8 and earlier */
	transition: bottom 1s;
	-webkit-transition:bottom 1s; /* Safari */
	
	-webkit-box-shadow: 1px -1px 3px rgba(50, 50, 50, 0.3);
	-moz-box-shadow:    1px -1px 3px rgba(50, 50, 50, 0.3);
	box-shadow:         1px -1px 3px rgba(50, 50, 50, 0.3);
	/**/
	z-index:999999999;
	font-size:1.4em;
}
.cookiesms button {font-size:1em; display:inline-block;} 
.cookiesms:hover{
	bottom:0px;
}
.cookies2{
	background-color: #FFF;
	display:inline;
	opacity:0.95;
	filter:alpha(opacity=95);
	position:absolute; 
	left:1%; 
	top:-35px;
	font-size:15px;
	height:30px;
	padding-left:25px;
	padding-right:25px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-topleft: 5px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	padding-top:5px;
	
	-webkit-box-shadow: 1px -1px 3px rgba(50, 50, 50, 0.3);
	-moz-box-shadow:    1px -1px 3px rgba(50, 50, 50, 0.3);
	box-shadow:         1px -1px 3px rgba(50, 50, 50, 0.3);
	/**/
}
 
/* Fin del CSS para cookies */


