article {
  display: none;
}
article.plainHTML {
  display: block;
  overflow-y: scroll;
  height: 100%;
  background: white;
  font-size: 14px;
  user-select: text;
}
article.plainHTML ul {
  display: block;
  list-style: disc outside none;
  margin: 1em 0;
  padding-left: 1.5em;
}
article.plainHTML ul li {
  display: list-item;
}
article.plainHTML ul li a {
  color: blue;
  display: inherit;
}
article.plainHTML .perex {
  font-size: 120%;
  font-variant: all-small-caps;
}
article.plainHTML h1 {
  font-weight: bold;
  font-size: 200%;
  margin: 0.5em 0 0.25em;
}
article.plainHTML h2 {
  font-weight: bold;
  font-size: 120%;
  margin: 0.5em 0 0.25em;
}
article.plainHTML h3 {
  font-weight: bold;
  margin: 0.5em 0 0.25em;
}
article.plainHTML .menuItem {
  color: inherit;
  padding: 0;
}
article.plainHTML .htmlContent .pf {
  opacity: 1;
}
article.plainHTML .htmlContent .pc,
article.plainHTML .htmlContent .pc * {
  all: unset !important;
  display: inline !important;
  position: static !important;
  float: none !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  white-space: normal !important;
  font-family: courier;
}
article.plainHTML .htmlContent .pc img {
  display: none !important;
}

/* default colors */
:root {
  --highlighting-color: rgb(48,170,204);
  --opposite-color: #fff;
  --header-background: rgb(48,170,204);
  --header-text: #fff;
  --header-icons: #fff;
  --background-color: #eee;
  --text-color: #444;
  --lines-color: rgba(128,128,128,0.25);
  --controlbar-bg-color: rgba(255, 255, 255, 0.8);
  --container-bg-color: #ddd;
  --inputs-background: rgb(255,255,255,0.75);
  --inputs-color: #444;

  --gray-0: #000;
  --gray-1: #111;
  --gray-2: #222;
  --gray-3: #333;
  --gray-4: #444;
  --gray-5: #555;
  --gray-6: #666;
  --gray-7: #777;
  --gray-8: #888;
  --gray-9: #999;
  --gray-a: #aaa;
  --gray-b: #bbb;
  --gray-c: #ccc;
  --gray-d: #ddd;
  --gray-e: #eee;
  --gray-f: #fff;

  --gray-0-25: #0004;
  --gray-0-50: #0008;

  --button-border-radius: 0.375em;
  --area-border-radius: 0.375em;

  --def-line-height: 140%;
}

.trioboThemeDark {
  --background-color: #111;
  --text-color: #ccc;
  --controlbar-bg-color: rgba(0, 0, 0, 0.8);
  --container-bg-color: #222;

  --gray-0: #fff;
  --gray-1: #eee;
  --gray-2: #ddd;
  --gray-3: #ccc;
  --gray-4: #bbb;
  --gray-5: #aaa;
  --gray-6: #999;
  --gray-7: #888;
  --gray-8: #777;
  --gray-9: #666;
  --gray-a: #555;
  --gray-b: #444;
  --gray-c: #333;
  --gray-d: #222;
  --gray-e: #111;
  --gray-f: #000;
}

html, body {
  width: 100%;
  height: 100%;
}
body {
  line-height: 1.2;
  vertical-align: baseline;
  font-family: Roboto, Helvetica, Arial, sans;
  font-weight: normal;
  font-size: 12px;

  background-color: var(--background-color);
  color: var(--text-color);

  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform-style: flat;
  transform-style: flat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-touch-callout: none;
  overflow: hidden;

  -webkit-user-select: none;
  user-select: none;
}


/* font awesome */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fontawesome-webfont.ttf?v=4.7') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 87.5%/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  position: relative;
}

