
    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_ee876192364a9ef2dadd4de7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_591ca99da74628556282f5c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_b0b729fc630cee16280fb73f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.364746;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_143a179da188e22d8fcc90ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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;}
.mc{transform:matrix(0.213483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213483,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.317901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317901,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.322289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322289,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.367284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367284,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-10.539825px;}
.ls1b{letter-spacing:-4.725000px;}
.lsb{letter-spacing:-3.990000px;}
.ls19{letter-spacing:-3.937500px;}
.ls1a{letter-spacing:-3.191850px;}
.ls18{letter-spacing:-3.150000px;}
.ls1d{letter-spacing:-3.061800px;}
.ls13{letter-spacing:-2.362500px;}
.ls1e{letter-spacing:-1.767825px;}
.ls15{letter-spacing:-1.575000px;}
.ls1c{letter-spacing:-1.164075px;}
.lsa{letter-spacing:-0.795600px;}
.ls11{letter-spacing:-0.787500px;}
.ls1f{letter-spacing:-0.762300px;}
.lsd{letter-spacing:-0.762000px;}
.lse{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.762000px;}
.ls5{letter-spacing:0.787500px;}
.ls12{letter-spacing:0.801450px;}
.lsc{letter-spacing:0.840825px;}
.ls0{letter-spacing:1.518000px;}
.ls4{letter-spacing:1.575000px;}
.ls10{letter-spacing:1.696350px;}
.ls2{letter-spacing:2.362500px;}
.lsf{letter-spacing:2.488500px;}
.ls16{letter-spacing:2.967300px;}
.ls3{letter-spacing:3.150000px;}
.ls7{letter-spacing:3.937500px;}
.ls17{letter-spacing:4.056000px;}
.ls6{letter-spacing:4.725000px;}
.ls9{letter-spacing:5.512500px;}
.ls8{letter-spacing:7.087500px;}
.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;}
._18{margin-left:-2.942310px;}
._17{margin-left:-1.899000px;}
._d{width:1.167000px;}
._f{width:2.478000px;}
._16{width:3.591000px;}
._9{width:5.404770px;}
._6{width:7.380000px;}
._5{width:8.694000px;}
._4{width:10.500000px;}
._a{width:11.583000px;}
._8{width:12.663000px;}
._7{width:13.923000px;}
._c{width:15.387000px;}
._b{width:16.504500px;}
._14{width:17.523000px;}
._e{width:18.805500px;}
._1a{width:20.065500px;}
._0{width:21.222000px;}
._2{width:23.064000px;}
._1{width:24.300000px;}
._3{width:25.434000px;}
._11{width:27.720000px;}
._15{width:29.338500px;}
._13{width:30.492000px;}
._12{width:32.004000px;}
._10{width:33.642000px;}
._19{width:62.055000px;}
.fc0{color:transparent;}
.fsc{font-size:57.750000px;}
.fs8{font-size:58.500000px;}
.fs5{font-size:59.250000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:60.750000px;}
.fs9{font-size:61.500000px;}
.fsb{font-size:62.250000px;}
.fs4{font-size:63.000000px;}
.fs6{font-size:64.500000px;}
.fsa{font-size:66.750000px;}
.fs1{font-size:75.000000px;}
.fs2{font-size:75.750000px;}
.fs0{font-size:76.500000px;}
.y0{bottom:0.000000px;}
.y85{bottom:33.919350px;}
.y86{bottom:33.975300px;}
.y44{bottom:35.389050px;}
.y84{bottom:49.763850px;}
.y43{bottom:51.595800px;}
.y42{bottom:67.440300px;}
.y41{bottom:83.284800px;}
.y40{bottom:99.129300px;}
.y83{bottom:106.290600px;}
.y3f{bottom:115.336050px;}
.y82{bottom:122.135100px;}
.y3e{bottom:130.456050px;}
.y3d{bottom:131.176200px;}
.y81{bottom:137.979600px;}
.y3c{bottom:146.953200px;}
.y80{bottom:154.186350px;}
.y3b{bottom:163.159950px;}
.y7f{bottom:170.393100px;}
.y3a{bottom:179.366700px;}
.y7e{bottom:186.946350px;}
.y39{bottom:195.573450px;}
.y7d{bottom:203.153100px;}
.y38{bottom:211.780200px;}
.y7c{bottom:219.359850px;}
.y37{bottom:227.986950px;}
.y7b{bottom:235.566600px;}
.y36{bottom:243.831450px;}
.y7a{bottom:251.411100px;}
.y35{bottom:260.038200px;}
.y79{bottom:267.255600px;}
.y78{bottom:267.614850px;}
.y34{bottom:275.882700px;}
.y77{bottom:283.426800px;}
.y33{bottom:292.089450px;}
.y76{bottom:299.633550px;}
.y31{bottom:307.935300px;}
.y32{bottom:308.296200px;}
.y75{bottom:315.840300px;}
.y30{bottom:324.112950px;}
.y74{bottom:332.047050px;}
.y2f{bottom:340.319700px;}
.y73{bottom:347.891550px;}
.y2e{bottom:356.164200px;}
.y72{bottom:364.098300px;}
.y2d{bottom:372.544200px;}
.y71{bottom:379.942800px;}
.y2c{bottom:388.561950px;}
.y6f{bottom:396.135150px;}
.y70{bottom:396.496050px;}
.y2b{bottom:404.406450px;}
.y6e{bottom:411.976500px;}
.y2a{bottom:420.613200px;}
.y6d{bottom:428.183250px;}
.y29{bottom:436.819950px;}
.y6b{bottom:444.733050px;}
.y6c{bottom:444.736500px;}
.y28{bottom:453.373200px;}
.y6a{bottom:460.939800px;}
.y27{bottom:469.579950px;}
.y69{bottom:477.855300px;}
.y25{bottom:485.775300px;}
.y26{bottom:486.495450px;}
.y68{bottom:494.051100px;}
.y24{bottom:502.335600px;}
.y67{bottom:509.895600px;}
.y22{bottom:518.521800px;}
.y23{bottom:518.535000px;}
.y66{bottom:526.448850px;}
.y21{bottom:534.728550px;}
.y65{bottom:542.655600px;}
.y20{bottom:550.935300px;}
.y64{bottom:559.208850px;}
.y1f{bottom:567.136200px;}
.y63{bottom:575.402400px;}
.y1e{bottom:583.675500px;}
.y62{bottom:591.609150px;}
.y1d{bottom:599.882250px;}
.y61{bottom:607.827600px;}
.y1c{bottom:616.435500px;}
.y60{bottom:624.380850px;}
.y1b{bottom:632.642250px;}
.y5f{bottom:640.934100px;}
.y1a{bottom:648.849000px;}
.y5e{bottom:656.778600px;}
.y19{bottom:665.055750px;}
.y18{bottom:665.062350px;}
.y5d{bottom:672.985350px;}
.y17{bottom:681.615600px;}
.y5c{bottom:689.538600px;}
.y16{bottom:697.822350px;}
.y5b{bottom:706.091850px;}
.y15{bottom:714.375600px;}
.y5a{bottom:722.298600px;}
.y14{bottom:730.928850px;}
.y59{bottom:739.214100px;}
.y13{bottom:747.135600px;}
.y58{bottom:755.420850px;}
.y12{bottom:763.342350px;}
.y57{bottom:771.974100px;}
.y11{bottom:779.549100px;}
.y56{bottom:788.180850px;}
.y10{bottom:797.362350px;}
.y55{bottom:804.734100px;}
.yf{bottom:812.655600px;}
.y54{bottom:820.940850px;}
.ye{bottom:829.208850px;}
.y53{bottom:837.856350px;}
.yd{bottom:845.415600px;}
.yc{bottom:845.431650px;}
.y52{bottom:854.040000px;}
.yb{bottom:861.984900px;}
.y51{bottom:870.246750px;}
.ya{bottom:878.191650px;}
.y50{bottom:886.453500px;}
.y9{bottom:894.744900px;}
.y4f{bottom:902.660250px;}
.y8{bottom:910.589400px;}
.y4e{bottom:919.213500px;}
.y7{bottom:927.142650px;}
.y4d{bottom:935.420250px;}
.y6{bottom:943.695900px;}
.y4c{bottom:951.973500px;}
.y5{bottom:960.256200px;}
.y4b{bottom:968.180250px;}
.y4a{bottom:985.095750px;}
.y49{bottom:1000.911300px;}
.y48{bottom:1017.464550px;}
.y4{bottom:1032.255150px;}
.y3{bottom:1032.255300px;}
.y47{bottom:1033.671300px;}
.y2{bottom:1048.815300px;}
.y46{bottom:1050.224550px;}
.y45{bottom:1066.431300px;}
.y1{bottom:1068.976350px;}
.h10{height:60.231445px;}
.ha{height:61.013672px;}
.h7{height:61.795898px;}
.h5{height:62.578125px;}
.h9{height:63.360352px;}
.hd{height:63.492188px;}
.hb{height:64.142578px;}
.hf{height:64.924805px;}
.h6{height:65.707031px;}
.he{height:65.759831px;}
.hc{height:65.967773px;}
.h8{height:67.271484px;}
.h3{height:78.222656px;}
.h4{height:79.004883px;}
.h2{height:79.787109px;}
.h11{height:1092.000000px;}
.h1{height:1104.000000px;}
.h0{height:1104.031050px;}
.w2{width:979.500000px;}
.w0{width:980.912565px;}
.w1{width:981.000000px;}
.x0{left:0.000000px;}
.x9{left:152.016000px;}
.xe{left:153.093000px;}
.x1{left:154.166550px;}
.x4{left:155.252700px;}
.x8{left:176.496150px;}
.xf{left:177.603000px;}
.x12{left:205.291500px;}
.x14{left:206.377950px;}
.x2{left:290.248200px;}
.x3{left:320.486100px;}
.x5{left:330.935400px;}
.x6{left:362.258550px;}
.x7{left:376.656000px;}
.xa{left:384.578400px;}
.xb{left:400.414800px;}
.xc{left:420.938700px;}
.x10{left:427.419750px;}
.xd{left:436.413000px;}
.x11{left:450.803250px;}
.x13{left:532.187400px;}
.x1f{left:576.802350px;}
.x1d{left:578.272500px;}
.x15{left:579.367800px;}
.x16{left:603.098100px;}
.x18{left:604.191000px;}
.x20{left:626.138100px;}
.x19{left:628.647300px;}
.x17{left:631.176750px;}
.x1c{left:632.617500px;}
.x1e{left:635.857350px;}
.x21{left:640.895100px;}
.x22{left:749.973600px;}
.x1a{left:807.199200px;}
.x1b{left:822.693900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-9.368733pt;}
.ls1b{letter-spacing:-4.200000pt;}
.lsb{letter-spacing:-3.546667pt;}
.ls19{letter-spacing:-3.500000pt;}
.ls1a{letter-spacing:-2.837200pt;}
.ls18{letter-spacing:-2.800000pt;}
.ls1d{letter-spacing:-2.721600pt;}
.ls13{letter-spacing:-2.100000pt;}
.ls1e{letter-spacing:-1.571400pt;}
.ls15{letter-spacing:-1.400000pt;}
.ls1c{letter-spacing:-1.034733pt;}
.lsa{letter-spacing:-0.707200pt;}
.ls11{letter-spacing:-0.700000pt;}
.ls1f{letter-spacing:-0.677600pt;}
.lsd{letter-spacing:-0.677333pt;}
.lse{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.677333pt;}
.ls5{letter-spacing:0.700000pt;}
.ls12{letter-spacing:0.712400pt;}
.lsc{letter-spacing:0.747400pt;}
.ls0{letter-spacing:1.349333pt;}
.ls4{letter-spacing:1.400000pt;}
.ls10{letter-spacing:1.507867pt;}
.ls2{letter-spacing:2.100000pt;}
.lsf{letter-spacing:2.212000pt;}
.ls16{letter-spacing:2.637600pt;}
.ls3{letter-spacing:2.800000pt;}
.ls7{letter-spacing:3.500000pt;}
.ls17{letter-spacing:3.605333pt;}
.ls6{letter-spacing:4.200000pt;}
.ls9{letter-spacing:4.900000pt;}
.ls8{letter-spacing:6.300000pt;}
.ws0{word-spacing:0.000000pt;}
._18{margin-left:-2.615387pt;}
._17{margin-left:-1.688000pt;}
._d{width:1.037333pt;}
._f{width:2.202667pt;}
._16{width:3.192000pt;}
._9{width:4.804240pt;}
._6{width:6.560000pt;}
._5{width:7.728000pt;}
._4{width:9.333333pt;}
._a{width:10.296000pt;}
._8{width:11.256000pt;}
._7{width:12.376000pt;}
._c{width:13.677333pt;}
._b{width:14.670667pt;}
._14{width:15.576000pt;}
._e{width:16.716000pt;}
._1a{width:17.836000pt;}
._0{width:18.864000pt;}
._2{width:20.501333pt;}
._1{width:21.600000pt;}
._3{width:22.608000pt;}
._11{width:24.640000pt;}
._15{width:26.078667pt;}
._13{width:27.104000pt;}
._12{width:28.448000pt;}
._10{width:29.904000pt;}
._19{width:55.160000pt;}
.fsc{font-size:51.333333pt;}
.fs8{font-size:52.000000pt;}
.fs5{font-size:52.666667pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:54.000000pt;}
.fs9{font-size:54.666667pt;}
.fsb{font-size:55.333333pt;}
.fs4{font-size:56.000000pt;}
.fs6{font-size:57.333333pt;}
.fsa{font-size:59.333333pt;}
.fs1{font-size:66.666667pt;}
.fs2{font-size:67.333333pt;}
.fs0{font-size:68.000000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:30.150533pt;}
.y86{bottom:30.200267pt;}
.y44{bottom:31.456933pt;}
.y84{bottom:44.234533pt;}
.y43{bottom:45.862933pt;}
.y42{bottom:59.946933pt;}
.y41{bottom:74.030933pt;}
.y40{bottom:88.114933pt;}
.y83{bottom:94.480533pt;}
.y3f{bottom:102.520933pt;}
.y82{bottom:108.564533pt;}
.y3e{bottom:115.960933pt;}
.y3d{bottom:116.601067pt;}
.y81{bottom:122.648533pt;}
.y3c{bottom:130.625067pt;}
.y80{bottom:137.054533pt;}
.y3b{bottom:145.031067pt;}
.y7f{bottom:151.460533pt;}
.y3a{bottom:159.437067pt;}
.y7e{bottom:166.174533pt;}
.y39{bottom:173.843067pt;}
.y7d{bottom:180.580533pt;}
.y38{bottom:188.249067pt;}
.y7c{bottom:194.986533pt;}
.y37{bottom:202.655067pt;}
.y7b{bottom:209.392533pt;}
.y36{bottom:216.739067pt;}
.y7a{bottom:223.476533pt;}
.y35{bottom:231.145067pt;}
.y79{bottom:237.560533pt;}
.y78{bottom:237.879867pt;}
.y34{bottom:245.229067pt;}
.y77{bottom:251.934933pt;}
.y33{bottom:259.635067pt;}
.y76{bottom:266.340933pt;}
.y31{bottom:273.720267pt;}
.y32{bottom:274.041067pt;}
.y75{bottom:280.746933pt;}
.y30{bottom:288.100400pt;}
.y74{bottom:295.152933pt;}
.y2f{bottom:302.506400pt;}
.y73{bottom:309.236933pt;}
.y2e{bottom:316.590400pt;}
.y72{bottom:323.642933pt;}
.y2d{bottom:331.150400pt;}
.y71{bottom:337.726933pt;}
.y2c{bottom:345.388400pt;}
.y6f{bottom:352.120133pt;}
.y70{bottom:352.440933pt;}
.y2b{bottom:359.472400pt;}
.y6e{bottom:366.201333pt;}
.y2a{bottom:373.878400pt;}
.y6d{bottom:380.607333pt;}
.y29{bottom:388.284400pt;}
.y6b{bottom:395.318267pt;}
.y6c{bottom:395.321333pt;}
.y28{bottom:402.998400pt;}
.y6a{bottom:409.724267pt;}
.y27{bottom:417.404400pt;}
.y69{bottom:424.760267pt;}
.y25{bottom:431.800267pt;}
.y26{bottom:432.440400pt;}
.y68{bottom:439.156533pt;}
.y24{bottom:446.520533pt;}
.y67{bottom:453.240533pt;}
.y22{bottom:460.908267pt;}
.y23{bottom:460.920000pt;}
.y66{bottom:467.954533pt;}
.y21{bottom:475.314267pt;}
.y65{bottom:482.360533pt;}
.y20{bottom:489.720267pt;}
.y64{bottom:497.074533pt;}
.y1f{bottom:504.121067pt;}
.y63{bottom:511.468800pt;}
.y1e{bottom:518.822667pt;}
.y62{bottom:525.874800pt;}
.y1d{bottom:533.228667pt;}
.y61{bottom:540.291200pt;}
.y1c{bottom:547.942667pt;}
.y60{bottom:555.005200pt;}
.y1b{bottom:562.348667pt;}
.y5f{bottom:569.719200pt;}
.y1a{bottom:576.754667pt;}
.y5e{bottom:583.803200pt;}
.y19{bottom:591.160667pt;}
.y18{bottom:591.166533pt;}
.y5d{bottom:598.209200pt;}
.y17{bottom:605.880533pt;}
.y5c{bottom:612.923200pt;}
.y16{bottom:620.286533pt;}
.y5b{bottom:627.637200pt;}
.y15{bottom:635.000533pt;}
.y5a{bottom:642.043200pt;}
.y14{bottom:649.714533pt;}
.y59{bottom:657.079200pt;}
.y13{bottom:664.120533pt;}
.y58{bottom:671.485200pt;}
.y12{bottom:678.526533pt;}
.y57{bottom:686.199200pt;}
.y11{bottom:692.932533pt;}
.y56{bottom:700.605200pt;}
.y10{bottom:708.766533pt;}
.y55{bottom:715.319200pt;}
.yf{bottom:722.360533pt;}
.y54{bottom:729.725200pt;}
.ye{bottom:737.074533pt;}
.y53{bottom:744.761200pt;}
.yd{bottom:751.480533pt;}
.yc{bottom:751.494800pt;}
.y52{bottom:759.146667pt;}
.yb{bottom:766.208800pt;}
.y51{bottom:773.552667pt;}
.ya{bottom:780.614800pt;}
.y50{bottom:787.958667pt;}
.y9{bottom:795.328800pt;}
.y4f{bottom:802.364667pt;}
.y8{bottom:809.412800pt;}
.y4e{bottom:817.078667pt;}
.y7{bottom:824.126800pt;}
.y4d{bottom:831.484667pt;}
.y6{bottom:838.840800pt;}
.y4c{bottom:846.198667pt;}
.y5{bottom:853.561067pt;}
.y4b{bottom:860.604667pt;}
.y4a{bottom:875.640667pt;}
.y49{bottom:889.698933pt;}
.y48{bottom:904.412933pt;}
.y4{bottom:917.560133pt;}
.y3{bottom:917.560267pt;}
.y47{bottom:918.818933pt;}
.y2{bottom:932.280267pt;}
.y46{bottom:933.532933pt;}
.y45{bottom:947.938933pt;}
.y1{bottom:950.201200pt;}
.h10{height:53.539062pt;}
.ha{height:54.234375pt;}
.h7{height:54.929688pt;}
.h5{height:55.625000pt;}
.h9{height:56.320312pt;}
.hd{height:56.437500pt;}
.hb{height:57.015625pt;}
.hf{height:57.710938pt;}
.h6{height:58.406250pt;}
.he{height:58.453183pt;}
.hc{height:58.638021pt;}
.h8{height:59.796875pt;}
.h3{height:69.531250pt;}
.h4{height:70.226562pt;}
.h2{height:70.921875pt;}
.h11{height:970.666667pt;}
.h1{height:981.333333pt;}
.h0{height:981.360933pt;}
.w2{width:870.666667pt;}
.w0{width:871.922280pt;}
.w1{width:872.000000pt;}
.x0{left:0.000000pt;}
.x9{left:135.125333pt;}
.xe{left:136.082667pt;}
.x1{left:137.036933pt;}
.x4{left:138.002400pt;}
.x8{left:156.885467pt;}
.xf{left:157.869333pt;}
.x12{left:182.481333pt;}
.x14{left:183.447067pt;}
.x2{left:257.998400pt;}
.x3{left:284.876533pt;}
.x5{left:294.164800pt;}
.x6{left:322.007600pt;}
.x7{left:334.805333pt;}
.xa{left:341.847467pt;}
.xb{left:355.924267pt;}
.xc{left:374.167733pt;}
.x10{left:379.928667pt;}
.xd{left:387.922667pt;}
.x11{left:400.714000pt;}
.x13{left:473.055467pt;}
.x1f{left:512.713200pt;}
.x1d{left:514.020000pt;}
.x15{left:514.993600pt;}
.x16{left:536.087200pt;}
.x18{left:537.058667pt;}
.x20{left:556.567200pt;}
.x19{left:558.797600pt;}
.x17{left:561.046000pt;}
.x1c{left:562.326667pt;}
.x1e{left:565.206533pt;}
.x21{left:569.684533pt;}
.x22{left:666.643200pt;}
.x1a{left:717.510400pt;}
.x1b{left:731.283467pt;}
}




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