<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

a {
    display: block;
    color: inherit;
	outline: medium none;
	text-decoration: none;
	transition: all 0.25s ease 0s;
}
a img {
	border: 0 none;
}
button {
	cursor: pointer;
}


/* Nested Frames START */

.entrance {
    text-align: center;
   
}
.frame {
    width: 100%;
    position: relative;
    z-index: 0;
}
.center.frame {
    flex-grow: 1;
}
.container {
    width: 100%;
    max-width: 1920px;
    min-width: 1200px;
    margin: auto;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 0;
	margin-top:-100px;
}
.panel {
    width: 1200px;
    margin: auto;
}

/* Nested Frames END */


/* Basic Reusable Components START */

/* Simple Layout */
/* no specific html stucture needed */


.flex-box {
    display: box;
    /* OLD - Android 4.4- */
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
   
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.ellipsis-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-line[title]::after,
.ellipsis-line [title]::after {
	content: attr(title);
}

/* Basic Reusable Components END */





/* Override video popup style START */
[popup-keel='video'] {
    background-color: rgba(0,0,0,0.8);
    z-index: 4;
}
[popup-keel='video'] interlayer {
    justify-content: center;
    align-content: center;
    align-items: center;
}
[popup-keel='video'] content {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
}
@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
[popup-keel='video'] content:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 64px;
    height: 64px;
    background-image: url(../img/video-popup_loading.png);
    animation: loading 2s linear infinite;
}
[popup-keel='video'] iframe {
	width: 722px;
	height: 406px;
}
[popup-keel='video'] close {
    position: relative;
}
[popup-keel='video'] close::after {
    content: "";
    position: absolute;
    width: 39px;
    height: 39px;
    left: -20px;
    top: -20px;
    background-image: url(../img/video-popup_close.png);
}
/* Override video popup style END*/</pre></body></html>