
/* CSS para la animación y localización de los DIV de cookies */
 
@keyframes aparecer
{
0%		{top: -50px;}
100%	{top: 0px;}
}
 
@-webkit-keyframes aparecer /* Safari and Chrome */
{
0%		{top: -50px;}
100%	{top: 0px;}
}

.cookiesms{	
width:100%;
/*height:auto;*/
margin:0 auto;
padding-left:1%;
padding-right:30%;
margen-right:1%;
padding-top:10px;/* 5px */
padding-bottom:10px;/* lo incluyo yo */
font-family: Arial, Helvetica, sans-serif; /* lo incluyo yo */
font-size: 0.7em;
clear:both;
font-weight: strong;
color: #fff;
animation:2s aparecer 1;
-webkit-animation: 2s aparecer 1;
-moz-animation: 2s aparecer 1;  
top:0px; 
position:fixed;
background-color: #333;
opacity:0.8;
filter:alpha(opacity=80); /* For IE8 and earlier */
transition: bottom 1s;
-webkit-transition:bottom 1s; /* Safari */
/*-webkit-box-shadow: 3px -3px 1px rgba(50, 50, 50, 0.56);
-moz-box-shadow:    3px -3px 1px rgba(50, 50, 50, 0.56);
box-shadow:         3px -3px 1px rgba(50, 50, 50, 0.56);*/
z-index:999999999;
}

.letraavisocookie {font-family: Arial, Helvetica, sans-serif;font-size: 0.9em;color: #FFFFFF;}
.enlaceavisocookie{color:#FFF;text-decoration:underline;font-weight: normal;}
a.enlaceavisocookie:hover{font-weight: bold;}
.myButton{
border-width:0px;
text-align:center;
font-weight:bold;
font-size:0.9em;
font-family:Arial, Helvetica, sans-serif;
background-color:#eaeaea;
color:#000;
}
.myButton:hover{
background-color:#fff;
color:#000;cursor: pointer;}
 
</style>