
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    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; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  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 { /* images that cover only a part of the page */
  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() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_0e32f9976670cc176007c40f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9db01428e8f6aefd01beadd6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8b90674f74d7287adb4180b3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1be66f1fae709edc4338f5eb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_33b581c497fc4c4e0191616e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8a022e24977fd80b5f7748f8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_96e52f839d458650c3ca3fd0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fa8344410bacc17f75af874e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0b353df03684c339ea24a7b6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6fb379489a5b0c3b8904676e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_96e52f839d458650c3ca3fd0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fa8344410bacc17f75af874e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5468c1a45f99d0bfd4c30e05.woff')format("woff");}.ffd{font-family:ffd;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6fb379489a5b0c3b8904676e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_96e52f839d458650c3ca3fd0.woff')format("woff");}.fff{font-family:fff;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fa8344410bacc17f75af874e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5468c1a45f99d0bfd4c30e05.woff')format("woff");}.ff11{font-family:ff11;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6fb379489a5b0c3b8904676e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_96e52f839d458650c3ca3fd0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_fa8344410bacc17f75af874e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5468c1a45f99d0bfd4c30e05.woff')format("woff");}.ff15{font-family:ff15;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6fb379489a5b0c3b8904676e.woff')format("woff");}.ff16{font-family:ff16;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_96e52f839d458650c3ca3fd0.woff')format("woff");}.ff17{font-family:ff17;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_fa8344410bacc17f75af874e.woff')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_5468c1a45f99d0bfd4c30e05.woff')format("woff");}.ff19{font-family:ff19;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_6fb379489a5b0c3b8904676e.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_96e52f839d458650c3ca3fd0.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_fa8344410bacc17f75af874e.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_5468c1a45f99d0bfd4c30e05.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_6fb379489a5b0c3b8904676e.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_96e52f839d458650c3ca3fd0.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_fa8344410bacc17f75af874e.woff')format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_5468c1a45f99d0bfd4c30e05.woff')format("woff");}.ff21{font-family:ff21;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_6fb379489a5b0c3b8904676e.woff')format("woff");}.ff22{font-family:ff22;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_96e52f839d458650c3ca3fd0.woff')format("woff");}.ff23{font-family:ff23;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_fa8344410bacc17f75af874e.woff')format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_5468c1a45f99d0bfd4c30e05.woff')format("woff");}.ff25{font-family:ff25;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_6fb379489a5b0c3b8904676e.woff')format("woff");}.ff26{font-family:ff26;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_96e52f839d458650c3ca3fd0.woff')format("woff");}.ff27{font-family:ff27;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_fa8344410bacc17f75af874e.woff')format("woff");}.ff28{font-family:ff28;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_5468c1a45f99d0bfd4c30e05.woff')format("woff");}.ff29{font-family:ff29;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_d9c5d99c91d30d6549da6b44.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.669434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_0b8c1b55fa958a63d01402c3.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_5fe49f1aef19967f44f81f76.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-14.585400px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000118px;}
