<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

body {
margin: 0;
padding: 0;
background: #EEE;
}

a {
opacity: 1;
transition: opacity .8s ease-out;
-moz-transition: opacity .8s ease-out;
-webkit-transition: opacity .8s ease-out;
-o-transition: opacity .8s ease-out;
}

a:hover {
opacity: .5;
}

#container {
width: 410px;
min-width: 410px;
height: 594px;
min-height: 594px;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}

#container img {
padding: 5px;
opacity: 1;
transition: opacity .8s ease-out;
-moz-transition: opacity .8s ease-out;
-webkit-transition: opacity .8s ease-out;
-o-transition: opacity .8s ease-out;
}

#container img:hover {
    opacity: .8;
}</pre></body></html>