.fa-mini {
  font-size: 0.3em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-left {
  float: left;
  margin-right: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-red {
  color: #d00;
}
.fa-green {
  color: #0d0;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rollDown {
  -webkit-animation: fa-rollDown 2s infinite linear;
  animation: fa-rollDown 2s infinite linear;
}

@-webkit-keyframes fa-rollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
    opacity: 0;
  }
  76% {
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fa-rollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
    opacity: 0;
  }
  76% {
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}


.fa-times:before {
  content: "\f00d";
}
.fa-cog:before {
  content: "\f013";
}
.fa-cogs:before {
  content: "\f085";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-search:before {
  content: "\f002";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-download:before {
  content: "\f019";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-cog:before {
  content: "\f013";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-user:before {
  content: "\f007";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-apple:before {
  content: "\f179";
}
.fa-android:before {
  content: "\f17b";
}
.fa-home:before {
  content: "\f015";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-lock:before {
  content: "\f023";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-phone:before {
  content: "\f095";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-archive:before {
  content: "\f187";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-check:before {
  content: "\f00c";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-list:before {
  content: "\f03a";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-code:before {
  content: "\f121";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-film:before {
  content: "\f008";
}
.fa-music:before {
  content: "\f001";
}
.fa-book:before {
  content: "\f02d";
}
.fa-font:before {
  content: "\f031";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-question:before {
  content: "\f128";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-repeat:before {
  content: "\f01e";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-university:before {
  content: "\f19c";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-disabled:after {
  content: " ";
  position: absolute;
  top: calc(50% - 0.125em);
  left: -20%;
  width: 140%;
  height: 0.25em;
  transform: rotate(-45deg);
  background: #f00;
  border-radius: 0.125em;
}

.ti {
  display: inline-block;
  vertical-align: baseline;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.ti-folder-o {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M 5 6 h 4 l 2 2 h 10 a 1 1 0 0 1 1 1 v 13 a 1 1 0 0 1 -1 1 h -16 a 1 1 0 0 1 -1 -1 v -15 a 1 1 0 0 1 1 -1 z' fill='none' stroke='black' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M 5 6 h 4 l 2 2 h 10 a 1 1 0 0 1 1 1 v 13 a 1 1 0 0 1 -1 1 h -16 a 1 1 0 0 1 -1 -1 v -15 a 1 1 0 0 1 1 -1 z' fill='none' stroke='black' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ti-file-o {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M 10 6 a 1 1 0 0 0 -1 1 v 15 a 1 1 0 0 0 1 1 h 11 a 1 1 0 0 0 1 -1 v -11 l -5 -5 z m 7 0 v 5 h 5' fill='none' stroke='black' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M 10 6 a 1 1 0 0 0 -1 1 v 15 a 1 1 0 0 0 1 1 h 11 a 1 1 0 0 0 1 -1 v -11 l -5 -5 z m 7 0 v 5 h 5' fill='none' stroke='black' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E");
}



/* m redefines */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  /* border: 1px solid var(--highlighting-color); */
  -webkit-text-fill-color: var(--highlighting-color);
  -webkit-box-shadow: 0 0 0 100px var(--inputs-background) inset;
}

.mScreen_overlay {
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.15);
}

.mButton {
  font-family: Roboto, Helvetica, Arial, sans;
  font-size: 100%;
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
  border: 1px solid var(--highlighting-color);
  border-radius: var(--button-border-radius, 0.375em);
  padding: 0.5em 2em;
  margin: 0.25em;
}
.mButton-inProgress {
  pointer-events: none;
  background-color: var(--lines-color);
  color: var(--opposite-color);
}
.mButton-inProgress:before {
  content: "\f1ce";
  float: left;
  font: normal normal normal 87.5%/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  margin: 0.15em 0.25em 0 -0.5em;
}
.item_status.mButton-inProgress {
  margin-left: 0;
  background-color: transparent;
}
.item_status.mButton-inProgress:before {
  margin-left: 0;
}
.mButton:hover,
.mButton:focus {
  background-color: var(--opposite-color);
  color: var(--highlighting-color);
  border-color: var(--highlighting-color);
}
.mButton:disabled {
  cursor: default;
}
.mButton:disabled:hover {
  color: var(--gray-b);
  background-color: var(--highlighting-color);
  border-color: var(--highlighting-color);
}
.mButton-inverted {
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
  border: 1px solid var(--highlighting-color);
}
.mButton-inverted:hover {
  color: var(--opposite-color);
  background-color: var(--highlighting-color);
}

.mFloatingMenu, .mFloatingPanel {
  background-color: var(--gray-f);
  color: var(--gray-0);
  border: 1px solid var(--gray-0);
  border-radius: var(--area-border-radius, 0.375em);
  overflow: hidden;
  padding: 0;
  box-shadow: 0.125em 0.125em 0.5em #0008;
  box-sizing: border-box;
}
.mFloatingMenu_item {
  background-color: transparent;
  color: var(--gray-0);
  border: 0 none;
  border-bottom: 1px solid var(--gray-0);
  margin: 0;
  padding: 0.5em 1em;
  border-radius: 0;
  text-align: left;
}
.mFloatingMenu_item:hover {
  color: var(--gray-0);
  border-color: var(--gray-0);
}
.mFloatingMenu_item:last-child {
  border-bottom: 0 none;
  margin-bottom: 0;
}
.mFloatingMenu_item-checked:before {
  position: absolute;
  right: 0.5em;
  content: "\f00c";
  font: normal normal normal 87.5%/1 FontAwesome;
  font-size: inherit;
}
.mFloatingMenu_item-submenu:before {
  position: absolute;
  right: 0.5em;
  content: "\f0da";
  font: normal normal normal 87.5%/1 FontAwesome;
  font-size: inherit;
}
.mFloatingMenu_item-floatingMenuHeader {
  background-color: var(--gray-0);
  color: var(--gray-f);
}
.mFloatingMenu_item-floatingMenuHeader:hover {
  background-color: var(--gray-0);
  color: var(--gray-f);
}
.mFloatingMenu_item-memberLogin {
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
  margin: -7px -7px 4px -7px;
  width: calc(100% + 14px);
  padding: 0.5em 1em;
  border-radius: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mFloatingMenu_item-memberLogin:hover {
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
}
.mFloatingMenu_item-memberLogin i {
  margin-right: 0.6em;
}
.mFloatingMenu_item-floatingMenuFooter {
  background-color: var(--gray-0);
  color: var(--gray-f);
  padding: 0;
  text-align: center;
}
.mFloatingMenu_item-floatingMenuFooter:hover {
  background-color: var(--gray-0);
  color: var(--gray-f);
}
.mFloatingMenu_item-floatingMenuFooter span {
  display: inline-block;
  width: 16em;
  height: 1.5em;
  background-image: url('../powered_by_Triobo.png');
  background-size: 100% 100%;
  cursor: pointer;
}

.mFloatingPanel-toast {
  text-align: center;
  border: 0px none;
  background-color: var(--gray-0);
  color: var(--gray-f);
  border-radius: var(--area-border-radius, 0.375em);
  line-height: 120%;
}
.mFloatingPanel-serviceOption {
  background-color: var(--highlighting-color);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/xQAAukB5vvocQUAAAAASUVORK5CYII=);
  background-size: 100% 100%;
  color: var(--text-color);
}

.warning {
  color: #d00;
}

.mSlider_bar {
  background-color: var(--gray-6);
}
.mSlider_thumb {
  background-color: var(--gray-6);
  transition: all 0.30s ease;
}
.mSlider:hover .mSlider_thumb {
  background-color: var(--highlighting-color);
}
.mSlider_thumb.mDragged {
  background-color: var(--highlighting-color);
  transition: none;
}


/* Dialogs */
.mDialog {
  color: var(--text-color);
  background-color: var(--background-color);
  border: 1px solid var(--highlighting-color);
  box-shadow: 0.125em 0.125em 0.5em #0008;
  font-size: 93.75%; /* 15px */
  border-radius: var(--area-border-radius, 0.375em);
  overflow: hidden;
  max-width: 95%;
  max-height: calc(100% - 16px) !important;
  line-height: var(--def-line-height);
}
.mDialog_overlay {
  background-color: #fff8;
}
.mDialog_overlay:after {
  position: absolute;
  width: 1em;
  height: 1em;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "\f1ce";
  color: var(--gray-8);
  font: normal normal normal 125%/1 FontAwesome;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.mDialog_header {
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
  padding: 0.75em;
}
.mDialog_headerClosingButton {
  padding: 0.45em 0.75em;
}
.mDialog_headerClosingButton:hover {
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
}
.mDialog_content {
  padding: 1em;
}
.mDialog_content b {
  font-weight: bold;
}
.mDialog_content>p {
  margin: 1em 0 0.5em;
  line-height: var(--def-line-height);
}
.mDialog_content>p.mDialog_note {
  margin-top: 0;
  font-size: 80%;
}
.mDialog a {
  text-decoration: underline;
}
.mDialog a:focus {
  outline: 1px dotted var(--highlighting-color);
}
.mDialog_title {
  font-weight: 300;
  font-size: 200%;
  line-height: var(--def-line-height);
  margin: 24px 0 8px;
}
.mDialog_title:first-child{
  margin-top: 0;
}
.mDialog_subtitle {
  font-weight: 300;
  font-size: 150%;
  line-height: var(--def-line-height);
  margin: 16px 0 8px;
}
.mDialog_buttons {
  border-top: 1px solid var(--lines-color);
  background-color: var(--background-color);
}



.mInput, .mTextarea {
  box-sizing: border-box;
  border: 1px solid var(--lines-color);
  border-radius: var(--area-border-radius, 0.375em);
  color: var(--inputs-color);
  background-color: var(--inputs-background);
  margin: 0 0 1px 0;
  padding: 0.5em;
  outline: 0px none transparent;
  font-family: Roboto, Helvetica, Arial, sans;
  font-size: 100%;
  line-height: var(--def-line-height);
}
.mInputWithMenu {
  border: 1px solid var(--lines-color);
  border-radius: var(--area-border-radius, 0.375em);
  background-color: var(--inputs-background);
}
.mInputWithMenu .mButton {
  color: var(--inputs-color);
  padding: 0.5em;
}
.mInputWithNumberControl {
}
.mInputWithNumberControl_input {
  padding: 6px 4px;
  margin: 0;
}
.mInputWithNumberControl_button {
  background-color: transparent;
  color: var(--gray-4);
  padding: 1px;
  border: 0 none;
  margin: 0;
}
.mInputWithNumberControl_button:hover {
  background-color: transparent;
  color: var(--highlighting-color);
}
.mInputWithNumberControl-focused .mInputWithNumberControl_input {
  border-color: var(--highlighting-color);
}
.mInput:focus, .mTextarea:focus, .mInputWithMenu-focused {
  border-color: var(--highlighting-color);
}
.mInput:disabled, .mTextarea:disabled {
  background-color: transparent;
  color: var(--gray-8);
}
.mSelect, .mDropdown {
  border-radius: 0;
  border: 1px solid var(--lines-color);
  border-radius: var(--button-border-radius, 0.375em);
  color: var(--gray-4);
  background-color: var(--gray-f);
  margin: 0 0 1px 0;
  padding: 0.125em 0.25em;
  font-size: 100%;
  background-position-y: -0.375em;
  cursor: pointer;
}
.mDropdown-disabled {
  background-color: var(--gray-d);
  color: var(--gray-8);
}

.mElementsWithLabels {
  padding: 0;
}
.mElementsWithLabels_row {
  margin: 0.125em 0;
}
.mElementsWithLabels_row.mMarginOnTop {
  margin-top: 1em;
}
.mElementsWithLabels_label {
  padding-top: calc(0.5em + 1px);
  display: inline-block;
  font-size: 100%;
}
.mElementsWithLabels_element-withLabel {
  display: inline-block;
}
.mElementsWithLabels_element * {
  vertical-align: top;
}

.mRadioRow {
  box-sizing: border-box;
}

.mRadioRow_item {
  padding: 0.4em 0.5em 0.25em;
  color: var(--inputs-color);
  background-color: var(--inputs-background);
  border-top: 1px solid var(--lines-color);
  border-bottom: 1px solid var(--lines-color);
  border-right: 1px solid var(--lines-color);
}
.mRadioRow_item:first-child {
  border-left: 1px solid var(--lines-color);
}
.mRadioRow_item-on {
  color: var(--gray-f);
  background-color: var(--highlighting-color);
}

.mRadioButtons {
  background-color: transparent;
  text-align: center;
  white-space: nowrap;
}
.mRadioButtons_item {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0.4em 0.4em 0.4em 1.5em;
  color: var(--inputs-color);
  font-size: 100%; /* 14px; */
  cursor: pointer;
  width: auto;
}
.tReader_searchbar .mRadioButtons_item {
  color: var(--inputs-color);
}
.searchbox .mRadioButtons_item {
  padding-left: 2.2em;
}
.mRadioButtons_item p {
  display: inline-block;
  width: auto;
}
.mRadioButtons_checkbox {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5em;
  margin: auto;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid var(--highlighting-color);
  border-radius: var(--area-border-radius, 0.375em);
}
.mRadioButtons_checkbox:after {
  opacity: 0;
  -webkit-transition: all 0.30s ease;
  transition: all 0.30s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: var(--highlighting-color);
  width: 0.75em;
  height: 0.75em;
  border-radius: calc(var(--area-border-radius, 0.375em) / 2);
}
.mRadioButtons_item-on .mRadioButtons_checkbox:after {
  opacity: 1;
}
.mCheckbox {
  padding: 0.25em 0;
}
.mCheckbox_checkbox {
  display: inline-block;
  position: relative;
  vertical-align: top;
  left: auto;
  margin-top: -0.1em;
  margin-right: 0.5em;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid var(--lines-color);
  background-color: var(--inputs-background);
  border-radius: var(--area-border-radius, 0.375em);
}
.mCheckbox_checkbox:after {
  background-color: var(--highlighting-color);
  width: 0.75em;
  height: 0.75em;
  border-radius: calc(var(--area-border-radius, 0.375em) / 2);
}
.mCheckbox_text {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 2em);
}
.mCheckbox-disabled {
  cursor: default;
}
.mCheckbox-disabled .mCheckbox_checkbox {
  border: 1px solid var(--lines-color);
}
.mCheckbox-disabled .mCheckbox_checkbox:after {
  background-color: var(--lines-color);
}
.mCheckbox-disabled p {
  color: var(--lines-color);
}

.mCheckbox.tCookieManager_serviceTitle {
  text-align: left;
  padding: 0;
}
.mCheckbox.tCookieManager_serviceOptionTitle {
  text-align: left;
  padding: 0;
}

#desktop.desktop-simulator {
  height: 100%;
}
.mConsole {
  border-top: 1px solid var(--gray-a);
  font-size: 0.675em;
}
.mConsole_row-error {
  font-weight: bold;
  color: #d00;
}
.mConsole_row-important {
  color: #048;
  font-weight: bold;
}
.mConsole_row-render {
  color: #a4a;
}
.mConsole_row-meta {
  color: #f80;
}
.mConsole_row-event {
  color: #f88;
}
.mConsole_row-download {
  color: #0ac;
}
.mConsole_row-local {
  color: #484;
}
.mConsole_row-faded {
  opacity: 0.3;
}
.mConsole_row-history {
  color: #aa0;
}
.mConsole_row-newScreen {
  color: #08b;
  font-weight: bold;
  border-bottom: 1px solid currentcolor;
}

.mConsole_DQ .finished {
  color: #8a8;
}
.mConsole_DQ .downloading {
  color: #08f;
}
.mConsole_DQ .waiting {
  color: var(--gray-6);
}
.mConsole_DQ .error {
  color: #d00;
}
.mConsole_DQ .cancelled {
  color: #a88
}

/* pdf2html def styles */
.pf{opacity:0;transition:opacity 0.5s;position:relative;background-color:white;overflow:hidden;margin:0;border:0;}
.pc{position:absolute;border:0;padding:0;margin:0;top:0;left:0;width:100%;height:100%;overflow:hidden;display:block;transform-origin:0 0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0}
.bf{position:absolute;border:0;margin:0;top:0;bottom:0;width:100%;height:100%;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;user-select:none}
.bi{position:absolute;border:0;margin:0;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;user-select:none}
.c{position:absolute;border:0;padding:0;margin:0;overflow:show;display:block}
.t{pointer-events: all;position:absolute;white-space:pre;word-wrap:normal;font-size:1px;transform-origin:0 100%;-ms-transform-origin:0 100%;-webkit-transform-origin:0 100%;unicode-bidi:bidi-override;-moz-font-feature-settings:"liga" 0}
.t:after{content:""}
.t:before{content:"";display:inline-block}
.t span{position:relative;unicode-bidi:bidi-override}
._{display:inline-block;color:transparent;z-index:-1}


/*#sidebar{position:absolute;top:0;left:0;bottom:0;width:250px;padding:0;margin:0;overflow:auto}
#page-container{position:absolute;top:0;left:0;margin:0;padding:0;border:0}
@media screen{#sidebar.opened+#page-container{left:250px}#page-container{bottom:0;right:0;overflow:auto}.loading-indicator{display:none}.loading-indicator.active{display:block;position:absolute;width:64px;height:64px;top:50%;left:50%;margin-top:-32px;margin-left:-32px}.loading-indicator img{position:absolute;top:0;left:0;bottom:0;right:0}}
@media print{@page{margin:0}html{margin:0}body{margin:0;-webkit-print-color-adjust:exact}#sidebar{display:none}#page-container{width:auto;height:auto;overflow:visible;background-color:transparent}.d{display:none}}
.pf{opacity:0;transition:opacity 0.5s;position:relative;background-color:white;overflow:hidden;margin:0;border:0;}
.pc{position:absolute;border:0;padding:0;margin:0;top:0;left:0;width:100%;height:100%;overflow:hidden;display:block;transform-origin:0 0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0}
.pc.opened{display:block}
.bf{position:absolute;border:0;margin:0;top:0;bottom:0;width:100%;height:100%;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;user-select:none}
.bi{position:absolute;border:0;margin:0;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;user-select:none}
@media print{.pf{margin:0;box-shadow:none;page-break-after:always;page-break-inside:avoid}@-moz-document url-prefix(){.pf{overflow:visible;border:1px solid #fff}.pc{overflow:visible}}}
.c{position:absolute;border:0;padding:0;margin:0;overflow:hidden;display:block}
.t{position:absolute;white-space:pre;word-wrap:normal;font-size:1px;transform-origin:0 100%;-ms-transform-origin:0 100%;-webkit-transform-origin:0 100%;unicode-bidi:bidi-override;-moz-font-feature-settings:'liga' 0}
.t:after{content:''}
.t:before{content:'';display:inline-block}
.t span{position:relative;unicode-bidi:bidi-override}
._{display:inline-block;color:transparent;z-index:-1}
::selection{background:rgba(127,255,255,0.4)}
::-moz-selection{background:rgba(127,255,255,0.4)}
.pi{display:none}
.d{position:absolute;transform-origin:0 100%;-ms-transform-origin:0 100%;-webkit-transform-origin:0 100%}
.it{border:0;background-color:rgba(255,255,255,0.0)}
.ir:hover{cursor:pointer}*/
