
    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_4deaf5705afb6332cbe43f1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_8365c36cfec6bf2dea65cf91.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.727539;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_daa3e5ef2c56dcd0d8f448cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_402e28f101f7b0c09641a8e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_8dfbf385a503cf61dcf79c98.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_bb2faf593e8eb12283684ff3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_eba818cb368c05a607470609.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_34edd133e689a6b406d821d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_54fbcf77dfaf63ed84f59349.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_8f8be967c0bd850d66e696d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_7984e92db94e4b7c95b81627.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_9bdf6f9908ef3c0acb318ec9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7d158b9884fb3bfbed9bab2d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_c2750adc11d76405331ae858.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e9f02457bc38b8db90deaec6.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_f13de95ae1760c0d2f07a329.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_ee4720159ec6274bcf5f8b31.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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_cd2d56450115ddfc72ea1885.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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_5c5529e676f58f982718eeea.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_a34e19bb0ce21e6a4ed5ac90.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.330078;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_c5172188b3bbab7ff95e0511.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;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_5d11b15ac5c635643a2620bb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.701287;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_74f0d523df5e07f9e7048fb8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938477;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_fe4dc3d8f25e7487da0d9525.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_27a188e27e4caadf1f58e135.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;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_3e2f7ba5581a584c8db44a68.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_f2705d4cac2832988479f43b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;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_3693fda0e9151d0a7f426b91.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;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_6344c67e4d900ed982d2c40b.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_842fd11ba8e92327ac6f2274.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;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_bf6cd9bb2fc8860bab6b2e89.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;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_b973c3897b8c14abcd46529c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938477;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_172d41180e7d41a2c2ef1229.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938477;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_97bf1b05051c5b004c5b5cbe.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.938477;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_265d3a0c225bf316e088d115.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.938477;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_46532fc946bc759e8da80846.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938477;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_c4c871cb76911bfa40898f7d.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938477;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_c75702c98a77bf797de5e11c.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938477;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_d75a6c7a76191bfec63abd4f.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.938477;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_5834a2b8fb720a38b5657e3b.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938477;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_bb39d47762c77c9bc2b00276.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.938477;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_7fe94de08ac6303aa403bb74.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938477;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_cc04ba5a0264054b1b2b9d9e.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.938477;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_257648ab151e6dacdb36457b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938477;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_68e0f4d8d34d2c3c10297c2b.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938477;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_2313832b4e8cbf823bdfc2fc.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938477;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_67d720793a2b95e1f8776755.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938477;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_346ece51dfc244410bdf2653.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.938477;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_d40a322d884390c918b2be71.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.938477;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_37b6ab7c1d4c25feb7d77f2c.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938477;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000007px;}
