
    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_139f32162b6728123d7095b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912598;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_1bf41aed3ad81776c064b44e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912598;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_a5fe94321d54892c3f4b36ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_9ef43229bae7080a9fd2813f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_2e57b86c6705c9039b49688e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_ba6850fad56e191fb1d07373.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_3d7268950623c04c5a494964.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_077ebc455e5fec4efd8c39c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_cc1d925c9149cc7996f60faa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986816;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_cdfa7d412b41c9c6c59e2e70.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_3fcea5de6686ce4b814c82c3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.986816;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_75d0c83c0e3d833e8affcfc0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986816;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_5fe1d98306210ecd0e8379a8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986816;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_b75c10c23df6a61318092a24.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912598;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_da3ca162a9e9e3d9f2a85f81.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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_4e7b49b23a2632b144eb7b8a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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_b9ceea15f6a1f4dce1b7d46b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712000;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_fea24df61bde9570a56ee5f9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910645;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_c41cafe93babf581b22301ab.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.712000;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_6f656c7d049821543c016ad4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;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_95556a1fa06120e5383e79c7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.912598;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_0fcb945cd754019562b369b9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910645;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_ba1464a26c13637c1f9b07f5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.912598;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_bce16b37ce19d69640fd1fc7.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910645;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_629c9458570b880f89d3a7ec.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910645;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_871ea48ccb4473b9d4f9e2e7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.912598;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_be22699de1c7125bcfd07a24.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.910645;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_eeed41034abe634940d8e974.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.912598;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_38bd91a1dd5984fffe2f5297.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910645;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_ee0be90473c7129fa56f474e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.912598;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_abd420387585c2ff2ef7b0dc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910645;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_ef4da5b0789ff51343542569.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.910645;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;}
