
    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_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c884281fc9ca640a0f0ade8a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_15859f75c5cf8038a4ebcfa3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2319fd15048cd0ec01602c57.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.881836;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_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_15859f75c5cf8038a4ebcfa3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.881836;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_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_a2d430b44c77fc55aec63b3d.woff2')format("woff");}.ff1c{font-family:ff1c;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;}
.m2{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);}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.md{transform:matrix(0.001008,-0.249998,0.249998,0.001008,0,0);-ms-transform:matrix(0.001008,-0.249998,0.249998,0.001008,0,0);-webkit-transform:matrix(0.001008,-0.249998,0.249998,0.001008,0,0);}
.m8{transform:matrix(0.001175,-0.249997,0.249997,0.001175,0,0);-ms-transform:matrix(0.001175,-0.249997,0.249997,0.001175,0,0);-webkit-transform:matrix(0.001175,-0.249997,0.249997,0.001175,0,0);}
.m9{transform:matrix(0.001295,-0.249997,0.249997,0.001295,0,0);-ms-transform:matrix(0.001295,-0.249997,0.249997,0.001295,0,0);-webkit-transform:matrix(0.001295,-0.249997,0.249997,0.001295,0,0);}
.m5{transform:matrix(0.001582,-0.249995,0.249995,0.001582,0,0);-ms-transform:matrix(0.001582,-0.249995,0.249995,0.001582,0,0);-webkit-transform:matrix(0.001582,-0.249995,0.249995,0.001582,0,0);}
.m6{transform:matrix(0.001942,-0.249992,0.249992,0.001942,0,0);-ms-transform:matrix(0.001942,-0.249992,0.249992,0.001942,0,0);-webkit-transform:matrix(0.001942,-0.249992,0.249992,0.001942,0,0);}
.ma{transform:matrix(0.002012,-0.249992,0.249992,0.002012,0,0);-ms-transform:matrix(0.002012,-0.249992,0.249992,0.002012,0,0);-webkit-transform:matrix(0.002012,-0.249992,0.249992,0.002012,0,0);}
.mb{transform:matrix(0.002277,-0.249990,0.249990,0.002277,0,0);-ms-transform:matrix(0.002277,-0.249990,0.249990,0.002277,0,0);-webkit-transform:matrix(0.002277,-0.249990,0.249990,0.002277,0,0);}
.m7{transform:matrix(0.002350,-0.249989,0.249989,0.002350,0,0);-ms-transform:matrix(0.002350,-0.249989,0.249989,0.002350,0,0);-webkit-transform:matrix(0.002350,-0.249989,0.249989,0.002350,0,0);}
.mc{transform:matrix(0.002373,-0.249989,0.249989,0.002373,0,0);-ms-transform:matrix(0.002373,-0.249989,0.249989,0.002373,0,0);-webkit-transform:matrix(0.002373,-0.249989,0.249989,0.002373,0,0);}
.me{transform:matrix(0.245750,-0.045902,0.045902,0.245750,0,0);-ms-transform:matrix(0.245750,-0.045902,0.045902,0.245750,0,0);-webkit-transform:matrix(0.245750,-0.045902,0.045902,0.245750,0,0);}
.m4{transform:matrix(0.245937,-0.044887,0.044887,0.245937,0,0);-ms-transform:matrix(0.245937,-0.044887,0.044887,0.245937,0,0);-webkit-transform:matrix(0.245937,-0.044887,0.044887,0.245937,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-48.639181px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.258503px;}
.v2{vertical-align:6.253869px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:87.621120px;}
.ws1{word-spacing:88.341120px;}
.ws5{word-spacing:89.061120px;}
.ws3{word-spacing:89.781120px;}
.ws4{word-spacing:101.226240px;}
.ws2{word-spacing:116.346240px;}
.ws8{word-spacing:575.249304px;}
.ws7{word-spacing:596.430848px;}
.ws9{word-spacing:606.948773px;}
._5{width:103.063680px;}
._0{width:104.503680px;}
._3{width:131.068800px;}
._1{width:132.508800px;}
._2{width:177.943680px;}
._4{width:179.383680px;}
.fc1{color:transparent;}
.fc2{color:rgb(152,152,152);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:15.840013px;}
.fs1{font-size:37.440000px;}
.fs2{font-size:43.920050px;}
.fsa{font-size:65.519674px;}
.fsb{font-size:65.519877px;}
.fs3{font-size:65.520002px;}
.fs4{font-size:65.520012px;}
.fs6{font-size:65.520068px;}
.fs8{font-size:65.520157px;}
.fs7{font-size:65.520224px;}
.fs5{font-size:65.520274px;}
.fs0{font-size:74.880000px;}
.fs9{font-size:87.840131px;}
.y1a{bottom:-331.344000px;}
.y3{bottom:-280.344000px;}
.y0{bottom:0.000000px;}
.y5{bottom:2.556000px;}
.y13{bottom:254.880000px;}
.yf{bottom:294.660000px;}
.ye{bottom:335.160000px;}
.y14{bottom:374.760000px;}
.y15{bottom:405.900000px;}
.y3c{bottom:419.316000px;}
.yd{bottom:426.960000px;}
.y12{bottom:427.140000px;}
.yc{bottom:447.120000px;}
.y11{bottom:447.300000px;}
.yb{bottom:468.180000px;}
.y10{bottom:468.360000px;}
.ya{bottom:488.880000px;}
.y9{bottom:509.940000px;}
.y8{bottom:530.640000px;}
.y7{bottom:550.800000px;}
.y16{bottom:591.300000px;}
.y2{bottom:604.356000px;}
.y19{bottom:604.476000px;}
.y17{bottom:612.360000px;}
.y26{bottom:613.356000px;}
.y2f{bottom:620.016000px;}
.y27{bottom:627.756000px;}
.y30{bottom:628.116000px;}
.y18{bottom:632.880000px;}
.y32{bottom:647.376000px;}
.y33{bottom:652.776000px;}
.y31{bottom:652.956000px;}
.y35{bottom:653.676000px;}
.y6{bottom:654.120000px;}
.y34{bottom:654.936000px;}
.y29{bottom:658.356000px;}
.y28{bottom:670.776000px;}
.y21{bottom:747.636000px;}
.y38{bottom:749.256000px;}
.y39{bottom:807.576000px;}
.y20{bottom:810.996000px;}
.y1d{bottom:935.016000px;}
.y22{bottom:936.996000px;}
.y1f{bottom:959.676000px;}
.y1e{bottom:962.376000px;}
.y23{bottom:969.756000px;}
.y3b{bottom:1115.016000px;}
.y3a{bottom:1138.236000px;}
.y37{bottom:1157.316000px;}
.y25{bottom:1158.036000px;}
.y2e{bottom:1166.316000px;}
.y2d{bottom:1170.276000px;}
.y1b{bottom:1179.396000px;}
.y4{bottom:1179.456000px;}
.y2b{bottom:1185.216000px;}
.y36{bottom:1187.016000px;}
.y2c{bottom:1194.576000px;}
.y24{bottom:1209.516000px;}
.y2a{bottom:1222.296000px;}
.y1{bottom:2064.156000px;}
.y1c{bottom:2115.216000px;}
.h12{height:11.168447px;}
.h4{height:26.398125px;}
.h5{height:27.118125px;}
.h7{height:30.967066px;}
.hf{height:46.196489px;}
.h8{height:46.196720px;}
.h9{height:46.196727px;}
.hb{height:46.196767px;}
.h10{height:46.196830px;}
.hc{height:46.196877px;}
.ha{height:46.196912px;}
.h11{height:49.455135px;}
.hd{height:52.450699px;}
.h2{height:54.514688px;}
.he{height:61.934155px;}
.h3{height:1778.940000px;}
.h6{height:1784.976000px;}
.h1{height:1785.750000px;}
.h0{height:1785.786000px;}
.w2{width:2515.860000px;}
.w3{width:2524.798500px;}
.w0{width:2525.638500px;}
.w1{width:2526.000000px;}
.x2{left:-486.421500px;}
.x10{left:-433.740000px;}
.x0{left:0.000000px;}
.x5{left:5.640000px;}
.x1f{left:474.598500px;}
.x2c{left:593.938500px;}
.x23{left:658.378500px;}
.x2b{left:689.158500px;}
.x1a{left:705.718500px;}
.x22{left:766.198500px;}
.x2a{left:772.318500px;}
.x19{left:846.658500px;}
.x21{left:881.398500px;}
.x20{left:893.638500px;}
.x1{left:974.458500px;}
.x13{left:976.020000px;}
.x2d{left:1024.498500px;}
.x1e{left:1044.298500px;}
.x17{left:1119.358500px;}
.x28{left:1124.398500px;}
.x1b{left:1151.758500px;}
.x29{left:1210.438500px;}
.x30{left:1227.178500px;}
.x2e{left:1265.158500px;}
.x18{left:1271.458500px;}
.x16{left:1366.858500px;}
.x25{left:1384.498500px;}
.x27{left:1390.438500px;}
.x15{left:1423.198500px;}
.x2f{left:1447.318500px;}
.x24{left:1460.818500px;}
.x26{left:1501.498500px;}
.x3{left:1549.558500px;}
.x11{left:1551.300000px;}
.x1c{left:1562.518500px;}
.x1d{left:1581.418500px;}
.x34{left:1725.598500px;}
.x35{left:1896.778500px;}
.x14{left:2021.338500px;}
.x31{left:2056.258500px;}
.x6{left:2242.080000px;}
.x7{left:2245.500000px;}
.x8{left:2307.420000px;}
.x9{left:2310.840000px;}
.x33{left:2314.198500px;}
.x32{left:2318.338500px;}
.xa{left:2372.940000px;}
.xb{left:2376.540000px;}
.xc{left:2438.280000px;}
.xe{left:2441.700000px;}
.xd{left:2450.520000px;}
.xf{left:2456.820000px;}
.x12{left:2961.060000px;}
.x4{left:3010.438500px;}
@media print{
.v1{vertical-align:-43.234827pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.896447pt;}
.v2{vertical-align:5.558995pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:77.885440pt;}
.ws1{word-spacing:78.525440pt;}
.ws5{word-spacing:79.165440pt;}
.ws3{word-spacing:79.805440pt;}
.ws4{word-spacing:89.978880pt;}
.ws2{word-spacing:103.418880pt;}
.ws8{word-spacing:511.332714pt;}
.ws7{word-spacing:530.160753pt;}
.ws9{word-spacing:539.510020pt;}
._5{width:91.612160pt;}
._0{width:92.892160pt;}
._3{width:116.505600pt;}
._1{width:117.785600pt;}
._2{width:158.172160pt;}
._4{width:159.452160pt;}
.fsc{font-size:14.080011pt;}
.fs1{font-size:33.280000pt;}
.fs2{font-size:39.040044pt;}
.fsa{font-size:58.239711pt;}
.fsb{font-size:58.239891pt;}
.fs3{font-size:58.240002pt;}
.fs4{font-size:58.240011pt;}
.fs6{font-size:58.240061pt;}
.fs8{font-size:58.240140pt;}
.fs7{font-size:58.240199pt;}
.fs5{font-size:58.240243pt;}
.fs0{font-size:66.560000pt;}
.fs9{font-size:78.080117pt;}
.y1a{bottom:-294.528000pt;}
.y3{bottom:-249.194667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.272000pt;}
.y13{bottom:226.560000pt;}
.yf{bottom:261.920000pt;}
.ye{bottom:297.920000pt;}
.y14{bottom:333.120000pt;}
.y15{bottom:360.800000pt;}
.y3c{bottom:372.725333pt;}
.yd{bottom:379.520000pt;}
.y12{bottom:379.680000pt;}
.yc{bottom:397.440000pt;}
.y11{bottom:397.600000pt;}
.yb{bottom:416.160000pt;}
.y10{bottom:416.320000pt;}
.ya{bottom:434.560000pt;}
.y9{bottom:453.280000pt;}
.y8{bottom:471.680000pt;}
.y7{bottom:489.600000pt;}
.y16{bottom:525.600000pt;}
.y2{bottom:537.205333pt;}
.y19{bottom:537.312000pt;}
.y17{bottom:544.320000pt;}
.y26{bottom:545.205333pt;}
.y2f{bottom:551.125333pt;}
.y27{bottom:558.005333pt;}
.y30{bottom:558.325333pt;}
.y18{bottom:562.560000pt;}
.y32{bottom:575.445333pt;}
.y33{bottom:580.245333pt;}
.y31{bottom:580.405333pt;}
.y35{bottom:581.045333pt;}
.y6{bottom:581.440000pt;}
.y34{bottom:582.165333pt;}
.y29{bottom:585.205333pt;}
.y28{bottom:596.245333pt;}
.y21{bottom:664.565333pt;}
.y38{bottom:666.005333pt;}
.y39{bottom:717.845333pt;}
.y20{bottom:720.885333pt;}
.y1d{bottom:831.125333pt;}
.y22{bottom:832.885333pt;}
.y1f{bottom:853.045333pt;}
.y1e{bottom:855.445333pt;}
.y23{bottom:862.005333pt;}
.y3b{bottom:991.125333pt;}
.y3a{bottom:1011.765333pt;}
.y37{bottom:1028.725333pt;}
.y25{bottom:1029.365333pt;}
.y2e{bottom:1036.725333pt;}
.y2d{bottom:1040.245333pt;}
.y1b{bottom:1048.352000pt;}
.y4{bottom:1048.405333pt;}
.y2b{bottom:1053.525333pt;}
.y36{bottom:1055.125333pt;}
.y2c{bottom:1061.845333pt;}
.y24{bottom:1075.125333pt;}
.y2a{bottom:1086.485333pt;}
.y1{bottom:1834.805333pt;}
.y1c{bottom:1880.192000pt;}
.h12{height:9.927508pt;}
.h4{height:23.465000pt;}
.h5{height:24.105000pt;}
.h7{height:27.526281pt;}
.hf{height:41.063546pt;}
.h8{height:41.063751pt;}
.h9{height:41.063758pt;}
.hb{height:41.063793pt;}
.h10{height:41.063849pt;}
.hc{height:41.063890pt;}
.ha{height:41.063922pt;}
.h11{height:43.960120pt;}
.hd{height:46.622843pt;}
.h2{height:48.457500pt;}
.he{height:55.052582pt;}
.h3{height:1581.280000pt;}
.h6{height:1586.645333pt;}
.h1{height:1587.333333pt;}
.h0{height:1587.365333pt;}
.w2{width:2236.320000pt;}
.w3{width:2244.265333pt;}
.w0{width:2245.012000pt;}
.w1{width:2245.333333pt;}
.x2{left:-432.374667pt;}
.x10{left:-385.546667pt;}
.x0{left:0.000000pt;}
.x5{left:5.013333pt;}
.x1f{left:421.865333pt;}
.x2c{left:527.945333pt;}
.x23{left:585.225333pt;}
.x2b{left:612.585333pt;}
.x1a{left:627.305333pt;}
.x22{left:681.065333pt;}
.x2a{left:686.505333pt;}
.x19{left:752.585333pt;}
.x21{left:783.465333pt;}
.x20{left:794.345333pt;}
.x1{left:866.185333pt;}
.x13{left:867.573333pt;}
.x2d{left:910.665333pt;}
.x1e{left:928.265333pt;}
.x17{left:994.985333pt;}
.x28{left:999.465333pt;}
.x1b{left:1023.785333pt;}
.x29{left:1075.945333pt;}
.x30{left:1090.825333pt;}
.x2e{left:1124.585333pt;}
.x18{left:1130.185333pt;}
.x16{left:1214.985333pt;}
.x25{left:1230.665333pt;}
.x27{left:1235.945333pt;}
.x15{left:1265.065333pt;}
.x2f{left:1286.505333pt;}
.x24{left:1298.505333pt;}
.x26{left:1334.665333pt;}
.x3{left:1377.385333pt;}
.x11{left:1378.933333pt;}
.x1c{left:1388.905333pt;}
.x1d{left:1405.705333pt;}
.x34{left:1533.865333pt;}
.x35{left:1686.025333pt;}
.x14{left:1796.745333pt;}
.x31{left:1827.785333pt;}
.x6{left:1992.960000pt;}
.x7{left:1996.000000pt;}
.x8{left:2051.040000pt;}
.x9{left:2054.080000pt;}
.x33{left:2057.065333pt;}
.x32{left:2060.745333pt;}
.xa{left:2109.280000pt;}
.xb{left:2112.480000pt;}
.xc{left:2167.360000pt;}
.xe{left:2170.400000pt;}
.xd{left:2178.240000pt;}
.xf{left:2183.840000pt;}
.x12{left:2632.053333pt;}
.x4{left:2675.945333pt;}
}




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