.ls2{letter-spacing:0.000015px;}
.ls3{letter-spacing:0.000020px;}
.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:-290.857488px;}
.ws6{word-spacing:-96.952496px;}
.ws4{word-spacing:-64.810549px;}
.ws2{word-spacing:-53.873012px;}
.ws3{word-spacing:-0.193905px;}
.ws5{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-28.782856px;}
._c{margin-left:-21.492650px;}
._12{margin-left:-17.221226px;}
._11{margin-left:-14.393192px;}
._b{margin-left:-10.699021px;}
._d{margin-left:-7.196136px;}
._10{margin-left:-6.180109px;}
._a{margin-left:-3.503207px;}
._0{width:1.449000px;}
._1{width:2.457000px;}
._3{width:3.591000px;}
._5{width:4.734000px;}
._2{width:5.760000px;}
._4{width:7.398000px;}
._8{width:8.712000px;}
._9{width:10.476000px;}
._6{width:12.210000px;}
._7{width:13.266000px;}
._f{width:129.621064px;}
.fc4{color:rgb(214,250,255);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(67,67,67);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.000000px;}
.fs4{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs9{font-size:107.999996px;}
.fs0{font-size:120.000000px;}
.fsd{font-size:161.099989px;}
.fsb{font-size:175.499993px;}
.fs7{font-size:193.904992px;}
.fsc{font-size:322.199978px;}
.fsa{font-size:350.999985px;}
.fs6{font-size:387.809984px;}
.fs8{font-size:484.739984px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y2b{bottom:0.630023px;}
.y1e{bottom:57.483000px;}
.y2a{bottom:140.133000px;}
.y29{bottom:157.983000px;}
.y28{bottom:175.833000px;}
.y1d{bottom:190.383000px;}
.y88{bottom:204.749991px;}
.y1c{bottom:212.133000px;}
.y1b{bottom:233.883000px;}
.y1a{bottom:255.633000px;}
.y6b{bottom:273.374989px;}
.y83{bottom:277.874988px;}
.y60{bottom:299.249988px;}
.y19{bottom:302.358000px;}
.y8a{bottom:313.874987px;}
.y76{bottom:319.499987px;}
.y87{bottom:326.249986px;}
.y82{bottom:338.624986px;}
.y5f{bottom:339.749986px;}
.y3f{bottom:349.874985px;}
.y18{bottom:352.158000px;}
.y54{bottom:357.749985px;}
.y75{bottom:359.999985px;}
.y31{bottom:362.249985px;}
.y17{bottom:373.008000px;}
.y5e{bottom:380.249984px;}
.y89{bottom:386.999984px;}
.y4e{bottom:390.374984px;}
.y16{bottom:393.858000px;}
.y81{bottom:399.374983px;}
.y74{bottom:400.499983px;}
.y6a{bottom:404.999983px;}
.y45{bottom:416.249983px;}
.y5d{bottom:420.749982px;}
.y3e{bottom:422.999982px;}
.y53{bottom:430.874982px;}
.y15{bottom:435.558000px;}
.y73{bottom:440.999982px;}
.y14{bottom:456.408000px;}
.y44{bottom:456.749981px;}
.y7a{bottom:458.999981px;}
.y38{bottom:462.374981px;}
.y86{bottom:471.374980px;}
.y72{bottom:481.499980px;}
.y30{bottom:483.749980px;}
.y3d{bottom:496.124979px;}
.y43{bottom:497.249979px;}
.y13{bottom:498.108000px;}
.y5c{bottom:501.749979px;}
.y52{bottom:503.999979px;}
.y12{bottom:518.958000px;}
.y80{bottom:519.749978px;}
.y71{bottom:521.999978px;}
.y79{bottom:532.124978px;}
.y37{bottom:535.499978px;}
.y11{bottom:539.808000px;}
.y5b{bottom:542.249977px;}
.y69{bottom:550.124977px;}
.y10{bottom:560.658000px;}
.y70{bottom:562.499977px;}
.y3c{bottom:568.124976px;}
.y7f{bottom:580.499976px;}
.yf{bottom:581.508000px;}
.y5a{bottom:582.749976px;}
.y4d{bottom:586.124976px;}
.y48{bottom:588.374975px;}
.y40{bottom:589.499975px;}
.y68{bottom:590.624975px;}
.ye{bottom:602.358000px;}
.y6f{bottom:602.999975px;}
.y2f{bottom:605.249975px;}
.y36{bottom:608.624975px;}
.yd{bottom:623.208000px;}
.y59{bottom:623.249974px;}
.y4c{bottom:626.624974px;}
.y47{bottom:628.874974px;}
.y67{bottom:631.124974px;}
.y42{bottom:633.374974px;}
.y3b{bottom:641.249973px;}
.y6e{bottom:643.499973px;}
.yc{bottom:644.058000px;}
.y58{bottom:663.749972px;}
.yb{bottom:664.908000px;}
.y4b{bottom:667.124972px;}
.y66{bottom:671.624972px;}
.y2e{bottom:677.249972px;}
.y35{bottom:680.624972px;}
.y51{bottom:699.749971px;}
.y7e{bottom:700.874971px;}
.y57{bottom:704.249971px;}
.y4a{bottom:707.624971px;}
.ya{bottom:711.858000px;}
.y65{bottom:712.124970px;}
.y3a{bottom:714.374970px;}
.y46{bottom:715.499970px;}
.y50{bottom:740.249969px;}
.y56{bottom:744.749969px;}
.y77{bottom:748.124969px;}
.y2d{bottom:750.374969px;}
.y64{bottom:752.624969px;}
.y34{bottom:753.749969px;}
.y7d{bottom:761.624968px;}
.y9{bottom:761.658000px;}
.y6d{bottom:764.999968px;}
.y8{bottom:782.508000px;}
.y78{bottom:784.124967px;}
.y55{bottom:785.249967px;}
.y27{bottom:792.858000px;}
.y63{bottom:793.124967px;}
.y7{bottom:803.358000px;}
.y85{bottom:811.124966px;}
.y41{bottom:813.374966px;}
.y26{bottom:814.608000px;}
.y7c{bottom:822.374966px;}
.y33{bottom:826.874966px;}
.y62{bottom:833.624965px;}
.y25{bottom:836.358000px;}
.y6{bottom:845.058000px;}
.y49{bottom:853.874964px;}
.y8b{bottom:857.249964px;}
.y24{bottom:879.858000px;}
.y4f{bottom:885.374963px;}
.y5{bottom:891.108000px;}
.y39{bottom:893.249963px;}
.y23{bottom:901.608000px;}
.y22{bottom:923.358000px;}
.y2c{bottom:930.374961px;}
.y4{bottom:941.133000px;}
.y21{bottom:945.108000px;}
.y6c{bottom:950.624960px;}
.y7b{bottom:969.749960px;}
.y61{bottom:973.124959px;}
.y3{bottom:985.308000px;}
.y20{bottom:988.608000px;}
.y84{bottom:989.999959px;}
.y32{bottom:1005.749958px;}
.y2{bottom:1021.833000px;}
.y1f{bottom:1036.233000px;}
.h8{height:39.366211px;}
.h6{height:45.927246px;}
.h7{height:47.244141px;}
.h4{height:48.114258px;}
.h5{height:61.236328px;}
.h3{height:65.610352px;}
.hf{height:73.248044px;}
.h2{height:87.480469px;}
.h10{height:116.595698px;}
.h14{height:117.285197px;}
.h12{height:127.768794px;}
.hd{height:141.168136px;}
.h13{height:234.570394px;}
.h11{height:255.537587px;}
.hc{height:282.336272px;}
.he{height:352.903963px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.hb{height:1262.249947px;}
.h9{height:1262.880000px;}
.ha{height:1263.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.w4{width:1785.374926px;}
.w3{width:1786.500000px;}
.w2{width:1786.680000px;}
.x0{left:0.000000px;}
.x1{left:108.150000px;}
.x1b{left:121.447261px;}
.x22{left:195.310544px;}
.x21{left:217.705075px;}
.x27{left:222.697262px;}
.x28{left:276.609363px;}
.xc{left:301.289050px;}
.x16{left:317.249987px;}
.x6{left:325.283195px;}
.x13{left:342.457017px;}
.x4{left:367.523422px;}
.x2c{left:377.982412px;}
.x3{left:412.523420px;}
.x19{left:442.775378px;}
.x1d{left:467.806627px;}
.x15{left:471.410137px;}
.x20{left:478.687480px;}
.xb{left:488.460917px;}
.x8{left:501.169907px;}
.x23{left:502.611313px;}
.x14{left:512.894510px;}
.x2f{left:581.484351px;}
.x24{left:586.845684px;}
.x17{left:601.031225px;}
.xa{left:624.164036px;}
.x2a{left:627.521464px;}
.x1a{left:633.445286px;}
.x2d{left:641.636692px;}
.xd{left:646.207004px;}
.x5{left:663.767556px;}
.x2{left:669.164035px;}
.x18{left:690.820284px;}
.x1c{left:698.695283px;}
.x12{left:701.455055px;}
.x1f{left:717.134741px;}
.x7{left:725.660126px;}
.x9{left:731.056616px;}
.x1e{left:741.884740px;}
.xe{left:746.859344px;}
.x26{left:758.408177px;}
.x29{left:763.365208px;}
.xf{left:771.503874px;}
.x2b{left:774.140593px;}
.x25{left:787.201145px;}
.x10{left:795.462863px;}
.x2e{left:801.123019px;}
.x11{left:859.939423px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000006pt;}
.ls2{letter-spacing:0.000014pt;}
.ls3{letter-spacing:0.000018pt;}
.ws1{word-spacing:-258.539989pt;}
.ws6{word-spacing:-86.179996pt;}
.ws4{word-spacing:-57.609377pt;}
.ws2{word-spacing:-47.887122pt;}
.ws3{word-spacing:-0.172360pt;}
.ws5{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-25.584761pt;}
._c{margin-left:-19.104578pt;}
._12{margin-left:-15.307756pt;}
._11{margin-left:-12.793948pt;}
._b{margin-left:-9.510241pt;}
._d{margin-left:-6.396565pt;}
._10{margin-left:-5.493430pt;}
._a{margin-left:-3.113961pt;}
._0{width:1.288000pt;}
._1{width:2.184000pt;}
._3{width:3.192000pt;}
._5{width:4.208000pt;}
._2{width:5.120000pt;}
._4{width:6.576000pt;}
._8{width:7.744000pt;}
._9{width:9.312000pt;}
._6{width:10.853333pt;}
._7{width:11.792000pt;}
._f{width:115.218723pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs9{font-size:95.999996pt;}
.fs0{font-size:106.666667pt;}
.fsd{font-size:143.199990pt;}
.fsb{font-size:155.999994pt;}
.fs7{font-size:172.359993pt;}
.fsc{font-size:286.399980pt;}
.fsa{font-size:311.999987pt;}
.fs6{font-size:344.719986pt;}
.fs8{font-size:430.879986pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y2b{bottom:0.560020pt;}
.y1e{bottom:51.096000pt;}
.y2a{bottom:124.562667pt;}
.y29{bottom:140.429333pt;}
.y28{bottom:156.296000pt;}
.y1d{bottom:169.229333pt;}
.y88{bottom:181.999992pt;}
.y1c{bottom:188.562667pt;}
.y1b{bottom:207.896000pt;}
.y1a{bottom:227.229333pt;}
.y6b{bottom:242.999990pt;}
.y83{bottom:246.999990pt;}
.y60{bottom:265.999989pt;}
.y19{bottom:268.762667pt;}
.y8a{bottom:278.999988pt;}
.y76{bottom:283.999988pt;}
.y87{bottom:289.999988pt;}
.y82{bottom:300.999987pt;}
.y5f{bottom:301.999987pt;}
.y3f{bottom:310.999987pt;}
.y18{bottom:313.029333pt;}
.y54{bottom:317.999987pt;}
.y75{bottom:319.999987pt;}
.y31{bottom:321.999987pt;}
.y17{bottom:331.562667pt;}
.y5e{bottom:337.999986pt;}
.y89{bottom:343.999986pt;}
.y4e{bottom:346.999986pt;}
.y16{bottom:350.096000pt;}
.y81{bottom:354.999985pt;}
.y74{bottom:355.999985pt;}
.y6a{bottom:359.999985pt;}
.y45{bottom:369.999985pt;}
.y5d{bottom:373.999984pt;}
.y3e{bottom:375.999984pt;}
.y53{bottom:382.999984pt;}
.y15{bottom:387.162667pt;}
.y73{bottom:391.999984pt;}
.y14{bottom:405.696000pt;}
.y44{bottom:405.999983pt;}
.y7a{bottom:407.999983pt;}
.y38{bottom:410.999983pt;}
.y86{bottom:418.999983pt;}
.y72{bottom:427.999982pt;}
.y30{bottom:429.999982pt;}
.y3d{bottom:440.999982pt;}
.y43{bottom:441.999982pt;}
.y13{bottom:442.762667pt;}
.y5c{bottom:445.999981pt;}
.y52{bottom:447.999981pt;}
.y12{bottom:461.296000pt;}
.y80{bottom:461.999981pt;}
.y71{bottom:463.999981pt;}
.y79{bottom:472.999980pt;}
.y37{bottom:475.999980pt;}
.y11{bottom:479.829333pt;}
.y5b{bottom:481.999980pt;}
.y69{bottom:488.999980pt;}
.y10{bottom:498.362667pt;}
.y70{bottom:499.999979pt;}
.y3c{bottom:504.999979pt;}
.y7f{bottom:515.999979pt;}
.yf{bottom:516.896000pt;}
.y5a{bottom:517.999978pt;}
.y4d{bottom:520.999978pt;}
.y48{bottom:522.999978pt;}
.y40{bottom:523.999978pt;}
.y68{bottom:524.999978pt;}
.ye{bottom:535.429333pt;}
.y6f{bottom:535.999978pt;}
.y2f{bottom:537.999978pt;}
.y36{bottom:540.999977pt;}
.yd{bottom:553.962667pt;}
.y59{bottom:553.999977pt;}
.y4c{bottom:556.999977pt;}
.y47{bottom:558.999977pt;}
.y67{bottom:560.999977pt;}
.y42{bottom:562.999977pt;}
.y3b{bottom:569.999976pt;}
.y6e{bottom:571.999976pt;}
.yc{bottom:572.496000pt;}
.y58{bottom:589.999975pt;}
.yb{bottom:591.029333pt;}
.y4b{bottom:592.999975pt;}
.y66{bottom:596.999975pt;}
.y2e{bottom:601.999975pt;}
.y35{bottom:604.999975pt;}
.y51{bottom:621.999974pt;}
.y7e{bottom:622.999974pt;}
.y57{bottom:625.999974pt;}
.y4a{bottom:628.999974pt;}
.ya{bottom:632.762667pt;}
.y65{bottom:632.999974pt;}
.y3a{bottom:634.999974pt;}
.y46{bottom:635.999974pt;}
.y50{bottom:657.999973pt;}
.y56{bottom:661.999972pt;}
.y77{bottom:664.999972pt;}
.y2d{bottom:666.999972pt;}
.y64{bottom:668.999972pt;}
.y34{bottom:669.999972pt;}
.y7d{bottom:676.999972pt;}
.y9{bottom:677.029333pt;}
.y6d{bottom:679.999972pt;}
.y8{bottom:695.562667pt;}
.y78{bottom:696.999971pt;}
.y55{bottom:697.999971pt;}
.y27{bottom:704.762667pt;}
.y63{bottom:704.999971pt;}
.y7{bottom:714.096000pt;}
.y85{bottom:720.999970pt;}
.y41{bottom:722.999970pt;}
.y26{bottom:724.096000pt;}
.y7c{bottom:730.999970pt;}
.y33{bottom:734.999969pt;}
.y62{bottom:740.999969pt;}
.y25{bottom:743.429333pt;}
.y6{bottom:751.162667pt;}
.y49{bottom:758.999968pt;}
.y8b{bottom:761.999968pt;}
.y24{bottom:782.096000pt;}
.y4f{bottom:786.999967pt;}
.y5{bottom:792.096000pt;}
.y39{bottom:793.999967pt;}
.y23{bottom:801.429333pt;}
.y22{bottom:820.762667pt;}
.y2c{bottom:826.999966pt;}
.y4{bottom:836.562667pt;}
.y21{bottom:840.096000pt;}
.y6c{bottom:844.999965pt;}
.y7b{bottom:861.999964pt;}
.y61{bottom:864.999964pt;}
.y3{bottom:875.829333pt;}
.y20{bottom:878.762667pt;}
.y84{bottom:879.999963pt;}
.y32{bottom:893.999963pt;}
.y2{bottom:908.296000pt;}
.y1f{bottom:921.096000pt;}
.h8{height:34.992188pt;}
.h6{height:40.824219pt;}
.h7{height:41.994792pt;}
.h4{height:42.768229pt;}
.h5{height:54.432292pt;}
.h3{height:58.320312pt;}
.hf{height:65.109372pt;}
.h2{height:77.760417pt;}
.h10{height:103.640621pt;}
.h14{height:104.253508pt;}
.h12{height:113.572261pt;}
.hd{height:125.482788pt;}
.h13{height:208.507017pt;}
.h11{height:227.144522pt;}
.hc{height:250.965575pt;}
.he{height:313.692412pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.hb{height:1121.999953pt;}
.h9{height:1122.560000pt;}
.ha{height:1122.666667pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.w4{width:1586.999934pt;}
.w3{width:1588.000000pt;}
.w2{width:1588.160000pt;}
.x0{left:0.000000pt;}
.x1{left:96.133333pt;}
.x1b{left:107.953121pt;}
.x22{left:173.609373pt;}
.x21{left:193.515622pt;}
.x27{left:197.953122pt;}
.x28{left:245.874990pt;}
.xc{left:267.812489pt;}
.x16{left:281.999988pt;}
.x6{left:289.140618pt;}
.x13{left:304.406237pt;}
.x4{left:326.687486pt;}
.x2c{left:335.984366pt;}
.x3{left:366.687485pt;}
.x19{left:393.578114pt;}
.x1d{left:415.828113pt;}
.x15{left:419.031233pt;}
.x20{left:425.499982pt;}
.xb{left:434.187482pt;}
.x8{left:445.484361pt;}
.x23{left:446.765611pt;}
.x14{left:455.906231pt;}
.x2f{left:516.874978pt;}
.x24{left:521.640608pt;}
.x17{left:534.249978pt;}
.xa{left:554.812477pt;}
.x2a{left:557.796857pt;}
.x1a{left:563.062477pt;}
.x2d{left:570.343726pt;}
.xd{left:574.406226pt;}
.x5{left:590.015605pt;}
.x2{left:594.812475pt;}
.x18{left:614.062474pt;}
.x1c{left:621.062474pt;}
.x12{left:623.515604pt;}
.x1f{left:637.453103pt;}
.x7{left:645.031223pt;}
.x9{left:649.828103pt;}
.x1e{left:659.453103pt;}
.xe{left:663.874972pt;}
.x26{left:674.140602pt;}
.x29{left:678.546852pt;}
.xf{left:685.781221pt;}
.x2b{left:688.124971pt;}
.x25{left:699.734351pt;}
.x10{left:707.078101pt;}
.x2e{left:712.109350pt;}
.x11{left:764.390598pt;}
}




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