
    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_5d8bb958da750882877e8ffa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_80541bc66546542b4728c1fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949219;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_55df99f0616ba60ad29bc625.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_cc049c29cd4f3c251418de0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_c3cf2a21556cd2e6568c358d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_1e71aff59ea7a71c0f8363bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_cf60a1dbe1cba11f3606efa3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_ff3750af2d8828699e265494.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.952148;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_fd071674f224f51b2f471b00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_573b6bd456f8be0320fe4718.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_ae5b24e203398993fc58ab82.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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_9e218579eb36b38e12ddb61c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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_4327fe4346222a7a7e2badb6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.941406;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_1bc776ccd27e08fd251c9050.woff2')format("woff");}.fff{font-family:fff;line-height:0.941406;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_4c1fb4f371fcc6d568333a77.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.962402;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_daa61250599dcaa645e2862e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.941406;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_71beea55688c7b783660f40a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.941406;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_1bb52ea775441106048f5c4f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.948242;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_013a797c2790b7a274f473b0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.941406;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_25178648df0b08eca0dfef98.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.948242;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_2dcb2f4d6c9e9933c28205d5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.948242;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_3cf768af8832904901af4f9f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.966797;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_ad3fceb434082cf0a7bf484c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.941406;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_5f44548f0500eff39d4d9077.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.941406;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_56fddcc8d23ad30b0adbf555.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.750000;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_98c097f3394c2424e2fc2320.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.941406;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_deee7fe863f82cc16762c5f7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.966797;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_b9f9a2de867be9623b993ecc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.941406;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.003906;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_f68215dc29660e5e5818aa87.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.962402;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_524f770c196628ce6f77be3d.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.941406;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_359bfd4a0ba05891417dafdd.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.941406;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_eb303d434d05318cc347c257.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.995117;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_0a5d6eb422d1ed6f659b4cd8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.948242;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.910156;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_5a0d639dc7d66946bc66b8a9.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.941406;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_48897d587aec30a66e84fb95.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.962402;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_89e552f8263ac840ca79cd1f.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.941406;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_9373c2123b6a4adaca08cf19.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.948242;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_4d23ed06d8b1173ef1d05183.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.962402;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_d5dead2288d0ec223d6c3fb1.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.941406;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_602fab3bcfcb6edf3ca52d85.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.941406;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_76b83ad135e9c824b69f11ad.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.740234;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:ff2d;src:url('chunks/assets/font_0646b68a25a7d05ed4a3f788.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.941406;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:ff2e;src:url('chunks/assets/font_abc4372b306f90f759effe89.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.941406;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:ff2f;src:url('chunks/assets/font_37e6e2176cbc90f32bdb5620.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.962402;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:ff30;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.003906;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:ff31;src:url('chunks/assets/font_cae959216c34ebdff4404e96.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.962402;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:ff32;src:url('chunks/assets/font_a4a9e0cc99487bca168de883.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.941406;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:ff33;src:url('chunks/assets/font_2a35ff642a9e8e5780764500.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.941406;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:ff34;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.003906;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:ff35;src:url('chunks/assets/font_68f95c69587bac4bd9e96064.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.740723;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:ff36;src:url('chunks/assets/font_f5b31f900f18c5f5ea27eee7.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.941406;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:ff37;src:url('chunks/assets/font_32fa696095c53daf07236b71.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.941406;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:ff38;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.003906;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.032000px;}
.ls4{letter-spacing:-0.516000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.468000px;}
.ls8{letter-spacing:0.516000px;}
.ls7{letter-spacing:0.588000px;}
.ls0{letter-spacing:0.750000px;}
.lsb{letter-spacing:1.968000px;}
.ls5{letter-spacing:5.484000px;}
.lsa{letter-spacing:15.984000px;}
.ls9{letter-spacing:27.984000px;}
.lsc{letter-spacing:64.320000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws7{word-spacing:-60.000000px;}
.ws3{word-spacing:-20.484000px;}
.ws1{word-spacing:-20.448000px;}
.ws8{word-spacing:-20.040000px;}
.ws0{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.500000px;}
.ws4{word-spacing:-0.588000px;}
.ws9{word-spacing:-0.540000px;}
.ws6{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-5.550000px;}
._13{margin-left:-4.536000px;}
._7{margin-left:-3.468000px;}
._1{margin-left:-1.602000px;}
._0{width:1.092000px;}
._c{width:2.514000px;}
._9{width:3.642000px;}
._a{width:4.980000px;}
._b{width:6.084000px;}
._d{width:7.560000px;}
._e{width:8.580000px;}
._15{width:9.990000px;}
._1e{width:11.058000px;}
._5{width:12.168000px;}
._4{width:13.452000px;}
._6{width:14.760000px;}
._11{width:15.828000px;}
._1a{width:16.890000px;}
._1b{width:18.864000px;}
._1f{width:20.196000px;}
._16{width:21.360000px;}
._17{width:22.524000px;}
._18{width:23.760000px;}
._12{width:24.948000px;}
._8{width:26.412000px;}
._2{width:28.530000px;}
._3{width:30.240000px;}
._19{width:31.356000px;}
._10{width:33.402000px;}
._f{width:34.848000px;}
._20{width:37.500000px;}
._21{width:39.312000px;}
._1d{width:49.092000px;}
._1c{width:50.760000px;}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:82.912500px;}
.yb4{bottom:103.912500px;}
.y97{bottom:124.162500px;}
.yb3{bottom:124.537500px;}
.y4b{bottom:127.912500px;}
.y96{bottom:144.787500px;}
.yb2{bottom:145.162500px;}
.y4a{bottom:148.537500px;}
.y95{bottom:165.420000px;}
.yb1{bottom:165.795000px;}
.y49{bottom:169.170000px;}
.y94{bottom:186.075000px;}
.yb0{bottom:186.450000px;}
.y48{bottom:190.200000px;}
.y93{bottom:207.075000px;}
.yaf{bottom:207.450000px;}
.y47{bottom:210.825000px;}
.y92{bottom:227.700000px;}
.yae{bottom:228.075000px;}
.y46{bottom:231.450000px;}
.y91{bottom:248.325000px;}
.yad{bottom:248.700000px;}
.y45{bottom:252.075000px;}
.y1e{bottom:256.200000px;}
.y90{bottom:268.950000px;}
.yac{bottom:269.325000px;}
.y44{bottom:272.700000px;}
.y1d{bottom:277.200000px;}
.y8f{bottom:289.575000px;}
.yab{bottom:289.950000px;}
.y43{bottom:293.700000px;}
.y8e{bottom:310.230000px;}
.yaa{bottom:310.995000px;}
.y42{bottom:314.370000px;}
.y1c{bottom:318.870000px;}
.y8d{bottom:331.245000px;}
.ya9{bottom:331.620000px;}
.y41{bottom:334.995000px;}
.y1b{bottom:339.495000px;}
.y8c{bottom:351.870000px;}
.ya8{bottom:352.245000px;}
.y40{bottom:355.620000px;}
.y1a{bottom:360.120000px;}
.y8b{bottom:372.495000px;}
.ya7{bottom:372.870000px;}
.y3f{bottom:376.245000px;}
.y19{bottom:380.745000px;}
.y8a{bottom:393.120000px;}
.ya6{bottom:393.495000px;}
.y3e{bottom:397.245000px;}
.y18{bottom:401.745000px;}
.y5f{bottom:410.745000px;}
.y89{bottom:413.745000px;}
.ya5{bottom:414.495000px;}
.y3d{bottom:417.870000px;}
.y17{bottom:422.400000px;}
.y5e{bottom:431.775000px;}
.y88{bottom:434.775000px;}
.ya4{bottom:435.150000px;}
.y3c{bottom:438.525000px;}
.y16{bottom:443.025000px;}
.y5d{bottom:452.400000px;}
.y87{bottom:455.400000px;}
.ya3{bottom:455.775000px;}
.y3b{bottom:459.150000px;}
.y15{bottom:463.650000px;}
.y5c{bottom:473.025000px;}
.y86{bottom:476.025000px;}
.ya2{bottom:476.400000px;}
.y3a{bottom:479.775000px;}
.y14{bottom:484.275000px;}
.y5b{bottom:493.650000px;}
.y85{bottom:496.650000px;}
.ya1{bottom:497.025000px;}
.y39{bottom:500.775000px;}
.y13{bottom:504.900000px;}
.y5a{bottom:514.275000px;}
.y84{bottom:517.275000px;}
.ya0{bottom:518.025000px;}
.y38{bottom:521.400000px;}
.y12{bottom:525.900000px;}
.y59{bottom:535.275000px;}
.y83{bottom:538.275000px;}
.y9f{bottom:538.650000px;}
.y37{bottom:542.070000px;}
.y11{bottom:546.570000px;}
.y58{bottom:555.945000px;}
.y82{bottom:558.945000px;}
.y9e{bottom:559.320000px;}
.y36{bottom:562.695000px;}
.y10{bottom:567.195000px;}
.y57{bottom:572.820000px;}
.y81{bottom:579.570000px;}
.y9d{bottom:579.945000px;}
.y35{bottom:583.320000px;}
.yf{bottom:587.820000px;}
.y80{bottom:600.195000px;}
.y9c{bottom:600.570000px;}
.y34{bottom:604.320000px;}
.y6b{bottom:607.320000px;}
.ye{bottom:608.445000px;}
.y7f{bottom:620.820000px;}
.y9b{bottom:621.195000px;}
.y33{bottom:624.945000px;}
.y6a{bottom:628.320000px;}
.yd{bottom:629.445000px;}
.y7e{bottom:641.820000px;}
.y9a{bottom:642.195000px;}
.y32{bottom:645.570000px;}
.y69{bottom:648.945000px;}
.y7d{bottom:662.475000px;}
.y99{bottom:662.850000px;}
.y31{bottom:666.225000px;}
.y68{bottom:669.600000px;}
.yc{bottom:671.475000px;}
.y7c{bottom:683.100000px;}
.y98{bottom:683.475000px;}
.y30{bottom:686.850000px;}
.y67{bottom:690.225000px;}
.y7b{bottom:704.100000px;}
.y2f{bottom:707.475000px;}
.y66{bottom:711.225000px;}
.yb{bottom:716.475000px;}
.y7a{bottom:724.725000px;}
.y2e{bottom:728.475000px;}
.y65{bottom:731.850000px;}
.y79{bottom:745.725000px;}
.y2d{bottom:749.100000px;}
.y64{bottom:752.475000px;}
.ya{bottom:761.475000px;}
.y78{bottom:766.350000px;}
.y2c{bottom:769.725000px;}
.y63{bottom:773.100000px;}
.y9{bottom:782.130000px;}
.y77{bottom:787.005000px;}
.y2b{bottom:790.380000px;}
.y62{bottom:793.755000px;}
.y8{bottom:802.755000px;}
.y76{bottom:807.630000px;}
.y2a{bottom:811.005000px;}
.y61{bottom:814.755000px;}
.y75{bottom:828.255000px;}
.y29{bottom:832.005000px;}
.y60{bottom:835.380000px;}
.y7{bottom:844.380000px;}
.y74{bottom:849.255000px;}
.y28{bottom:852.630000px;}
.y56{bottom:856.005000px;}
.y73{bottom:869.880000px;}
.y27{bottom:873.255000px;}
.y55{bottom:876.630000px;}
.y6{bottom:886.005000px;}
.y72{bottom:890.505000px;}
.y26{bottom:893.880000px;}
.y54{bottom:897.300000px;}
.y71{bottom:911.175000px;}
.y25{bottom:914.550000px;}
.y53{bottom:918.300000px;}
.y5{bottom:928.050000px;}
.y70{bottom:931.800000px;}
.y24{bottom:935.550000px;}
.y52{bottom:938.925000px;}
.y6f{bottom:952.800000px;}
.y23{bottom:956.175000px;}
.y51{bottom:959.550000px;}
.y4{bottom:969.675000px;}
.y6e{bottom:973.425000px;}
.y22{bottom:976.800000px;}
.y50{bottom:980.175000px;}
.y6d{bottom:994.050000px;}
.y21{bottom:997.425000px;}
.y4f{bottom:1000.800000px;}
.y3{bottom:1011.675000px;}
.y6c{bottom:1014.705000px;}
.y20{bottom:1018.080000px;}
.y4e{bottom:1021.830000px;}
.y2{bottom:1036.455000px;}
.y1f{bottom:1039.080000px;}
.y4d{bottom:1042.455000px;}
.y1{bottom:1060.455000px;}
.y4c{bottom:1063.080000px;}
.ha{height:52.417969px;}
.h6{height:52.628906px;}
.h4{height:53.121094px;}
.h3{height:54.105469px;}
.h2{height:54.140625px;}
.h5{height:54.856934px;}
.h8{height:60.679688px;}
.h9{height:61.154297px;}
.h1{height:63.164062px;}
.h7{height:71.613281px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:108.037486px;}
.x1{left:109.537486px;}
.x2{left:113.287486px;}
.x9{left:135.074986px;}
.xa{left:162.074986px;}
.x5{left:273.119986px;}
.x4{left:384.149986px;}
.x6{left:395.774986px;}
.x3{left:411.944986px;}
.x8{left:810.344986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.917333pt;}
.ls4{letter-spacing:-0.458667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.416000pt;}
.ls8{letter-spacing:0.458667pt;}
.ls7{letter-spacing:0.522667pt;}
.ls0{letter-spacing:0.666667pt;}
.lsb{letter-spacing:1.749333pt;}
.ls5{letter-spacing:4.874667pt;}
.lsa{letter-spacing:14.208000pt;}
.ls9{letter-spacing:24.874667pt;}
.lsc{letter-spacing:57.173333pt;}
.wsa{word-spacing:-64.000000pt;}
.ws7{word-spacing:-53.333333pt;}
.ws3{word-spacing:-18.208000pt;}
.ws1{word-spacing:-18.176000pt;}
.ws8{word-spacing:-17.813333pt;}
.ws0{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.333333pt;}
.ws4{word-spacing:-0.522667pt;}
.ws9{word-spacing:-0.480000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-4.933333pt;}
._13{margin-left:-4.032000pt;}
._7{margin-left:-3.082667pt;}
._1{margin-left:-1.424000pt;}
._0{width:0.970667pt;}
._c{width:2.234667pt;}
._9{width:3.237333pt;}
._a{width:4.426667pt;}
._b{width:5.408000pt;}
._d{width:6.720000pt;}
._e{width:7.626667pt;}
._15{width:8.880000pt;}
._1e{width:9.829333pt;}
._5{width:10.816000pt;}
._4{width:11.957333pt;}
._6{width:13.120000pt;}
._11{width:14.069333pt;}
._1a{width:15.013333pt;}
._1b{width:16.768000pt;}
._1f{width:17.952000pt;}
._16{width:18.986667pt;}
._17{width:20.021333pt;}
._18{width:21.120000pt;}
._12{width:22.176000pt;}
._8{width:23.477333pt;}
._2{width:25.360000pt;}
._3{width:26.880000pt;}
._19{width:27.872000pt;}
._10{width:29.690667pt;}
._f{width:30.976000pt;}
._20{width:33.333333pt;}
._21{width:34.944000pt;}
._1d{width:43.637333pt;}
._1c{width:45.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:73.700000pt;}
.yb4{bottom:92.366667pt;}
.y97{bottom:110.366667pt;}
.yb3{bottom:110.700000pt;}
.y4b{bottom:113.700000pt;}
.y96{bottom:128.700000pt;}
.yb2{bottom:129.033333pt;}
.y4a{bottom:132.033333pt;}
.y95{bottom:147.040000pt;}
.yb1{bottom:147.373333pt;}
.y49{bottom:150.373333pt;}
.y94{bottom:165.400000pt;}
.yb0{bottom:165.733333pt;}
.y48{bottom:169.066667pt;}
.y93{bottom:184.066667pt;}
.yaf{bottom:184.400000pt;}
.y47{bottom:187.400000pt;}
.y92{bottom:202.400000pt;}
.yae{bottom:202.733333pt;}
.y46{bottom:205.733333pt;}
.y91{bottom:220.733333pt;}
.yad{bottom:221.066667pt;}
.y45{bottom:224.066667pt;}
.y1e{bottom:227.733333pt;}
.y90{bottom:239.066667pt;}
.yac{bottom:239.400000pt;}
.y44{bottom:242.400000pt;}
.y1d{bottom:246.400000pt;}
.y8f{bottom:257.400000pt;}
.yab{bottom:257.733333pt;}
.y43{bottom:261.066667pt;}
.y8e{bottom:275.760000pt;}
.yaa{bottom:276.440000pt;}
.y42{bottom:279.440000pt;}
.y1c{bottom:283.440000pt;}
.y8d{bottom:294.440000pt;}
.ya9{bottom:294.773333pt;}
.y41{bottom:297.773333pt;}
.y1b{bottom:301.773333pt;}
.y8c{bottom:312.773333pt;}
.ya8{bottom:313.106667pt;}
.y40{bottom:316.106667pt;}
.y1a{bottom:320.106667pt;}
.y8b{bottom:331.106667pt;}
.ya7{bottom:331.440000pt;}
.y3f{bottom:334.440000pt;}
.y19{bottom:338.440000pt;}
.y8a{bottom:349.440000pt;}
.ya6{bottom:349.773333pt;}
.y3e{bottom:353.106667pt;}
.y18{bottom:357.106667pt;}
.y5f{bottom:365.106667pt;}
.y89{bottom:367.773333pt;}
.ya5{bottom:368.440000pt;}
.y3d{bottom:371.440000pt;}
.y17{bottom:375.466667pt;}
.y5e{bottom:383.800000pt;}
.y88{bottom:386.466667pt;}
.ya4{bottom:386.800000pt;}
.y3c{bottom:389.800000pt;}
.y16{bottom:393.800000pt;}
.y5d{bottom:402.133333pt;}
.y87{bottom:404.800000pt;}
.ya3{bottom:405.133333pt;}
.y3b{bottom:408.133333pt;}
.y15{bottom:412.133333pt;}
.y5c{bottom:420.466667pt;}
.y86{bottom:423.133333pt;}
.ya2{bottom:423.466667pt;}
.y3a{bottom:426.466667pt;}
.y14{bottom:430.466667pt;}
.y5b{bottom:438.800000pt;}
.y85{bottom:441.466667pt;}
.ya1{bottom:441.800000pt;}
.y39{bottom:445.133333pt;}
.y13{bottom:448.800000pt;}
.y5a{bottom:457.133333pt;}
.y84{bottom:459.800000pt;}
.ya0{bottom:460.466667pt;}
.y38{bottom:463.466667pt;}
.y12{bottom:467.466667pt;}
.y59{bottom:475.800000pt;}
.y83{bottom:478.466667pt;}
.y9f{bottom:478.800000pt;}
.y37{bottom:481.840000pt;}
.y11{bottom:485.840000pt;}
.y58{bottom:494.173333pt;}
.y82{bottom:496.840000pt;}
.y9e{bottom:497.173333pt;}
.y36{bottom:500.173333pt;}
.y10{bottom:504.173333pt;}
.y57{bottom:509.173333pt;}
.y81{bottom:515.173333pt;}
.y9d{bottom:515.506667pt;}
.y35{bottom:518.506667pt;}
.yf{bottom:522.506667pt;}
.y80{bottom:533.506667pt;}
.y9c{bottom:533.840000pt;}
.y34{bottom:537.173333pt;}
.y6b{bottom:539.840000pt;}
.ye{bottom:540.840000pt;}
.y7f{bottom:551.840000pt;}
.y9b{bottom:552.173333pt;}
.y33{bottom:555.506667pt;}
.y6a{bottom:558.506667pt;}
.yd{bottom:559.506667pt;}
.y7e{bottom:570.506667pt;}
.y9a{bottom:570.840000pt;}
.y32{bottom:573.840000pt;}
.y69{bottom:576.840000pt;}
.y7d{bottom:588.866667pt;}
.y99{bottom:589.200000pt;}
.y31{bottom:592.200000pt;}
.y68{bottom:595.200000pt;}
.yc{bottom:596.866667pt;}
.y7c{bottom:607.200000pt;}
.y98{bottom:607.533333pt;}
.y30{bottom:610.533333pt;}
.y67{bottom:613.533333pt;}
.y7b{bottom:625.866667pt;}
.y2f{bottom:628.866667pt;}
.y66{bottom:632.200000pt;}
.yb{bottom:636.866667pt;}
.y7a{bottom:644.200000pt;}
.y2e{bottom:647.533333pt;}
.y65{bottom:650.533333pt;}
.y79{bottom:662.866667pt;}
.y2d{bottom:665.866667pt;}
.y64{bottom:668.866667pt;}
.ya{bottom:676.866667pt;}
.y78{bottom:681.200000pt;}
.y2c{bottom:684.200000pt;}
.y63{bottom:687.200000pt;}
.y9{bottom:695.226667pt;}
.y77{bottom:699.560000pt;}
.y2b{bottom:702.560000pt;}
.y62{bottom:705.560000pt;}
.y8{bottom:713.560000pt;}
.y76{bottom:717.893333pt;}
.y2a{bottom:720.893333pt;}
.y61{bottom:724.226667pt;}
.y75{bottom:736.226667pt;}
.y29{bottom:739.560000pt;}
.y60{bottom:742.560000pt;}
.y7{bottom:750.560000pt;}
.y74{bottom:754.893333pt;}
.y28{bottom:757.893333pt;}
.y56{bottom:760.893333pt;}
.y73{bottom:773.226667pt;}
.y27{bottom:776.226667pt;}
.y55{bottom:779.226667pt;}
.y6{bottom:787.560000pt;}
.y72{bottom:791.560000pt;}
.y26{bottom:794.560000pt;}
.y54{bottom:797.600000pt;}
.y71{bottom:809.933333pt;}
.y25{bottom:812.933333pt;}
.y53{bottom:816.266667pt;}
.y5{bottom:824.933333pt;}
.y70{bottom:828.266667pt;}
.y24{bottom:831.600000pt;}
.y52{bottom:834.600000pt;}
.y6f{bottom:846.933333pt;}
.y23{bottom:849.933333pt;}
.y51{bottom:852.933333pt;}
.y4{bottom:861.933333pt;}
.y6e{bottom:865.266667pt;}
.y22{bottom:868.266667pt;}
.y50{bottom:871.266667pt;}
.y6d{bottom:883.600000pt;}
.y21{bottom:886.600000pt;}
.y4f{bottom:889.600000pt;}
.y3{bottom:899.266667pt;}
.y6c{bottom:901.960000pt;}
.y20{bottom:904.960000pt;}
.y4e{bottom:908.293333pt;}
.y2{bottom:921.293333pt;}
.y1f{bottom:923.626667pt;}
.y4d{bottom:926.626667pt;}
.y1{bottom:942.626667pt;}
.y4c{bottom:944.960000pt;}
.ha{height:46.593750pt;}
.h6{height:46.781250pt;}
.h4{height:47.218750pt;}
.h3{height:48.093750pt;}
.h2{height:48.125000pt;}
.h5{height:48.761719pt;}
.h8{height:53.937500pt;}
.h9{height:54.359375pt;}
.h1{height:56.145833pt;}
.h7{height:63.656250pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.033321pt;}
.x1{left:97.366655pt;}
.x2{left:100.699988pt;}
.x9{left:120.066655pt;}
.xa{left:144.066655pt;}
.x5{left:242.773321pt;}
.x4{left:341.466655pt;}
.x6{left:351.799988pt;}
.x3{left:366.173321pt;}
.x8{left:720.306655pt;}
}




    .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; }
  