.ls0{letter-spacing:0.006000px;}
.ls9{letter-spacing:0.230047px;}
.lsb{letter-spacing:0.253052px;}
.ls8{letter-spacing:0.287559px;}
.lsc{letter-spacing:0.345071px;}
.lsa{letter-spacing:0.402583px;}
.ls4{letter-spacing:0.460094px;}
.ls7{letter-spacing:0.517606px;}
.ls5{letter-spacing:0.575118px;}
.ls6{letter-spacing:0.690142px;}
.ls1{letter-spacing:50.046000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000000px;}
.ws2{word-spacing:-29.898000px;}
.ws0{word-spacing:-21.696000px;}
.ws11{word-spacing:-16.272000px;}
.ws3{word-spacing:-14.916000px;}
.ws6{word-spacing:-13.745320px;}
.ws5{word-spacing:-13.687808px;}
.ws7{word-spacing:-13.630297px;}
.wsa{word-spacing:-13.572785px;}
.ws9{word-spacing:-13.515273px;}
.wsb{word-spacing:-13.457761px;}
.ws8{word-spacing:-13.400249px;}
.wsc{word-spacing:-13.170202px;}
.ws10{word-spacing:-7.098841px;}
.wse{word-spacing:-0.517606px;}
.wsf{word-spacing:-0.287559px;}
.wsd{word-spacing:-0.230047px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-7.048200px;}
._1{margin-left:-5.745600px;}
._5{margin-left:-4.350600px;}
._3{margin-left:-3.247200px;}
._0{margin-left:-2.224800px;}
._2{margin-left:-1.166400px;}
._4{width:1.411200px;}
._6{width:2.580600px;}
._8{width:7.208400px;}
._7{width:8.329800px;}
._c{width:32.076000px;}
._a{width:51.942000px;}
._9{width:53.280000px;}
._d{width:201.102000px;}
.fc5{color:transparent;}
.fc2{color:rgb(210,32,39);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(42,62,146);}
.fs9{font-size:25.535400px;}
.fs7{font-size:36.000000px;}
.fsa{font-size:43.800000px;}
.fsc{font-size:57.511800px;}
.fsb{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:75.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.fs0{font-size:216.000000px;}
.y58{bottom:-258.284400px;}
.y36{bottom:-258.283650px;}
.y47{bottom:-258.283500px;}
.y25{bottom:-258.282900px;}
.y6b{bottom:-258.282750px;}
.y49{bottom:-250.784400px;}
.y27{bottom:-250.783650px;}
.y38{bottom:-250.783500px;}
.y16{bottom:-250.782900px;}
.y5c{bottom:-250.782750px;}
.y57{bottom:-235.784400px;}
.y35{bottom:-235.783650px;}
.y46{bottom:-235.783500px;}
.y24{bottom:-235.782900px;}
.y6a{bottom:-235.782750px;}
.y56{bottom:-216.284400px;}
.y34{bottom:-216.283650px;}
.y45{bottom:-216.283500px;}
.y23{bottom:-216.282900px;}
.y69{bottom:-216.282750px;}
.y55{bottom:-195.284400px;}
.y33{bottom:-195.283650px;}
.y44{bottom:-195.283500px;}
.y22{bottom:-195.282900px;}
.y68{bottom:-195.282750px;}
.y54{bottom:-175.784400px;}
.y32{bottom:-175.783650px;}
.y43{bottom:-175.783500px;}
.y21{bottom:-175.782900px;}
.y67{bottom:-175.782750px;}
.y53{bottom:-156.284400px;}
.y31{bottom:-156.283650px;}
.y42{bottom:-156.283500px;}
.y20{bottom:-156.282900px;}
.y66{bottom:-156.282750px;}
.y52{bottom:-135.284400px;}
.y30{bottom:-135.283650px;}
.y41{bottom:-135.283500px;}
.y1f{bottom:-135.282900px;}
.y65{bottom:-135.282750px;}
.y51{bottom:-115.784400px;}
.y2f{bottom:-115.783650px;}
.y40{bottom:-115.783500px;}
.y1e{bottom:-115.782900px;}
.y64{bottom:-115.782750px;}
.yd0{bottom:-96.624849px;}
.y50{bottom:-94.784400px;}
.y2e{bottom:-94.783650px;}
.y3f{bottom:-94.783500px;}
.y1d{bottom:-94.782900px;}
.y63{bottom:-94.782750px;}
.ycf{bottom:-78.738679px;}
.y4f{bottom:-75.284400px;}
.y2d{bottom:-75.283650px;}
.y3e{bottom:-75.283500px;}
.y1c{bottom:-75.282900px;}
.y62{bottom:-75.282750px;}
.yce{bottom:-60.852509px;}
.y4e{bottom:-55.784400px;}
.y2c{bottom:-55.783650px;}
.y3d{bottom:-55.783500px;}
.y1b{bottom:-55.782900px;}
.y61{bottom:-55.782750px;}
.ycd{bottom:-42.966340px;}
.y4d{bottom:-34.784400px;}
.y2b{bottom:-34.783650px;}
.y3c{bottom:-34.783500px;}
.y1a{bottom:-34.782900px;}
.y60{bottom:-34.782750px;}
.ycc{bottom:-25.080170px;}
.y4c{bottom:-15.284400px;}
.y2a{bottom:-15.283650px;}
.y3b{bottom:-15.283500px;}
.y19{bottom:-15.282900px;}
.y5f{bottom:-15.282750px;}
.ycb{bottom:-7.194000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:5.715600px;}
.y29{bottom:5.716350px;}
.y3a{bottom:5.716500px;}
.y18{bottom:5.717100px;}
.y5e{bottom:5.717250px;}
.yd1{bottom:19.591500px;}
.y101{bottom:20.391750px;}
.y4a{bottom:25.215600px;}
.y28{bottom:25.216350px;}
.y39{bottom:25.216500px;}
.y17{bottom:25.217100px;}
.y5d{bottom:25.217250px;}
.y126{bottom:60.509100px;}
.y86{bottom:69.197250px;}
.y102{bottom:69.427200px;}
.y125{bottom:80.309100px;}
.y85{bottom:86.343600px;}
.yab{bottom:88.042350px;}
.y124{bottom:98.309100px;}
.y84{bottom:99.843600px;}
.yaa{bottom:107.842350px;}
.ya9{bottom:127.642350px;}
.yff{bottom:135.063750px;}
.y123{bottom:142.694250px;}
.ya8{bottom:147.442350px;}
.yfe{bottom:154.863900px;}
.y122{bottom:164.294250px;}
.y6d{bottom:165.189000px;}
.ya7{bottom:167.242350px;}
.y82{bottom:168.900600px;}
.yfd{bottom:174.663750px;}
.y121{bottom:184.094400px;}
.y6c{bottom:184.323000px;}
.ya6{bottom:187.042350px;}
.y81{bottom:188.700600px;}
.yfc{bottom:194.463750px;}
.y5b{bottom:204.519000px;}
.ya5{bottom:206.842350px;}
.y80{bottom:208.500600px;}
.y130{bottom:218.677050px;}
.ya4{bottom:226.642350px;}
.yfb{bottom:227.019600px;}
.y7f{bottom:228.300600px;}
.y12f{bottom:238.477050px;}
.y135{bottom:239.766750px;}
.y5a{bottom:243.850500px;}
.y7e{bottom:248.100600px;}
.yfa{bottom:261.375600px;}
.y12e{bottom:262.528950px;}
.y59{bottom:262.984500px;}
.ya3{bottom:267.702150px;}
.y7d{bottom:267.900600px;}
.yf9{bottom:281.175600px;}
.y12d{bottom:282.328950px;}
.y48{bottom:283.182000px;}
.y134{bottom:283.349400px;}
.ya2{bottom:287.502150px;}
.y7c{bottom:287.700600px;}
.yf8{bottom:300.975600px;}
.y75{bottom:302.837700px;}
.y37{bottom:303.378000px;}
.y12c{bottom:306.381000px;}
.y7b{bottom:307.500600px;}
.yc9{bottom:308.978261px;}
.y26{bottom:322.512000px;}
.y74{bottom:324.437550px;}
.y88{bottom:324.695100px;}
.y12b{bottom:326.180850px;}
.yc8{bottom:326.864430px;}
.y7a{bottom:327.300600px;}
.ya1{bottom:328.561950px;}
.yf7{bottom:333.531450px;}
.y87{bottom:344.195100px;}
.y73{bottom:344.237550px;}
.yc7{bottom:344.750600px;}
.y12a{bottom:345.981000px;}
.y79{bottom:347.100600px;}
.y133{bottom:347.128950px;}
.yf6{bottom:353.331450px;}
.y15{bottom:361.842000px;}
.ya0{bottom:362.265900px;}
.yc6{bottom:362.636770px;}
.y78{bottom:366.900600px;}
.y129{bottom:370.032900px;}
.y132{bottom:371.577750px;}
.yf5{bottom:373.131450px;}
.y72{bottom:374.341500px;}
.yc5{bottom:380.522940px;}
.y9f{bottom:383.865900px;}
.y83{bottom:387.748500px;}
.yf4{bottom:392.931450px;}
.y128{bottom:394.084800px;}
.y71{bottom:395.941500px;}
.yc4{bottom:398.409109px;}
.y9e{bottom:403.666050px;}
.yf3{bottom:412.731600px;}
.y127{bottom:413.884800px;}
.y131{bottom:415.160400px;}
.y70{bottom:415.741500px;}
.yc3{bottom:416.295279px;}
.y9d{bottom:423.465900px;}
.yc2{bottom:434.181449px;}
.y6f{bottom:435.541500px;}
.yf2{bottom:445.287450px;}
.y120{bottom:446.256450px;}
.yc1{bottom:452.067619px;}
.y6e{bottom:455.341500px;}
.y9c{bottom:464.525850px;}
.yf1{bottom:465.087450px;}
.yc0{bottom:469.953789px;}
.y11f{bottom:479.960400px;}
.yac{bottom:484.501500px;}
.yf0{bottom:484.887450px;}
.ybf{bottom:487.839959px;}
.yca{bottom:491.046450px;}
.y11e{bottom:499.760400px;}
.y14{bottom:502.129200px;}
.y9b{bottom:504.125850px;}
.yef{bottom:504.687450px;}
.ybe{bottom:505.726128px;}
.y11d{bottom:519.560400px;}
.y13{bottom:521.929200px;}
.ybd{bottom:523.612298px;}
.yee{bottom:524.487450px;}
.y11c{bottom:539.360400px;}
.ybc{bottom:541.498468px;}
.y12{bottom:541.729200px;}
.yed{bottom:544.287450px;}
.ybb{bottom:559.384638px;}
.y11{bottom:561.529200px;}
.y77{bottom:565.990200px;}
.y11b{bottom:571.916400px;}
.yec{bottom:576.843300px;}
.yba{bottom:577.270807px;}
.y11a{bottom:591.716400px;}
.yb9{bottom:595.156977px;}
.y10{bottom:602.589000px;}
.y119{bottom:611.516400px;}
.yb8{bottom:613.043147px;}
.yeb{bottom:619.703100px;}
.yb7{bottom:630.929317px;}
.y118{bottom:631.316400px;}
.yea{bottom:639.503100px;}
.yb6{bottom:648.499172px;}
.yf{bottom:649.048950px;}
.y117{bottom:651.116400px;}
.ye9{bottom:659.303100px;}
.yb5{bottom:666.385342px;}
.ye{bottom:668.848950px;}
.y116{bottom:670.916400px;}
.ye8{bottom:679.103100px;}
.yb4{bottom:684.271511px;}
.yd{bottom:688.648800px;}
.ye7{bottom:698.903100px;}
.yb3{bottom:702.157681px;}
.y115{bottom:703.472250px;}
.yc{bottom:708.448950px;}
.y76{bottom:713.214600px;}
.ye6{bottom:718.703100px;}
.yb2{bottom:720.043851px;}
.y114{bottom:723.272250px;}
.yb{bottom:728.248950px;}
.yb1{bottom:737.930021px;}
.ye5{bottom:738.503100px;}
.y113{bottom:743.072250px;}
.yb0{bottom:755.816191px;}
.ye4{bottom:762.555150px;}
.ya{bottom:767.848950px;}
.yaf{bottom:773.702360px;}
.y112{bottom:777.428100px;}
.ye3{bottom:782.355150px;}
.y9{bottom:787.648800px;}
.yae{bottom:791.588530px;}
.ye2{bottom:802.155150px;}
.y8{bottom:807.448950px;}
.yad{bottom:809.474700px;}
.y111{bottom:811.132200px;}
.y9a{bottom:815.540100px;}
.ye1{bottom:821.955150px;}
.y110{bottom:832.732050px;}
.y99{bottom:837.139950px;}
.ye0{bottom:841.755150px;}
.y7{bottom:848.508750px;}
.y10f{bottom:852.532050px;}
.y98{bottom:856.939950px;}
.ydf{bottom:861.555150px;}
.y10e{bottom:872.332050px;}
.y97{bottom:876.739950px;}
.y10d{bottom:892.132200px;}
.yde{bottom:894.111000px;}
.y96{bottom:909.295950px;}
.y6{bottom:920.168550px;}
.y10c{bottom:924.688050px;}
.y95{bottom:929.095800px;}
.ydd{bottom:939.267000px;}
.y100{bottom:943.539150px;}
.y94{bottom:948.895800px;}
.y5{bottom:954.524550px;}
.ydc{bottom:959.066850px;}
.y10b{bottom:967.547850px;}
.y93{bottom:968.695800px;}
.ydb{bottom:978.866850px;}
.y10a{bottom:989.147850px;}
.y92{bottom:996.999900px;}
.y4{bottom:997.724550px;}
.y109{bottom:1008.947850px;}
.yda{bottom:1011.422850px;}
.y91{bottom:1016.799900px;}
.y108{bottom:1028.747850px;}
.yd9{bottom:1031.222850px;}
.y90{bottom:1036.599750px;}
.y107{bottom:1048.547850px;}
.yd8{bottom:1051.022850px;}
.y8f{bottom:1069.155750px;}
.y106{bottom:1081.103700px;}
.yd7{bottom:1083.578850px;}
.y8e{bottom:1088.955750px;}
.yd6{bottom:1103.378700px;}
.y3{bottom:1108.059150px;}
.y8d{bottom:1108.755750px;}
.y105{bottom:1115.459700px;}
.yd5{bottom:1123.178700px;}
.y8c{bottom:1128.555750px;}
.y104{bottom:1137.059700px;}
.y2{bottom:1140.459150px;}
.yd4{bottom:1142.978700px;}
.y8b{bottom:1148.355750px;}
.y103{bottom:1156.859550px;}
.yd3{bottom:1162.778850px;}
.y8a{bottom:1176.659700px;}
.y1{bottom:1194.118950px;}
.yd2{bottom:1195.334700px;}
.y89{bottom:1196.459700px;}
.hc{height:17.433000px;}
.h9{height:17.434500px;}
.hf{height:18.870661px;}
.hd{height:25.839844px;}
.h10{height:32.368200px;}
.h13{height:39.848264px;}
.h11{height:43.066406px;}
.hb{height:45.117188px;}
.h7{height:47.373047px;}
.ha{height:47.988281px;}
.h14{height:49.218750px;}
.h5{height:50.062500px;}
.he{height:53.833008px;}
.h8{height:58.406250px;}
.h6{height:65.625000px;}
.h15{height:75.093750px;}
.h3{height:77.519531px;}
.h4{height:100.125000px;}
.h2{height:150.187500px;}
.h12{height:316.995000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:32.892000px;}
.w2{width:40.393500px;}
.w4{width:584.931000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:4.499700px;}
.xe{left:8.330850px;}
.x6{left:9.449850px;}
.x10{left:20.133150px;}
.x7{left:36.449850px;}
.xd{left:44.361000px;}
.x2{left:54.997500px;}
.x1{left:74.409450px;}
.xc{left:90.779550px;}
.x17{left:115.228350px;}
.x16{left:133.228350px;}
.x15{left:141.139350px;}
.x8{left:199.417350px;}
.x14{left:251.943750px;}
.x9{left:313.051200px;}
.x13{left:356.720400px;}
.x3{left:571.890000px;}
.x4{left:579.390000px;}
.xb{left:585.921300px;}
.xf{left:611.835150px;}
.xa{left:617.385750px;}
.x11{left:769.425300px;}
.x12{left:862.618050px;}
@media print{
.v1{vertical-align:-12.964800pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000105pt;}
.ls0{letter-spacing:0.005333pt;}
.ls9{letter-spacing:0.204486pt;}
.lsb{letter-spacing:0.224935pt;}
.ls8{letter-spacing:0.255608pt;}
.lsc{letter-spacing:0.306730pt;}
.lsa{letter-spacing:0.357851pt;}
.ls4{letter-spacing:0.408973pt;}
.ls7{letter-spacing:0.460094pt;}
.ls5{letter-spacing:0.511216pt;}
.ls6{letter-spacing:0.613459pt;}
.ls1{letter-spacing:44.485333pt;}
.ws1{word-spacing:-64.000000pt;}
.ws2{word-spacing:-26.576000pt;}
.ws0{word-spacing:-19.285333pt;}
.ws11{word-spacing:-14.464000pt;}
.ws3{word-spacing:-13.258667pt;}
.ws6{word-spacing:-12.218062pt;}
.ws5{word-spacing:-12.166941pt;}
.ws7{word-spacing:-12.115819pt;}
.wsa{word-spacing:-12.064698pt;}
.ws9{word-spacing:-12.013576pt;}
.wsb{word-spacing:-11.962454pt;}
.ws8{word-spacing:-11.911333pt;}
.wsc{word-spacing:-11.706846pt;}
.ws10{word-spacing:-6.310081pt;}
.wse{word-spacing:-0.460094pt;}
.wsf{word-spacing:-0.255608pt;}
.wsd{word-spacing:-0.204486pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-6.265067pt;}
._1{margin-left:-5.107200pt;}
._5{margin-left:-3.867200pt;}
._3{margin-left:-2.886400pt;}
._0{margin-left:-1.977600pt;}
._2{margin-left:-1.036800pt;}
._4{width:1.254400pt;}
._6{width:2.293867pt;}
._8{width:6.407467pt;}
._7{width:7.404267pt;}
._c{width:28.512000pt;}
._a{width:46.170667pt;}
._9{width:47.360000pt;}
._d{width:178.757333pt;}
.fs9{font-size:22.698133pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:38.933333pt;}
.fsc{font-size:51.121600pt;}
.fsb{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:66.666667pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.fs0{font-size:192.000000pt;}
.y58{bottom:-229.586133pt;}
.y36{bottom:-229.585467pt;}
.y47{bottom:-229.585333pt;}
.y25{bottom:-229.584800pt;}
.y6b{bottom:-229.584667pt;}
.y49{bottom:-222.919467pt;}
.y27{bottom:-222.918800pt;}
.y38{bottom:-222.918667pt;}
.y16{bottom:-222.918133pt;}
.y5c{bottom:-222.918000pt;}
.y57{bottom:-209.586133pt;}
.y35{bottom:-209.585467pt;}
.y46{bottom:-209.585333pt;}
.y24{bottom:-209.584800pt;}
.y6a{bottom:-209.584667pt;}
.y56{bottom:-192.252800pt;}
.y34{bottom:-192.252133pt;}
.y45{bottom:-192.252000pt;}
.y23{bottom:-192.251467pt;}
.y69{bottom:-192.251333pt;}
.y55{bottom:-173.586133pt;}
.y33{bottom:-173.585467pt;}
.y44{bottom:-173.585333pt;}
.y22{bottom:-173.584800pt;}
.y68{bottom:-173.584667pt;}
.y54{bottom:-156.252800pt;}
.y32{bottom:-156.252133pt;}
.y43{bottom:-156.252000pt;}
.y21{bottom:-156.251467pt;}
.y67{bottom:-156.251333pt;}
.y53{bottom:-138.919467pt;}
.y31{bottom:-138.918800pt;}
.y42{bottom:-138.918667pt;}
.y20{bottom:-138.918133pt;}
.y66{bottom:-138.918000pt;}
.y52{bottom:-120.252800pt;}
.y30{bottom:-120.252133pt;}
.y41{bottom:-120.252000pt;}
.y1f{bottom:-120.251467pt;}
.y65{bottom:-120.251333pt;}
.y51{bottom:-102.919467pt;}
.y2f{bottom:-102.918800pt;}
.y40{bottom:-102.918667pt;}
.y1e{bottom:-102.918133pt;}
.y64{bottom:-102.918000pt;}
.yd0{bottom:-85.888755pt;}
.y50{bottom:-84.252800pt;}
.y2e{bottom:-84.252133pt;}
.y3f{bottom:-84.252000pt;}
.y1d{bottom:-84.251467pt;}
.y63{bottom:-84.251333pt;}
.ycf{bottom:-69.989937pt;}
.y4f{bottom:-66.919467pt;}
.y2d{bottom:-66.918800pt;}
.y3e{bottom:-66.918667pt;}
.y1c{bottom:-66.918133pt;}
.y62{bottom:-66.918000pt;}
.yce{bottom:-54.091119pt;}
.y4e{bottom:-49.586133pt;}
.y2c{bottom:-49.585467pt;}
.y3d{bottom:-49.585333pt;}
.y1b{bottom:-49.584800pt;}
.y61{bottom:-49.584667pt;}
.ycd{bottom:-38.192302pt;}
.y4d{bottom:-30.919467pt;}
.y2b{bottom:-30.918800pt;}
.y3c{bottom:-30.918667pt;}
.y1a{bottom:-30.918133pt;}
.y60{bottom:-30.918000pt;}
.ycc{bottom:-22.293484pt;}
.y4c{bottom:-13.586133pt;}
.y2a{bottom:-13.585467pt;}
.y3b{bottom:-13.585333pt;}
.y19{bottom:-13.584800pt;}
.y5f{bottom:-13.584667pt;}
.ycb{bottom:-6.394667pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:5.080533pt;}
.y29{bottom:5.081200pt;}
.y3a{bottom:5.081333pt;}
.y18{bottom:5.081867pt;}
.y5e{bottom:5.082000pt;}
.yd1{bottom:17.414667pt;}
.y101{bottom:18.126000pt;}
.y4a{bottom:22.413867pt;}
.y28{bottom:22.414533pt;}
.y39{bottom:22.414667pt;}
.y17{bottom:22.415200pt;}
.y5d{bottom:22.415333pt;}
.y126{bottom:53.785867pt;}
.y86{bottom:61.508667pt;}
.y102{bottom:61.713067pt;}
.y125{bottom:71.385867pt;}
.y85{bottom:76.749867pt;}
.yab{bottom:78.259867pt;}
.y124{bottom:87.385867pt;}
.y84{bottom:88.749867pt;}
.yaa{bottom:95.859867pt;}
.ya9{bottom:113.459867pt;}
.yff{bottom:120.056667pt;}
.y123{bottom:126.839333pt;}
.ya8{bottom:131.059867pt;}
.yfe{bottom:137.656800pt;}
.y122{bottom:146.039333pt;}
.y6d{bottom:146.834667pt;}
.ya7{bottom:148.659867pt;}
.y82{bottom:150.133867pt;}
.yfd{bottom:155.256667pt;}
.y121{bottom:163.639467pt;}
.y6c{bottom:163.842667pt;}
.ya6{bottom:166.259867pt;}
.y81{bottom:167.733867pt;}
.yfc{bottom:172.856667pt;}
.y5b{bottom:181.794667pt;}
.ya5{bottom:183.859867pt;}
.y80{bottom:185.333867pt;}
.y130{bottom:194.379600pt;}
.ya4{bottom:201.459867pt;}
.yfb{bottom:201.795200pt;}
.y7f{bottom:202.933867pt;}
.y12f{bottom:211.979600pt;}
.y135{bottom:213.126000pt;}
.y5a{bottom:216.756000pt;}
.y7e{bottom:220.533867pt;}
.yfa{bottom:232.333867pt;}
.y12e{bottom:233.359067pt;}
.y59{bottom:233.764000pt;}
.ya3{bottom:237.957467pt;}
.y7d{bottom:238.133867pt;}
.yf9{bottom:249.933867pt;}
.y12d{bottom:250.959067pt;}
.y48{bottom:251.717333pt;}
.y134{bottom:251.866133pt;}
.ya2{bottom:255.557467pt;}
.y7c{bottom:255.733867pt;}
.yf8{bottom:267.533867pt;}
.y75{bottom:269.189067pt;}
.y37{bottom:269.669333pt;}
.y12c{bottom:272.338667pt;}
.y7b{bottom:273.333867pt;}
.yc9{bottom:274.647343pt;}
.y26{bottom:286.677333pt;}
.y74{bottom:288.388933pt;}
.y88{bottom:288.617867pt;}
.y12b{bottom:289.938533pt;}
.yc8{bottom:290.546160pt;}
.y7a{bottom:290.933867pt;}
.ya1{bottom:292.055067pt;}
.yf7{bottom:296.472400pt;}
.y87{bottom:305.951200pt;}
.y73{bottom:305.988933pt;}
.yc7{bottom:306.444978pt;}
.y12a{bottom:307.538667pt;}
.y79{bottom:308.533867pt;}
.y133{bottom:308.559067pt;}
.yf6{bottom:314.072400pt;}
.y15{bottom:321.637333pt;}
.ya0{bottom:322.014133pt;}
.yc6{bottom:322.343795pt;}
.y78{bottom:326.133867pt;}
.y129{bottom:328.918133pt;}
.y132{bottom:330.291333pt;}
.yf5{bottom:331.672400pt;}
.y72{bottom:332.748000pt;}
.yc5{bottom:338.242613pt;}
.y9f{bottom:341.214133pt;}
.y83{bottom:344.665333pt;}
.yf4{bottom:349.272400pt;}
.y128{bottom:350.297600pt;}
.y71{bottom:351.948000pt;}
.yc4{bottom:354.141431pt;}
.y9e{bottom:358.814267pt;}
.yf3{bottom:366.872533pt;}
.y127{bottom:367.897600pt;}
.y131{bottom:369.031467pt;}
.y70{bottom:369.548000pt;}
.yc3{bottom:370.040248pt;}
.y9d{bottom:376.414133pt;}
.yc2{bottom:385.939066pt;}
.y6f{bottom:387.148000pt;}
.yf2{bottom:395.811067pt;}
.y120{bottom:396.672400pt;}
.yc1{bottom:401.837883pt;}
.y6e{bottom:404.748000pt;}
.y9c{bottom:412.911867pt;}
.yf1{bottom:413.411067pt;}
.yc0{bottom:417.736701pt;}
.y11f{bottom:426.631467pt;}
.yac{bottom:430.668000pt;}
.yf0{bottom:431.011067pt;}
.ybf{bottom:433.635519pt;}
.yca{bottom:436.485733pt;}
.y11e{bottom:444.231467pt;}
.y14{bottom:446.337067pt;}
.y9b{bottom:448.111867pt;}
.yef{bottom:448.611067pt;}
.ybe{bottom:449.534336pt;}
.y11d{bottom:461.831467pt;}
.y13{bottom:463.937067pt;}
.ybd{bottom:465.433154pt;}
.yee{bottom:466.211067pt;}
.y11c{bottom:479.431467pt;}
.ybc{bottom:481.331971pt;}
.y12{bottom:481.537067pt;}
.yed{bottom:483.811067pt;}
.ybb{bottom:497.230789pt;}
.y11{bottom:499.137067pt;}
.y77{bottom:503.102400pt;}
.y11b{bottom:508.370133pt;}
.yec{bottom:512.749600pt;}
.yba{bottom:513.129607pt;}
.y11a{bottom:525.970133pt;}
.yb9{bottom:529.028424pt;}
.y10{bottom:535.634667pt;}
.y119{bottom:543.570133pt;}
.yb8{bottom:544.927242pt;}
.yeb{bottom:550.847200pt;}
.yb7{bottom:560.826059pt;}
.y118{bottom:561.170133pt;}
.yea{bottom:568.447200pt;}
.yb6{bottom:576.443708pt;}
.yf{bottom:576.932400pt;}
.y117{bottom:578.770133pt;}
.ye9{bottom:586.047200pt;}
.yb5{bottom:592.342526pt;}
.ye{bottom:594.532400pt;}
.y116{bottom:596.370133pt;}
.ye8{bottom:603.647200pt;}
.yb4{bottom:608.241343pt;}
.yd{bottom:612.132267pt;}
.ye7{bottom:621.247200pt;}
.yb3{bottom:624.140161pt;}
.y115{bottom:625.308667pt;}
.yc{bottom:629.732400pt;}
.y76{bottom:633.968533pt;}
.ye6{bottom:638.847200pt;}
.yb2{bottom:640.038979pt;}
.y114{bottom:642.908667pt;}
.yb{bottom:647.332400pt;}
.yb1{bottom:655.937796pt;}
.ye5{bottom:656.447200pt;}
.y113{bottom:660.508667pt;}
.yb0{bottom:671.836614pt;}
.ye4{bottom:677.826800pt;}
.ya{bottom:682.532400pt;}
.yaf{bottom:687.735431pt;}
.y112{bottom:691.047200pt;}
.ye3{bottom:695.426800pt;}
.y9{bottom:700.132267pt;}
.yae{bottom:703.634249pt;}
.ye2{bottom:713.026800pt;}
.y8{bottom:717.732400pt;}
.yad{bottom:719.533067pt;}
.y111{bottom:721.006400pt;}
.y9a{bottom:724.924533pt;}
.ye1{bottom:730.626800pt;}
.y110{bottom:740.206267pt;}
.y99{bottom:744.124400pt;}
.ye0{bottom:748.226800pt;}
.y7{bottom:754.230000pt;}
.y10f{bottom:757.806267pt;}
.y98{bottom:761.724400pt;}
.ydf{bottom:765.826800pt;}
.y10e{bottom:775.406267pt;}
.y97{bottom:779.324400pt;}
.y10d{bottom:793.006400pt;}
.yde{bottom:794.765333pt;}
.y96{bottom:808.263067pt;}
.y6{bottom:817.927600pt;}
.y10c{bottom:821.944933pt;}
.y95{bottom:825.862933pt;}
.ydd{bottom:834.904000pt;}
.y100{bottom:838.701467pt;}
.y94{bottom:843.462933pt;}
.y5{bottom:848.466267pt;}
.ydc{bottom:852.503867pt;}
.y10b{bottom:860.042533pt;}
.y93{bottom:861.062933pt;}
.ydb{bottom:870.103867pt;}
.y10a{bottom:879.242533pt;}
.y92{bottom:886.222133pt;}
.y4{bottom:886.866267pt;}
.y109{bottom:896.842533pt;}
.yda{bottom:899.042533pt;}
.y91{bottom:903.822133pt;}
.y108{bottom:914.442533pt;}
.yd9{bottom:916.642533pt;}
.y90{bottom:921.422000pt;}
.y107{bottom:932.042533pt;}
.yd8{bottom:934.242533pt;}
.y8f{bottom:950.360667pt;}
.y106{bottom:960.981067pt;}
.yd7{bottom:963.181200pt;}
.y8e{bottom:967.960667pt;}
.yd6{bottom:980.781067pt;}
.y3{bottom:984.941467pt;}
.y8d{bottom:985.560667pt;}
.y105{bottom:991.519733pt;}
.yd5{bottom:998.381067pt;}
.y8c{bottom:1003.160667pt;}
.y104{bottom:1010.719733pt;}
.y2{bottom:1013.741467pt;}
.yd4{bottom:1015.981067pt;}
.y8b{bottom:1020.760667pt;}
.y103{bottom:1028.319600pt;}
.yd3{bottom:1033.581200pt;}
.y8a{bottom:1045.919733pt;}
.y1{bottom:1061.439067pt;}
.yd2{bottom:1062.519733pt;}
.y89{bottom:1063.519733pt;}
.hc{height:15.496000pt;}
.h9{height:15.497333pt;}
.hf{height:16.773921pt;}
.hd{height:22.968750pt;}
.h10{height:28.771733pt;}
.h13{height:35.420679pt;}
.h11{height:38.281250pt;}
.hb{height:40.104167pt;}
.h7{height:42.109375pt;}
.ha{height:42.656250pt;}
.h14{height:43.750000pt;}
.h5{height:44.500000pt;}
.he{height:47.851562pt;}
.h8{height:51.916667pt;}
.h6{height:58.333333pt;}
.h15{height:66.750000pt;}
.h3{height:68.906250pt;}
.h4{height:89.000000pt;}
.h2{height:133.500000pt;}
.h12{height:281.773333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:29.237333pt;}
.w2{width:35.905333pt;}
.w4{width:519.938667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.999733pt;}
.xe{left:7.405200pt;}
.x6{left:8.399867pt;}
.x10{left:17.896133pt;}
.x7{left:32.399867pt;}
.xd{left:39.432000pt;}
.x2{left:48.886667pt;}
.x1{left:66.141733pt;}
.xc{left:80.692933pt;}
.x17{left:102.425200pt;}
.x16{left:118.425200pt;}
.x15{left:125.457200pt;}
.x8{left:177.259867pt;}
.x14{left:223.950000pt;}
.x9{left:278.267733pt;}
.x13{left:317.084800pt;}
.x3{left:508.346667pt;}
.x4{left:515.013333pt;}
.xb{left:520.818933pt;}
.xf{left:543.853467pt;}
.xa{left:548.787333pt;}
.x11{left:683.933600pt;}
.x12{left:766.771600pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  