<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
@media screen and (min-height: 640px) {
    html,
    body {
      margin: 0;
    }
}
#xlegenda
{position:relative; display:block; height: 36px; margin-top:4px}

#legenda {
    width: 100%;
    max-width: 100%;
    height: 100%;
	min-height:100%;
    position: fixed;
    top: -100%;
    bottom: 0;
    margin: auto;
    left:0;
	right:0;
	padding:0;
	text-align:center;
    z-index: -100;
	background:inherit;
    filter: alpha(opacity=0);
    opacity: 0;
 transition: opacity .6s;
 -webkit-transition: opacity 0.6s;
 -moz-transition: opacity 0.6s;
}
#blsu {display:block; text-align:right; height: 38px}
#legenda ul {padding:0; margin:0;}
.vedi {
    position: absolute;
    right: 0px;
    top: 0;}
.vedi, .chiudi {
	display:inline-block;
	text-align:center;
    background: #DDD;
    color: #333;
    cursor: pointer;
    font-size: 16PX;
    line-height: 36px;
    width: 80px; height: 36px; 
    -webkit-transition: color .25s ease-in-out;
    -moz-transition: color .25s ease-in-out;
    transition: color .25s ease-in-out;
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    transition: left 0.3s;
	border-radius: 4px;
}
.vedi, .chiudi {z-index: 2;}
.vedi:after {
    content: 'LEGENDA';
    text-decoration: none;
}
.chiudi:after {
    content: 'CHIUDI';
    text-decoration: none;
}
.vedi:hover, .chiudi:hover {
    color: #666;
	background:#CCC;
}
[id='vedi']:checked ~ .chiudi {
    left:auto;
    right: 0px;
    top: -170px;
	position: absolute;
	z-index: 3000;
}
[id='vedi']:checked ~ #legenda {
    top: 0px;
	height: 100%;
    overflow-y: auto;
	z-index:2100;
	background:url(img/nero.png);
	display:block;
    opacity: 1;
}
@media only screen and (max-height:479px) {
#legenda {
    height: 100%;
	min-height:100%;
    top: -100%;}
[id='vedi']:checked ~ #legenda {
    top: 0px;
	height: 100%;}}
@media only screen and (max-width:767px) {	
#xlegenda {margin-bottom:4px;}
</pre></body></html>