
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_7d0d593a088d49ac3d3cdb55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_db411a936e1095b1004d7527.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_0c24163cd4a0cf9341798ee8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_41704354a97e06127cec777f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_247a2e18946ba8fa4a12cc5c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921875;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_8dd1e4b3528a467bb2374e5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_9a9cba4cbc948d457db1937a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_5d4b068fb372fda45087fdfc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls5{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.379920px;}
.ls9{letter-spacing:0.493800px;}
.lse{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.833200px;}
.wsc{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.ws8{word-spacing:-10.933800px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.720000px;}
.wsa{word-spacing:-8.928000px;}
.wse{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.414320px;}
._2{width:2.594400px;}
._3{width:4.428000px;}
._6{width:6.426000px;}
._5{width:7.938000px;}
._8{width:9.072000px;}
._7{width:10.152000px;}
._a{width:11.952000px;}
._9{width:13.206960px;}
._4{width:14.580000px;}
._17{width:16.068000px;}
._12{width:17.226000px;}
._13{width:18.293520px;}
._14{width:19.342320px;}
._11{width:21.542640px;}
._10{width:23.082480px;}
._15{width:24.158160px;}
._16{width:25.473600px;}
._d{width:26.732640px;}
._e{width:27.907920px;}
._b{width:35.802000px;}
._f{width:42.847920px;}
._c{width:201.060000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y49{bottom:2.340000px;}
.y5{bottom:3.780000px;}
.y56{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y48{bottom:11.700000px;}
.y3f{bottom:15.840000px;}
.y54{bottom:19.080000px;}
.y4{bottom:22.710000px;}
.y3e{bottom:34.380000px;}
.y53{bottom:34.740000px;}
.y3{bottom:47.910000px;}
.y47{bottom:49.140000px;}
.y52{bottom:50.220000px;}
.y3d{bottom:53.145000px;}
.y7{bottom:57.060000px;}
.y46{bottom:58.854000px;}
.y51{bottom:68.034000px;}
.y3c{bottom:71.685000px;}
.y45{bottom:79.734000px;}
.y50{bottom:83.514000px;}
.y3b{bottom:90.405000px;}
.y44{bottom:92.694000px;}
.y8c{bottom:93.816000px;}
.y40{bottom:94.536000px;}
.y4f{bottom:101.334000px;}
.y43{bottom:105.654000px;}
.y3a{bottom:108.945000px;}
.y8b{bottom:112.356000px;}
.y4e{bottom:116.814000px;}
.y39{bottom:127.485000px;}
.y8a{bottom:130.896000px;}
.y4d{bottom:132.294000px;}
.yb3{bottom:141.876000px;}
.y38{bottom:146.205000px;}
.y4c{bottom:147.774000px;}
.y89{bottom:149.616000px;}
.yb2{bottom:159.150000px;}
.y4b{bottom:163.434000px;}
.y37{bottom:164.745000px;}
.y42{bottom:167.754000px;}
.y88{bottom:168.150000px;}
.yb1{bottom:176.430000px;}
.y41{bottom:178.194000px;}
.y4a{bottom:178.914000px;}
.y36{bottom:183.465000px;}
.y87{bottom:186.870000px;}
.yb0{bottom:193.710000px;}
.y35{bottom:202.005000px;}
.y86{bottom:205.410000px;}
.yaf{bottom:210.990000px;}
.y34{bottom:220.725000px;}
.y85{bottom:223.950000px;}
.yae{bottom:228.090000px;}
.y33{bottom:239.265000px;}
.y84{bottom:242.670000px;}
.yad{bottom:245.370000px;}
.y32{bottom:257.805000px;}
.y83{bottom:261.210000px;}
.yac{bottom:262.650000px;}
.y31{bottom:276.525000px;}
.y82{bottom:279.930000px;}
.y30{bottom:295.065000px;}
.y81{bottom:298.470000px;}
.yf{bottom:302.970000px;}
.y1d{bottom:305.355000px;}
.y2f{bottom:313.815000px;}
.y80{bottom:317.190000px;}
.yab{bottom:326.190000px;}
.y1c{bottom:329.475000px;}
.y2e{bottom:332.355000px;}
.y7f{bottom:335.730000px;}
.yaa{bottom:344.775000px;}
.y2d{bottom:350.895000px;}
.y1b{bottom:353.595000px;}
.y7e{bottom:354.315000px;}
.ya9{bottom:363.315000px;}
.y2c{bottom:369.615000px;}
.y7d{bottom:373.035000px;}
.y1a{bottom:377.895000px;}
.ya8{bottom:382.035000px;}
.y2b{bottom:388.155000px;}
.y7c{bottom:391.575000px;}
.ya7{bottom:400.575000px;}
.y19{bottom:402.015000px;}
.y7b{bottom:410.295000px;}
.y2a{bottom:415.335000px;}
.ya6{bottom:419.295000px;}
.y18{bottom:426.135000px;}
.y7a{bottom:428.835000px;}
.y29{bottom:432.075000px;}
.ya5{bottom:437.835000px;}
.y79{bottom:447.375000px;}
.y28{bottom:448.815000px;}
.y17{bottom:450.255000px;}
.ya4{bottom:456.375000px;}
.y27{bottom:465.735000px;}
.y78{bottom:466.095000px;}
.y16{bottom:474.375000px;}
.ya3{bottom:475.095000px;}
.y26{bottom:482.475000px;}
.y77{bottom:484.635000px;}
.ya2{bottom:493.635000px;}
.y15{bottom:498.495000px;}
.y25{bottom:499.215000px;}
.y76{bottom:503.355000px;}
.ya1{bottom:512.355000px;}
.y24{bottom:515.955000px;}
.y75{bottom:521.895000px;}
.y14{bottom:522.795000px;}
.ya0{bottom:530.895000px;}
.y23{bottom:532.695000px;}
.y74{bottom:540.435000px;}
.y13{bottom:546.915000px;}
.y22{bottom:549.435000px;}
.y73{bottom:559.155000px;}
.y21{bottom:566.220000px;}
.y9f{bottom:568.155000px;}
.y12{bottom:571.080000px;}
.y72{bottom:577.695000px;}
.y20{bottom:582.960000px;}
.y9e{bottom:586.695000px;}
.y11{bottom:595.200000px;}
.y71{bottom:596.415000px;}
.y1f{bottom:599.700000px;}
.y9d{bottom:605.445000px;}
.y70{bottom:614.985000px;}
.y1e{bottom:616.440000px;}
.y10{bottom:619.320000px;}
.y9c{bottom:623.985000px;}
.y6f{bottom:633.705000px;}
.y9b{bottom:642.705000px;}
.y6e{bottom:652.245000px;}
.y9a{bottom:661.245000px;}
.y6d{bottom:670.785000px;}
.y99{bottom:679.785000px;}
.y6c{bottom:689.505000px;}
.y98{bottom:698.505000px;}
.y6b{bottom:708.045000px;}
.y97{bottom:717.045000px;}
.y6a{bottom:726.765000px;}
.y96{bottom:735.765000px;}
.y69{bottom:745.305000px;}
.y95{bottom:754.305000px;}
.y68{bottom:763.845000px;}
.y94{bottom:772.845000px;}
.y67{bottom:782.565000px;}
.y93{bottom:791.565000px;}
.y66{bottom:801.105000px;}
.y92{bottom:810.105000px;}
.y65{bottom:819.825000px;}
.y91{bottom:828.825000px;}
.y64{bottom:838.365000px;}
.y90{bottom:847.365000px;}
.y63{bottom:856.905000px;}
.y8f{bottom:865.905000px;}
.y62{bottom:875.670000px;}
.y8e{bottom:884.670000px;}
.y61{bottom:894.210000px;}
.y8d{bottom:903.210000px;}
.y60{bottom:921.930000px;}
.ye{bottom:937.410000px;}
.y5f{bottom:940.470000px;}
.yd{bottom:954.690000px;}
.y5e{bottom:959.190000px;}
.y5d{bottom:977.730000px;}
.yc{bottom:978.630000px;}
.y5c{bottom:996.270000px;}
.yb{bottom:997.170000px;}
.ya{bottom:1010.670000px;}
.y5b{bottom:1014.990000px;}
.y5a{bottom:1033.530000px;}
.y9{bottom:1043.070000px;}
.y59{bottom:1052.250000px;}
.y58{bottom:1070.790000px;}
.y8{bottom:1071.870000px;}
.y55{bottom:1075.140000px;}
.y57{bottom:1089.330000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h14{height:21.114844px;}
.h13{height:25.136719px;}
.ha{height:27.147656px;}
.h17{height:27.720000px;}
.hf{height:29.158594px;}
.he{height:29.464453px;}
.h11{height:37.705078px;}
.h10{height:38.100586px;}
.h15{height:38.997070px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.hc{height:42.164648px;}
.hb{height:43.506914px;}
.h16{height:44.507812px;}
.h5{height:46.251562px;}
.h9{height:48.312422px;}
.h19{height:49.255313px;}
.h18{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h12{height:207.540000px;}
.hd{height:629.025000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:131.940000px;}
.w8{width:162.900000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.056000px;}
.x18{left:8.100000px;}
.x15{left:10.440000px;}
.x4{left:12.780000px;}
.x16{left:18.180000px;}
.x6{left:19.260000px;}
.xf{left:25.560000px;}
.x10{left:28.980000px;}
.xe{left:31.140000px;}
.x14{left:37.260000px;}
.x12{left:42.480000px;}
.x13{left:45.540000px;}
.x1b{left:47.340000px;}
.x1c{left:56.700000px;}
.x19{left:62.145000px;}
.x11{left:65.874000px;}
.x1{left:78.300000px;}
.x1e{left:80.999987px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x1a{left:106.374000px;}
.x1f{left:108.035987px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x17{left:218.370000px;}
.xc{left:501.224987px;}
.xa{left:532.184987px;}
.xb{left:556.124987px;}
.xd{left:621.509987px;}
.x8{left:766.049987px;}
.x7{left:791.999987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.337707pt;}
.ls9{letter-spacing:0.438933pt;}
.lse{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.185067pt;}
.wsc{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws8{word-spacing:-9.718933pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.640000pt;}
.wsa{word-spacing:-7.936000pt;}
.wse{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.257173pt;}
._2{width:2.306133pt;}
._3{width:3.936000pt;}
._6{width:5.712000pt;}
._5{width:7.056000pt;}
._8{width:8.064000pt;}
._7{width:9.024000pt;}
._a{width:10.624000pt;}
._9{width:11.739520pt;}
._4{width:12.960000pt;}
._17{width:14.282667pt;}
._12{width:15.312000pt;}
._13{width:16.260907pt;}
._14{width:17.193173pt;}
._11{width:19.149013pt;}
._10{width:20.517760pt;}
._15{width:21.473920pt;}
._16{width:22.643200pt;}
._d{width:23.762347pt;}
._e{width:24.807040pt;}
._b{width:31.824000pt;}
._f{width:38.087040pt;}
._c{width:178.720000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.080000pt;}
.y5{bottom:3.360000pt;}
.y56{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y48{bottom:10.400000pt;}
.y3f{bottom:14.080000pt;}
.y54{bottom:16.960000pt;}
.y4{bottom:20.186667pt;}
.y3e{bottom:30.560000pt;}
.y53{bottom:30.880000pt;}
.y3{bottom:42.586667pt;}
.y47{bottom:43.680000pt;}
.y52{bottom:44.640000pt;}
.y3d{bottom:47.240000pt;}
.y7{bottom:50.720000pt;}
.y46{bottom:52.314667pt;}
.y51{bottom:60.474667pt;}
.y3c{bottom:63.720000pt;}
.y45{bottom:70.874667pt;}
.y50{bottom:74.234667pt;}
.y3b{bottom:80.360000pt;}
.y44{bottom:82.394667pt;}
.y8c{bottom:83.392000pt;}
.y40{bottom:84.032000pt;}
.y4f{bottom:90.074667pt;}
.y43{bottom:93.914667pt;}
.y3a{bottom:96.840000pt;}
.y8b{bottom:99.872000pt;}
.y4e{bottom:103.834667pt;}
.y39{bottom:113.320000pt;}
.y8a{bottom:116.352000pt;}
.y4d{bottom:117.594667pt;}
.yb3{bottom:126.112000pt;}
.y38{bottom:129.960000pt;}
.y4c{bottom:131.354667pt;}
.y89{bottom:132.992000pt;}
.yb2{bottom:141.466667pt;}
.y4b{bottom:145.274667pt;}
.y37{bottom:146.440000pt;}
.y42{bottom:149.114667pt;}
.y88{bottom:149.466667pt;}
.yb1{bottom:156.826667pt;}
.y41{bottom:158.394667pt;}
.y4a{bottom:159.034667pt;}
.y36{bottom:163.080000pt;}
.y87{bottom:166.106667pt;}
.yb0{bottom:172.186667pt;}
.y35{bottom:179.560000pt;}
.y86{bottom:182.586667pt;}
.yaf{bottom:187.546667pt;}
.y34{bottom:196.200000pt;}
.y85{bottom:199.066667pt;}
.yae{bottom:202.746667pt;}
.y33{bottom:212.680000pt;}
.y84{bottom:215.706667pt;}
.yad{bottom:218.106667pt;}
.y32{bottom:229.160000pt;}
.y83{bottom:232.186667pt;}
.yac{bottom:233.466667pt;}
.y31{bottom:245.800000pt;}
.y82{bottom:248.826667pt;}
.y30{bottom:262.280000pt;}
.y81{bottom:265.306667pt;}
.yf{bottom:269.306667pt;}
.y1d{bottom:271.426667pt;}
.y2f{bottom:278.946667pt;}
.y80{bottom:281.946667pt;}
.yab{bottom:289.946667pt;}
.y1c{bottom:292.866667pt;}
.y2e{bottom:295.426667pt;}
.y7f{bottom:298.426667pt;}
.yaa{bottom:306.466667pt;}
.y2d{bottom:311.906667pt;}
.y1b{bottom:314.306667pt;}
.y7e{bottom:314.946667pt;}
.ya9{bottom:322.946667pt;}
.y2c{bottom:328.546667pt;}
.y7d{bottom:331.586667pt;}
.y1a{bottom:335.906667pt;}
.ya8{bottom:339.586667pt;}
.y2b{bottom:345.026667pt;}
.y7c{bottom:348.066667pt;}
.ya7{bottom:356.066667pt;}
.y19{bottom:357.346667pt;}
.y7b{bottom:364.706667pt;}
.y2a{bottom:369.186667pt;}
.ya6{bottom:372.706667pt;}
.y18{bottom:378.786667pt;}
.y7a{bottom:381.186667pt;}
.y29{bottom:384.066667pt;}
.ya5{bottom:389.186667pt;}
.y79{bottom:397.666667pt;}
.y28{bottom:398.946667pt;}
.y17{bottom:400.226667pt;}
.ya4{bottom:405.666667pt;}
.y27{bottom:413.986667pt;}
.y78{bottom:414.306667pt;}
.y16{bottom:421.666667pt;}
.ya3{bottom:422.306667pt;}
.y26{bottom:428.866667pt;}
.y77{bottom:430.786667pt;}
.ya2{bottom:438.786667pt;}
.y15{bottom:443.106667pt;}
.y25{bottom:443.746667pt;}
.y76{bottom:447.426667pt;}
.ya1{bottom:455.426667pt;}
.y24{bottom:458.626667pt;}
.y75{bottom:463.906667pt;}
.y14{bottom:464.706667pt;}
.ya0{bottom:471.906667pt;}
.y23{bottom:473.506667pt;}
.y74{bottom:480.386667pt;}
.y13{bottom:486.146667pt;}
.y22{bottom:488.386667pt;}
.y73{bottom:497.026667pt;}
.y21{bottom:503.306667pt;}
.y9f{bottom:505.026667pt;}
.y12{bottom:507.626667pt;}
.y72{bottom:513.506667pt;}
.y20{bottom:518.186667pt;}
.y9e{bottom:521.506667pt;}
.y11{bottom:529.066667pt;}
.y71{bottom:530.146667pt;}
.y1f{bottom:533.066667pt;}
.y9d{bottom:538.173333pt;}
.y70{bottom:546.653333pt;}
.y1e{bottom:547.946667pt;}
.y10{bottom:550.506667pt;}
.y9c{bottom:554.653333pt;}
.y6f{bottom:563.293333pt;}
.y9b{bottom:571.293333pt;}
.y6e{bottom:579.773333pt;}
.y9a{bottom:587.773333pt;}
.y6d{bottom:596.253333pt;}
.y99{bottom:604.253333pt;}
.y6c{bottom:612.893333pt;}
.y98{bottom:620.893333pt;}
.y6b{bottom:629.373333pt;}
.y97{bottom:637.373333pt;}
.y6a{bottom:646.013333pt;}
.y96{bottom:654.013333pt;}
.y69{bottom:662.493333pt;}
.y95{bottom:670.493333pt;}
.y68{bottom:678.973333pt;}
.y94{bottom:686.973333pt;}
.y67{bottom:695.613333pt;}
.y93{bottom:703.613333pt;}
.y66{bottom:712.093333pt;}
.y92{bottom:720.093333pt;}
.y65{bottom:728.733333pt;}
.y91{bottom:736.733333pt;}
.y64{bottom:745.213333pt;}
.y90{bottom:753.213333pt;}
.y63{bottom:761.693333pt;}
.y8f{bottom:769.693333pt;}
.y62{bottom:778.373333pt;}
.y8e{bottom:786.373333pt;}
.y61{bottom:794.853333pt;}
.y8d{bottom:802.853333pt;}
.y60{bottom:819.493333pt;}
.ye{bottom:833.253333pt;}
.y5f{bottom:835.973333pt;}
.yd{bottom:848.613333pt;}
.y5e{bottom:852.613333pt;}
.y5d{bottom:869.093333pt;}
.yc{bottom:869.893333pt;}
.y5c{bottom:885.573333pt;}
.yb{bottom:886.373333pt;}
.ya{bottom:898.373333pt;}
.y5b{bottom:902.213333pt;}
.y5a{bottom:918.693333pt;}
.y9{bottom:927.173333pt;}
.y59{bottom:935.333333pt;}
.y58{bottom:951.813333pt;}
.y8{bottom:952.773333pt;}
.y55{bottom:955.680000pt;}
.y57{bottom:968.293333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h14{height:18.768750pt;}
.h13{height:22.343750pt;}
.ha{height:24.131250pt;}
.h17{height:24.640000pt;}
.hf{height:25.918750pt;}
.he{height:26.190625pt;}
.h11{height:33.515625pt;}
.h10{height:33.867188pt;}
.h15{height:34.664062pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.hc{height:37.479688pt;}
.hb{height:38.672812pt;}
.h16{height:39.562500pt;}
.h5{height:41.112500pt;}
.h9{height:42.944375pt;}
.h19{height:43.782500pt;}
.h18{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h12{height:184.480000pt;}
.hd{height:559.133333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.280000pt;}
.w8{width:144.800000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.272000pt;}
.x18{left:7.200000pt;}
.x15{left:9.280000pt;}
.x4{left:11.360000pt;}
.x16{left:16.160000pt;}
.x6{left:17.120000pt;}
.xf{left:22.720000pt;}
.x10{left:25.760000pt;}
.xe{left:27.680000pt;}
.x14{left:33.120000pt;}
.x12{left:37.760000pt;}
.x13{left:40.480000pt;}
.x1b{left:42.080000pt;}
.x1c{left:50.400000pt;}
.x19{left:55.240000pt;}
.x11{left:58.554667pt;}
.x1{left:69.600000pt;}
.x1e{left:71.999988pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x1a{left:94.554667pt;}
.x1f{left:96.031988pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x17{left:194.106667pt;}
.xc{left:445.533322pt;}
.xa{left:473.053322pt;}
.xb{left:494.333322pt;}
.xd{left:552.453322pt;}
.x8{left:680.933322pt;}
.x7{left:703.999988pt;}
}




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