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

html {
  --mv1: #FF5722;
  --mv2: #0a0909;
  --dp: 8px;
  --fonts: "Commissioner", sans-serif, serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--mv2);
  font-family: var(--fonts);
  font-size: 16px;
  color: #fff;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: var(--mv1);
}
:focus {
  outline: 0;
}
input, textarea, button {
  font-family: var(--fonts);
  display: block;
  background: transparent;
  border: 0;
}
button {
  cursor: pointer;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
}
.fl {
  display: flex;
}
.fl.fl-dco {
  flex-direction: column;
}
.fl.fl-ca {
  align-items: center;
}
.fl.fl-sa {
  align-items: flex-start;
}
.fl.fl-cc {
  align-items: center;
  justify-content: center;
}
.fl.fl-sbj {
  justify-content: space-between;
}
.fl.fl-ej {
  justify-content: flex-end;
}
.fl.fl-wr {
  flex-wrap: wrap;
}
.po.ab {
  position: absolute;
}
.po.fi {
  position: fixed;
}
.po.re {
  position: relative;
}
.__vh0 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.__vh1 {
  top: 0;
  left: 0;
  right: 0;
}
.teX {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}</pre></body></html>