
    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_61dd1d38a05172f6274ad19a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_89438f3f3aae1ddb04cd2bb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_0b540f14ff3b52a34b6a087b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_faa93b547bcc17a18f6bcc67.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_2a95249c063fb42d383a5f4d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f9fff6d04f5bedd26378e8cf.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2bbd7cc6f11d770ccdb00b7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686523;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_cfb8fe05c72b7eb995fbe14e.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_82bbedbac96a3792b66a2f6f.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_1f01183583374b7cfba12dc9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_e0bac56a72803bc48d3d6603.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_397b2e4fa52b7deee6eb7644.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_2c25558b7eb09bc6ae5f4fe5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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_99e647a4cc39c58249b8cc1b.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018600px;}
.ls9{letter-spacing:0.166140px;}
.lsb{letter-spacing:0.209264px;}
.ls2{letter-spacing:0.233352px;}
.ls4{letter-spacing:1.397378px;}
.ls1{letter-spacing:3.784341px;}
.lsd{letter-spacing:13.616095px;}
.lsc{letter-spacing:13.645315px;}
.ls6{letter-spacing:46.065102px;}
.lsa{letter-spacing:55.431098px;}
.ls7{letter-spacing:64.047094px;}
.ls8{letter-spacing:64.076494px;}
.ls0{letter-spacing:1286.892170px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-35.855986px;}
.ws3{word-spacing:-32.418587px;}
.ws8{word-spacing:-16.643258px;}
.ws5{word-spacing:-16.613273px;}
.ws4{word-spacing:-16.433993px;}
.ws1{word-spacing:-15.245346px;}
.ws2{word-spacing:-15.011994px;}
.ws0{word-spacing:-13.505755px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-3.119509px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._c{width:2.045804px;}
._2{width:3.456401px;}
._3{width:4.731818px;}
._9{width:6.465339px;}
._5{width:7.965088px;}
._6{width:8.987381px;}
._17{width:10.255672px;}
._b{width:11.292467px;}
._1d{width:12.440389px;}
._e{width:13.772274px;}
._1c{width:15.013619px;}
._10{width:17.498894px;}
._16{width:18.577236px;}
._d{width:20.063597px;}
._11{width:21.444930px;}
._15{width:22.516973px;}
._1a{width:23.570196px;}
._7{width:24.675305px;}
._8{width:26.501487px;}
._1b{width:28.194278px;}
._18{width:34.419246px;}
._f{width:39.770945px;}
._4{width:42.553691px;}
._a{width:43.605961px;}
._19{width:47.343384px;}
._14{width:73.339533px;}
._13{width:75.454880px;}
.fcc{color:transparent;}
.fcb{color:rgb(0,101,204);}
.fca{color:rgb(0,0,255);}
.fc8{color:rgb(44,62,80);}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(83,129,53);}
.fc5{color:rgb(15,17,21);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fc9{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.fs6{font-size:89.999964px;}
.fs5{font-size:99.359960px;}
.fs3{font-size:107.999957px;}
.y6{bottom:-8.639991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y44{bottom:3.599232px;}
.y18{bottom:3.959049px;}
.yb{bottom:3.960038px;}
.y14{bottom:5.579049px;}
.yc{bottom:32.880287px;}
.ya{bottom:51.600240px;}
.y8{bottom:55.560278px;}
.y9{bottom:56.100278px;}
.y68{bottom:124.860250px;}
.y38{bottom:128.280249px;}
.y67{bottom:144.840242px;}
.y37{bottom:148.260241px;}
.ya3{bottom:151.679939px;}
.y66{bottom:164.819934px;}
.y36{bottom:168.239933px;}
.ya2{bottom:171.659931px;}
.y82{bottom:181.379927px;}
.y65{bottom:184.799926px;}
.y35{bottom:188.219925px;}
.ya1{bottom:191.639923px;}
.y64{bottom:204.599918px;}
.y34{bottom:208.199917px;}
.ya0{bottom:211.619915px;}
.y63{bottom:224.579910px;}
.y33{bottom:227.999909px;}
.y9f{bottom:231.599907px;}
.y81{bottom:238.439905px;}
.y9e{bottom:251.399899px;}
.y80{bottom:258.419897px;}
.y62{bottom:264.359894px;}
.y32{bottom:268.499893px;}
.y9d{bottom:271.379891px;}
.y7f{bottom:278.399889px;}
.y9c{bottom:291.359883px;}
.y61{bottom:298.199881px;}
.y9b{bottom:311.339875px;}
.y7e{bottom:317.999873px;}
.y9a{bottom:331.319867px;}
.y31{bottom:334.199866px;}
.y99{bottom:351.299859px;}
.y60{bottom:366.059854px;}
.y23{bottom:370.559852px;}
.y98{bottom:371.099852px;}
.y5f{bottom:386.039846px;}
.y97{bottom:391.079844px;}
.y5e{bottom:406.019838px;}
.y43{bottom:417.000600px;}
.y42{bottom:420.599832px;}
.y5d{bottom:425.999830px;}
.y96{bottom:431.579827px;}
.y5c{bottom:445.799822px;}
.y41{bottom:445.979822px;}
.y7d{bottom:465.599814px;}
.y5b{bottom:465.779814px;}
.y40{bottom:474.779810px;}
.y95{bottom:497.279801px;}
.y3f{bottom:498.899800px;}
.y7c{bottom:499.439800px;}
.y5a{bottom:505.559798px;}
.y22{bottom:518.879792px;}
.y3e{bottom:520.499792px;}
.y94{bottom:554.339778px;}
.y30{bottom:562.439775px;}
.y7b{bottom:567.299773px;}
.y93{bottom:574.319770px;}
.y59{bottom:576.119770px;}
.y2f{bottom:584.039766px;}
.y7a{bottom:587.279765px;}
.y92{bottom:594.299762px;}
.y79{bottom:607.259757px;}
.y58{bottom:612.119755px;}
.y91{bottom:614.099754px;}
.y21{bottom:614.999754px;}
.y2e{bottom:620.219752px;}
.y78{bottom:627.239749px;}
.y90{bottom:634.079746px;}
.y2d{bottom:640.199744px;}
.y77{bottom:647.219741px;}
.y57{bottom:650.639740px;}
.y20{bottom:652.799739px;}
.y2c{bottom:659.999736px;}
.y76{bottom:667.199733px;}
.y1f{bottom:671.159732px;}
.y8f{bottom:674.579730px;}
.yb6{bottom:677.459729px;}
.y2b{bottom:679.979728px;}
.y56{bottom:680.699728px;}
.y75{bottom:687.179725px;}
.y1e{bottom:689.519724px;}
.yb5{bottom:695.279722px;}
.y2a{bottom:699.959720px;}
.y55{bottom:700.679720px;}
.y1d{bottom:706.619717px;}
.yb4{bottom:715.259714px;}
.y74{bottom:715.979714px;}
.y29{bottom:719.939712px;}
.y54{bottom:720.659712px;}
.yb3{bottom:735.239706px;}
.y28{bottom:739.919704px;}
.y8e{bottom:740.279704px;}
.y53{bottom:740.639704px;}
.y1c{bottom:743.159703px;}
.yb2{bottom:755.219698px;}
.y73{bottom:755.759698px;}
.y27{bottom:759.899696px;}
.y52{bottom:760.619696px;}
.yb1{bottom:775.199690px;}
.y1b{bottom:779.879688px;}
.y51{bottom:780.599688px;}
.y72{bottom:789.599684px;}
.yb0{bottom:794.999682px;}
.y8d{bottom:797.339681px;}
.y1a{bottom:798.599681px;}
.y26{bottom:799.679680px;}
.yaf{bottom:814.979674px;}
.y8c{bottom:817.319673px;}
.y50{bottom:818.399673px;}
.y25{bottom:819.659672px;}
.yae{bottom:834.959666px;}
.y8b{bottom:837.299665px;}
.y24{bottom:839.639664px;}
.y19{bottom:841.079664px;}
.yad{bottom:854.939658px;}
.y4f{bottom:856.379657px;}
.y8a{bottom:857.279657px;}
.y71{bottom:859.979656px;}
.y13{bottom:870.960600px;}
.y17{bottom:872.580600px;}
.yac{bottom:874.919650px;}
.y15{bottom:876.359649px;}
.y16{bottom:876.539649px;}
.yab{bottom:894.899642px;}
.y4e{bottom:896.339641px;}
.y89{bottom:897.599641px;}
.y12{bottom:909.479636px;}
.yaa{bottom:914.699634px;}
.y4d{bottom:916.319633px;}
.y70{bottom:925.679630px;}
.y11{bottom:930.719628px;}
.ya9{bottom:934.679626px;}
.y4c{bottom:936.299625px;}
.y10{bottom:949.079620px;}
.ya8{bottom:954.659618px;}
.y88{bottom:963.299615px;}
.yf{bottom:967.439613px;}
.ya7{bottom:974.639610px;}
.y4b{bottom:976.799609px;}
.y6f{bottom:982.739607px;}
.ya6{bottom:994.619602px;}
.ye{bottom:995.339602px;}
.y6e{bottom:1002.719599px;}
.ya5{bottom:1014.599594px;}
.y4a{bottom:1015.499594px;}
.yd{bottom:1019.279592px;}
.y87{bottom:1020.359592px;}
.y6d{bottom:1022.699591px;}
.ya4{bottom:1034.579586px;}
.y86{bottom:1040.339584px;}
.y6c{bottom:1042.679583px;}
.y49{bottom:1054.379578px;}
.y3c{bottom:1057.439577px;}
.y85{bottom:1060.319576px;}
.y6b{bottom:1062.479575px;}
.y48{bottom:1074.359570px;}
.y3b{bottom:1079.399568px;}
.y84{bottom:1080.299568px;}
.y6a{bottom:1082.459567px;}
.y47{bottom:1094.339562px;}
.y3a{bottom:1113.419555px;}
.y46{bottom:1114.319554px;}
.y83{bottom:1120.799552px;}
.y69{bottom:1122.239551px;}
.y45{bottom:1134.299546px;}
.y39{bottom:1144.199542px;}
.y3d{bottom:1150.139540px;}
.y4{bottom:1154.459538px;}
.y7{bottom:1180.739528px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:5.580000px;}
.h13{height:17.820000px;}
.h6{height:18.180000px;}
.ha{height:19.800000px;}
.hf{height:36.624009px;}
.h4{height:36.914048px;}
.h5{height:38.759750px;}
.he{height:39.313461px;}
.hc{height:39.830258px;}
.hd{height:40.851546px;}
.h1{height:41.522679px;}
.h2{height:42.894123px;}
.h10{height:43.506897px;}
.h9{height:44.936701px;}
.h7{height:54.140603px;}
.h12{height:57.585914px;}
.hb{height:60.465210px;}
.h14{height:67.675754px;}
.h8{height:73.828095px;}
.h11{height:74.714033px;}
.h0{height:1263.000000px;}
.w3{width:5.580000px;}
.w2{width:8.820000px;}
.w5{width:13.140000px;}
.w4{width:18.900000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xa{left:84.060000px;}
.x13{left:86.759965px;}
.x10{left:95.939962px;}
.x15{left:99.719960px;}
.xb{left:103.132609px;}
.x11{left:104.219982px;}
.x1{left:107.999957px;}
.x6{left:110.519956px;}
.x14{left:123.299951px;}
.x3{left:132.659947px;}
.x20{left:134.999946px;}
.x12{left:141.479943px;}
.x21{left:161.999935px;}
.xc{left:181.619927px;}
.xd{left:184.499926px;}
.x22{left:188.999924px;}
.x16{left:215.099956px;}
.x17{left:225.719910px;}
.x18{left:233.099907px;}
.x1a{left:236.332405px;}
.xe{left:243.720000px;}
.xf{left:264.952394px;}
.x1d{left:271.619891px;}
.x1e{left:274.859890px;}
.x7{left:283.859886px;}
.x8{left:354.419858px;}
.x19{left:370.619797px;}
.x1b{left:388.079615px;}
.x4{left:431.279827px;}
.x1f{left:565.200000px;}
.x2{left:666.179734px;}
.x1c{left:680.759682px;}
.x5{left:779.040000px;}
.x9{left:784.979686px;}
@media print{
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016533pt;}
.ls9{letter-spacing:0.147680pt;}
.lsb{letter-spacing:0.186013pt;}
.ls2{letter-spacing:0.207424pt;}
.ls4{letter-spacing:1.242113pt;}
.ls1{letter-spacing:3.363859pt;}
.lsd{letter-spacing:12.103195pt;}
.lsc{letter-spacing:12.129168pt;}
.ls6{letter-spacing:40.946757pt;}
.lsa{letter-spacing:49.272087pt;}
.ls7{letter-spacing:56.930751pt;}
.ls8{letter-spacing:56.956884pt;}
.ls0{letter-spacing:1143.904151pt;}
.ws7{word-spacing:-31.871987pt;}
.ws3{word-spacing:-28.816521pt;}
.ws8{word-spacing:-14.794007pt;}
.ws5{word-spacing:-14.767354pt;}
.ws4{word-spacing:-14.607994pt;}
.ws1{word-spacing:-13.551418pt;}
.ws2{word-spacing:-13.343995pt;}
.ws0{word-spacing:-12.005115pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-2.772897pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._c{width:1.818492pt;}
._2{width:3.072357pt;}
._3{width:4.206061pt;}
._9{width:5.746968pt;}
._5{width:7.080078pt;}
._6{width:7.988783pt;}
._17{width:9.116153pt;}
._b{width:10.037749pt;}
._1d{width:11.058123pt;}
._e{width:12.242022pt;}
._1c{width:13.345439pt;}
._10{width:15.554573pt;}
._16{width:16.513098pt;}
._d{width:17.834309pt;}
._11{width:19.062160pt;}
._15{width:20.015087pt;}
._1a{width:20.951286pt;}
._7{width:21.933604pt;}
._8{width:23.556877pt;}
._1b{width:25.061580pt;}
._18{width:30.594885pt;}
._f{width:35.351951pt;}
._4{width:37.825503pt;}
._a{width:38.760854pt;}
._19{width:42.083008pt;}
._14{width:65.190696pt;}
._13{width:67.071004pt;}
.fs1{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.fs6{font-size:79.999968pt;}
.fs5{font-size:88.319965pt;}
.fs3{font-size:95.999962pt;}
.y6{bottom:-7.679992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y44{bottom:3.199317pt;}
.y18{bottom:3.519155pt;}
.yb{bottom:3.520034pt;}
.y14{bottom:4.959155pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:45.866880pt;}
.y8{bottom:49.386914pt;}
.y9{bottom:49.866913pt;}
.y68{bottom:110.986889pt;}
.y38{bottom:114.026888pt;}
.y67{bottom:128.746882pt;}
.y37{bottom:131.786881pt;}
.ya3{bottom:134.826613pt;}
.y66{bottom:146.506608pt;}
.y36{bottom:149.546607pt;}
.ya2{bottom:152.586606pt;}
.y82{bottom:161.226602pt;}
.y65{bottom:164.266601pt;}
.y35{bottom:167.306600pt;}
.ya1{bottom:170.346599pt;}
.y64{bottom:181.866594pt;}
.y34{bottom:185.066593pt;}
.ya0{bottom:188.106591pt;}
.y63{bottom:199.626587pt;}
.y33{bottom:202.666586pt;}
.y9f{bottom:205.866584pt;}
.y81{bottom:211.946582pt;}
.y9e{bottom:223.466577pt;}
.y80{bottom:229.706575pt;}
.y62{bottom:234.986573pt;}
.y32{bottom:238.666571pt;}
.y9d{bottom:241.226570pt;}
.y7f{bottom:247.466568pt;}
.y9c{bottom:258.986563pt;}
.y61{bottom:265.066561pt;}
.y9b{bottom:276.746556pt;}
.y7e{bottom:282.666554pt;}
.y9a{bottom:294.506549pt;}
.y31{bottom:297.066548pt;}
.y99{bottom:312.266542pt;}
.y60{bottom:325.386537pt;}
.y23{bottom:329.386535pt;}
.y98{bottom:329.866535pt;}
.y5f{bottom:343.146529pt;}
.y97{bottom:347.626528pt;}
.y5e{bottom:360.906522pt;}
.y43{bottom:370.667200pt;}
.y42{bottom:373.866517pt;}
.y5d{bottom:378.666515pt;}
.y96{bottom:383.626513pt;}
.y5c{bottom:396.266508pt;}
.y41{bottom:396.426508pt;}
.y7d{bottom:413.866501pt;}
.y5b{bottom:414.026501pt;}
.y40{bottom:422.026498pt;}
.y95{bottom:442.026490pt;}
.y3f{bottom:443.466489pt;}
.y7c{bottom:443.946489pt;}
.y5a{bottom:449.386487pt;}
.y22{bottom:461.226482pt;}
.y3e{bottom:462.666482pt;}
.y94{bottom:492.746470pt;}
.y30{bottom:499.946467pt;}
.y7b{bottom:504.266465pt;}
.y93{bottom:510.506462pt;}
.y59{bottom:512.106462pt;}
.y2f{bottom:519.146459pt;}
.y7a{bottom:522.026458pt;}
.y92{bottom:528.266455pt;}
.y79{bottom:539.786451pt;}
.y58{bottom:544.106449pt;}
.y91{bottom:545.866448pt;}
.y21{bottom:546.666448pt;}
.y2e{bottom:551.306446pt;}
.y78{bottom:557.546444pt;}
.y90{bottom:563.626441pt;}
.y2d{bottom:569.066439pt;}
.y77{bottom:575.306437pt;}
.y57{bottom:578.346435pt;}
.y20{bottom:580.266435pt;}
.y2c{bottom:586.666432pt;}
.y76{bottom:593.066429pt;}
.y1f{bottom:596.586428pt;}
.y8f{bottom:599.626427pt;}
.yb6{bottom:602.186426pt;}
.y2b{bottom:604.426425pt;}
.y56{bottom:605.066425pt;}
.y75{bottom:610.826422pt;}
.y1e{bottom:612.906422pt;}
.yb5{bottom:618.026419pt;}
.y2a{bottom:622.186418pt;}
.y55{bottom:622.826418pt;}
.y1d{bottom:628.106415pt;}
.yb4{bottom:635.786412pt;}
.y74{bottom:636.426412pt;}
.y29{bottom:639.946411pt;}
.y54{bottom:640.586410pt;}
.yb3{bottom:653.546405pt;}
.y28{bottom:657.706404pt;}
.y8e{bottom:658.026403pt;}
.y53{bottom:658.346403pt;}
.y1c{bottom:660.586402pt;}
.yb2{bottom:671.306398pt;}
.y73{bottom:671.786398pt;}
.y27{bottom:675.466396pt;}
.y52{bottom:676.106396pt;}
.yb1{bottom:689.066391pt;}
.y1b{bottom:693.226389pt;}
.y51{bottom:693.866389pt;}
.y72{bottom:701.866386pt;}
.yb0{bottom:706.666384pt;}
.y8d{bottom:708.746383pt;}
.y1a{bottom:709.866383pt;}
.y26{bottom:710.826382pt;}
.yaf{bottom:724.426377pt;}
.y8c{bottom:726.506376pt;}
.y50{bottom:727.466376pt;}
.y25{bottom:728.586375pt;}
.yae{bottom:742.186370pt;}
.y8b{bottom:744.266369pt;}
.y24{bottom:746.346368pt;}
.y19{bottom:747.626368pt;}
.yad{bottom:759.946363pt;}
.y4f{bottom:761.226362pt;}
.y8a{bottom:762.026362pt;}
.y71{bottom:764.426361pt;}
.y13{bottom:774.187200pt;}
.y17{bottom:775.627200pt;}
.yac{bottom:777.706356pt;}
.y15{bottom:778.986355pt;}
.y16{bottom:779.146355pt;}
.yab{bottom:795.466348pt;}
.y4e{bottom:796.746348pt;}
.y89{bottom:797.866348pt;}
.y12{bottom:808.426343pt;}
.yaa{bottom:813.066341pt;}
.y4d{bottom:814.506341pt;}
.y70{bottom:822.826338pt;}
.y11{bottom:827.306336pt;}
.ya9{bottom:830.826334pt;}
.y4c{bottom:832.266334pt;}
.y10{bottom:843.626329pt;}
.ya8{bottom:848.586327pt;}
.y88{bottom:856.266324pt;}
.yf{bottom:859.946323pt;}
.ya7{bottom:866.346320pt;}
.y4b{bottom:868.266319pt;}
.y6f{bottom:873.546317pt;}
.ya6{bottom:884.106313pt;}
.ye{bottom:884.746313pt;}
.y6e{bottom:891.306310pt;}
.ya5{bottom:901.866306pt;}
.y4a{bottom:902.666306pt;}
.yd{bottom:906.026304pt;}
.y87{bottom:906.986304pt;}
.y6d{bottom:909.066303pt;}
.ya4{bottom:919.626299pt;}
.y86{bottom:924.746297pt;}
.y6c{bottom:926.826296pt;}
.y49{bottom:937.226292pt;}
.y3c{bottom:939.946291pt;}
.y85{bottom:942.506290pt;}
.y6b{bottom:944.426289pt;}
.y48{bottom:954.986285pt;}
.y3b{bottom:959.466283pt;}
.y84{bottom:960.266283pt;}
.y6a{bottom:962.186282pt;}
.y47{bottom:972.746278pt;}
.y3a{bottom:989.706271pt;}
.y46{bottom:990.506270pt;}
.y83{bottom:996.266268pt;}
.y69{bottom:997.546268pt;}
.y45{bottom:1008.266263pt;}
.y39{bottom:1017.066260pt;}
.y3d{bottom:1022.346258pt;}
.y4{bottom:1026.186256pt;}
.y7{bottom:1049.546247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:4.960000pt;}
.h13{height:15.840000pt;}
.h6{height:16.160000pt;}
.ha{height:17.600000pt;}
.hf{height:32.554674pt;}
.h4{height:32.812487pt;}
.h5{height:34.453111pt;}
.he{height:34.945299pt;}
.hc{height:35.404673pt;}
.hd{height:36.312485pt;}
.h1{height:36.909048pt;}
.h2{height:38.128110pt;}
.h10{height:38.672797pt;}
.h9{height:39.943734pt;}
.h7{height:48.124981pt;}
.h12{height:51.187480pt;}
.hb{height:53.746854pt;}
.h14{height:60.156226pt;}
.h8{height:65.624974pt;}
.h11{height:66.412473pt;}
.h0{height:1122.666667pt;}
.w3{width:4.960000pt;}
.w2{width:7.840000pt;}
.w5{width:11.680000pt;}
.w4{width:16.800000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xa{left:74.720000pt;}
.x13{left:77.119969pt;}
.x10{left:85.279966pt;}
.x15{left:88.639965pt;}
.xb{left:91.673430pt;}
.x11{left:92.639984pt;}
.x1{left:95.999962pt;}
.x6{left:98.239961pt;}
.x14{left:109.599956pt;}
.x3{left:117.919953pt;}
.x20{left:119.999952pt;}
.x12{left:125.759950pt;}
.x21{left:143.999942pt;}
.xc{left:161.439935pt;}
.xd{left:163.999934pt;}
.x22{left:167.999933pt;}
.x16{left:191.199961pt;}
.x17{left:200.639920pt;}
.x18{left:207.199917pt;}
.x1a{left:210.073249pt;}
.xe{left:216.640000pt;}
.xf{left:235.513239pt;}
.x1d{left:241.439903pt;}
.x1e{left:244.319902pt;}
.x7{left:252.319899pt;}
.x8{left:315.039874pt;}
.x19{left:329.439819pt;}
.x1b{left:344.959658pt;}
.x4{left:383.359847pt;}
.x1f{left:502.400000pt;}
.x2{left:592.159763pt;}
.x1c{left:605.119717pt;}
.x5{left:692.480000pt;}
.x9{left:697.759721pt;}
}




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