.v1{vertical-align:20.460000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.042000px;}
.ls0{letter-spacing:20.358000px;}
.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;}
}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-0.102000px;}
.ws4{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:5.250000px;}
.ws3{word-spacing:17.802000px;}
._1{margin-left:-5.189940px;}
._c{width:1.055826px;}
._9{width:2.202060px;}
._6{width:3.245982px;}
._1c{width:4.895982px;}
._14{width:6.138030px;}
._a{width:8.117970px;}
._13{width:9.611976px;}
._15{width:10.692000px;}
._22{width:13.632000px;}
._4{width:15.113970px;}
._7{width:16.350084px;}
._3{width:17.573988px;}
._1d{width:18.701988px;}
._0{width:20.333976px;}
._1f{width:22.464024px;}
._11{width:23.520024px;}
._1a{width:24.978030px;}
._18{width:26.496030px;}
._12{width:28.332012px;}
._b{width:29.387988px;}
._19{width:31.523976px;}
._17{width:33.084018px;}
._10{width:38.669994px;}
._2{width:39.978018px;}
._f{width:43.355994px;}
._21{width:47.297976px;}
._d{width:49.667970px;}
._8{width:51.060012px;}
._1e{width:52.073994px;}
._16{width:53.243982px;}
._1b{width:56.999976px;}
._e{width:58.727988px;}
._5{width:63.239982px;}
._23{width:88.062018px;}
._20{width:97.242024px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:43.560000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:4.144500px;}
.y3f{bottom:5.904000px;}
.y3e{bottom:32.181073px;}
.y42{bottom:37.294500px;}
.y64{bottom:39.526500px;}
.y63{bottom:55.726500px;}
.y3d{bottom:79.999500px;}
.y3c{bottom:99.799500px;}
.y16{bottom:100.207500px;}
.y3b{bottom:119.599500px;}
.y15{bottom:120.007500px;}
.y3a{bottom:139.399500px;}
.y14{bottom:139.807500px;}
.y39{bottom:159.199500px;}
.y13{bottom:159.607500px;}
.y38{bottom:178.999500px;}
.y12{bottom:179.407500px;}
.y37{bottom:198.799500px;}
.y11{bottom:199.207500px;}
.y36{bottom:218.599500px;}
.y10{bottom:219.007500px;}
.y35{bottom:238.399500px;}
.yf{bottom:238.807500px;}
.y34{bottom:258.199500px;}
.ye{bottom:258.607500px;}
.y33{bottom:277.999500px;}
.yd{bottom:278.407500px;}
.y32{bottom:297.799500px;}
.yc{bottom:298.207500px;}
.y31{bottom:317.599500px;}
.yb{bottom:318.007500px;}
.y62{bottom:327.259500px;}
.y30{bottom:337.399500px;}
.ya{bottom:337.807500px;}
.y61{bottom:347.059500px;}
.y2f{bottom:357.199500px;}
.y9{bottom:357.607500px;}
.y60{bottom:366.859500px;}
.y2e{bottom:376.999500px;}
.y2d{bottom:396.799500px;}
.y5f{bottom:406.459500px;}
.y2c{bottom:416.599500px;}
.y8{bottom:420.907500px;}
.y5e{bottom:426.259500px;}
.y2b{bottom:436.399500px;}
.y2a{bottom:456.199500px;}
.y29{bottom:475.999500px;}
.y28{bottom:495.799500px;}
.y5d{bottom:505.459500px;}
.y7{bottom:505.507500px;}
.y27{bottom:515.599500px;}
.y5c{bottom:525.259500px;}
.y6{bottom:525.307500px;}
.y26{bottom:535.399500px;}
.y5b{bottom:545.059500px;}
.y5{bottom:545.107500px;}
.y25{bottom:555.199500px;}
.y5a{bottom:564.859500px;}
.y4{bottom:564.907500px;}
.y24{bottom:574.999500px;}
.y59{bottom:584.659500px;}
.y23{bottom:594.799500px;}
.y22{bottom:614.599500px;}
.y3{bottom:622.207500px;}
.y58{bottom:624.259500px;}
.y21{bottom:634.399500px;}
.y2{bottom:649.507500px;}
.y20{bottom:654.199500px;}
.y57{bottom:663.859500px;}
.y1f{bottom:673.999500px;}
.y56{bottom:683.659500px;}
.y1{bottom:684.307500px;}
.y1e{bottom:693.799500px;}
.y55{bottom:703.459500px;}
.y1d{bottom:713.599500px;}
.y54{bottom:723.259500px;}
.y53{bottom:743.059500px;}
.y52{bottom:762.859500px;}
.y51{bottom:782.659500px;}
.y50{bottom:802.459500px;}
.y1c{bottom:811.321500px;}
.y4f{bottom:822.259500px;}
.y4e{bottom:842.059500px;}
.y4d{bottom:861.859500px;}
.y1b{bottom:869.013000px;}
.y4c{bottom:881.659500px;}
.y1a{bottom:899.793000px;}
.y4b{bottom:901.459500px;}
.y4a{bottom:921.259500px;}
.y49{bottom:941.059500px;}
.y48{bottom:960.859500px;}
.y47{bottom:980.659500px;}
.y19{bottom:980.680500px;}
.y46{bottom:1000.459500px;}
.y45{bottom:1020.259500px;}
.y18{bottom:1033.558500px;}
.y44{bottom:1040.059500px;}
.y43{bottom:1059.859500px;}
.y17{bottom:1088.419500px;}
.y40{bottom:1132.768317px;}
.y65{bottom:1136.922000px;}
.ha{height:18.184500px;}
.h9{height:24.911985px;}
.hb{height:37.520508px;}
.h2{height:45.858398px;}
.h1{height:45.987305px;}
.h8{height:46.200000px;}
.h6{height:49.628906px;}
.h7{height:50.167969px;}
.h3{height:50.726543px;}
.h4{height:54.140625px;}
.h5{height:72.187500px;}
.h0{height:1188.000000px;}
.w1{width:18.000000px;}
.w2{width:242.592000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:71.274000px;}
.x1{left:74.791500px;}
.x2{left:76.080000px;}
.x3{left:507.054000px;}
.x5{left:626.882217px;}
.x4{left:844.724213px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.186667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.037333pt;}
.ls0{letter-spacing:18.096000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-0.090667pt;}
.ws4{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:4.666667pt;}
.ws3{word-spacing:15.824000pt;}
._1{margin-left:-4.613280pt;}
._c{width:0.938512pt;}
._9{width:1.957387pt;}
._6{width:2.885317pt;}
._1c{width:4.351984pt;}
._14{width:5.456027pt;}
._a{width:7.215973pt;}
._13{width:8.543979pt;}
._15{width:9.504000pt;}
._22{width:12.117333pt;}
._4{width:13.434640pt;}
._7{width:14.533408pt;}
._3{width:15.621323pt;}
._1d{width:16.623989pt;}
._0{width:18.074645pt;}
._1f{width:19.968021pt;}
._11{width:20.906688pt;}
._1a{width:22.202693pt;}
._18{width:23.552027pt;}
._12{width:25.184011pt;}
._b{width:26.122656pt;}
._19{width:28.021312pt;}
._17{width:29.408016pt;}
._10{width:34.373328pt;}
._2{width:35.536016pt;}
._f{width:38.538661pt;}
._21{width:42.042645pt;}
._d{width:44.149307pt;}
._8{width:45.386677pt;}
._1e{width:46.287995pt;}
._16{width:47.327984pt;}
._1b{width:50.666645pt;}
._e{width:52.202656pt;}
._5{width:56.213317pt;}
._23{width:78.277349pt;}
._20{width:86.437355pt;}
.fs1{font-size:38.720000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:3.684000pt;}
.y3f{bottom:5.248000pt;}
.y3e{bottom:28.605398pt;}
.y42{bottom:33.150667pt;}
.y64{bottom:35.134667pt;}
.y63{bottom:49.534667pt;}
.y3d{bottom:71.110667pt;}
.y3c{bottom:88.710667pt;}
.y16{bottom:89.073333pt;}
.y3b{bottom:106.310667pt;}
.y15{bottom:106.673333pt;}
.y3a{bottom:123.910667pt;}
.y14{bottom:124.273333pt;}
.y39{bottom:141.510667pt;}
.y13{bottom:141.873333pt;}
.y38{bottom:159.110667pt;}
.y12{bottom:159.473333pt;}
.y37{bottom:176.710667pt;}
.y11{bottom:177.073333pt;}
.y36{bottom:194.310667pt;}
.y10{bottom:194.673333pt;}
.y35{bottom:211.910667pt;}
.yf{bottom:212.273333pt;}
.y34{bottom:229.510667pt;}
.ye{bottom:229.873333pt;}
.y33{bottom:247.110667pt;}
.yd{bottom:247.473333pt;}
.y32{bottom:264.710667pt;}
.yc{bottom:265.073333pt;}
.y31{bottom:282.310667pt;}
.yb{bottom:282.673333pt;}
.y62{bottom:290.897333pt;}
.y30{bottom:299.910667pt;}
.ya{bottom:300.273333pt;}
.y61{bottom:308.497333pt;}
.y2f{bottom:317.510667pt;}
.y9{bottom:317.873333pt;}
.y60{bottom:326.097333pt;}
.y2e{bottom:335.110667pt;}
.y2d{bottom:352.710667pt;}
.y5f{bottom:361.297333pt;}
.y2c{bottom:370.310667pt;}
.y8{bottom:374.140000pt;}
.y5e{bottom:378.897333pt;}
.y2b{bottom:387.910667pt;}
.y2a{bottom:405.510667pt;}
.y29{bottom:423.110667pt;}
.y28{bottom:440.710667pt;}
.y5d{bottom:449.297333pt;}
.y7{bottom:449.340000pt;}
.y27{bottom:458.310667pt;}
.y5c{bottom:466.897333pt;}
.y6{bottom:466.940000pt;}
.y26{bottom:475.910667pt;}
.y5b{bottom:484.497333pt;}
.y5{bottom:484.540000pt;}
.y25{bottom:493.510667pt;}
.y5a{bottom:502.097333pt;}
.y4{bottom:502.140000pt;}
.y24{bottom:511.110667pt;}
.y59{bottom:519.697333pt;}
.y23{bottom:528.710667pt;}
.y22{bottom:546.310667pt;}
.y3{bottom:553.073333pt;}
.y58{bottom:554.897333pt;}
.y21{bottom:563.910667pt;}
.y2{bottom:577.340000pt;}
.y20{bottom:581.510667pt;}
.y57{bottom:590.097333pt;}
.y1f{bottom:599.110667pt;}
.y56{bottom:607.697333pt;}
.y1{bottom:608.273333pt;}
.y1e{bottom:616.710667pt;}
.y55{bottom:625.297333pt;}
.y1d{bottom:634.310667pt;}
.y54{bottom:642.897333pt;}
.y53{bottom:660.497333pt;}
.y52{bottom:678.097333pt;}
.y51{bottom:695.697333pt;}
.y50{bottom:713.297333pt;}
.y1c{bottom:721.174667pt;}
.y4f{bottom:730.897333pt;}
.y4e{bottom:748.497333pt;}
.y4d{bottom:766.097333pt;}
.y1b{bottom:772.456000pt;}
.y4c{bottom:783.697333pt;}
.y1a{bottom:799.816000pt;}
.y4b{bottom:801.297333pt;}
.y4a{bottom:818.897333pt;}
.y49{bottom:836.497333pt;}
.y48{bottom:854.097333pt;}
.y47{bottom:871.697333pt;}
.y19{bottom:871.716000pt;}
.y46{bottom:889.297333pt;}
.y45{bottom:906.897333pt;}
.y18{bottom:918.718667pt;}
.y44{bottom:924.497333pt;}
.y43{bottom:942.097333pt;}
.y17{bottom:967.484000pt;}
.y40{bottom:1006.905171pt;}
.y65{bottom:1010.597333pt;}
.ha{height:16.164000pt;}
.h9{height:22.143987pt;}
.hb{height:33.351562pt;}
.h2{height:40.763021pt;}
.h1{height:40.877604pt;}
.h8{height:41.066667pt;}
.h6{height:44.114583pt;}
.h7{height:44.593750pt;}
.h3{height:45.090260pt;}
.h4{height:48.125000pt;}
.h5{height:64.166667pt;}
.h0{height:1056.000000pt;}
.w1{width:16.000000pt;}
.w2{width:215.637333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:63.354667pt;}
.x1{left:66.481333pt;}
.x2{left:67.626667pt;}
.x3{left:450.714667pt;}
.x5{left:557.228638pt;}
.x4{left:750.865967pt;}
}




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