
    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_ba693f14d791a1aec55df243.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.208000;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_b3158083d9772e1fc0560984.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.208000;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_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_e8022aa5cabd0fd0b2f0342e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.805000;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_6ef03e9a9ae5d2f5bfd622fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.208000;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_5dc1213a9817e7965c77cac7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.208000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.259200px;}
.ls4{letter-spacing:0.280800px;}
.ls3{letter-spacing:0.696000px;}
.ls2{letter-spacing:0.708000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1{word-spacing:-18.408960px;}
.ws0{word-spacing:-18.149760px;}
.ws2{word-spacing:-6.510240px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-2.980800px;}
._1{margin-left:-1.332480px;}
._a{width:1.207680px;}
._11{width:2.237760px;}
._5{width:3.974400px;}
._6{width:5.365440px;}
._c{width:9.265920px;}
._b{width:10.274880px;}
._0{width:14.498880px;}
._2{width:16.060800px;}
._f{width:17.102400px;}
._8{width:19.512960px;}
._7{width:20.534400px;}
._12{width:26.164800px;}
._13{width:27.423360px;}
._10{width:31.073760px;}
._3{width:32.391360px;}
._4{width:33.736800px;}
._d{width:41.929920px;}
._e{width:42.997440px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:23.760000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:51.120000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y12{bottom:14.580000px;}
.y4f{bottom:14.625000px;}
.y42{bottom:14.760000px;}
.y2b{bottom:14.790000px;}
.y13{bottom:39.420000px;}
.y4e{bottom:39.465000px;}
.y41{bottom:39.600000px;}
.y76{bottom:48.420000px;}
.y2a{bottom:48.450000px;}
.y50{bottom:55.980000px;}
.y31{bottom:57.420000px;}
.y5b{bottom:64.080000px;}
.y40{bottom:64.260000px;}
.yad{bottom:64.290000px;}
.y4d{bottom:64.305000px;}
.y64{bottom:69.480000px;}
.y30{bottom:73.260000px;}
.y75{bottom:82.080000px;}
.y87{bottom:82.260000px;}
.y29{bottom:82.290000px;}
.y8d{bottom:85.140000px;}
.y2f{bottom:88.920000px;}
.yac{bottom:88.950000px;}
.y4c{bottom:88.965000px;}
.y3f{bottom:89.100000px;}
.y5e{bottom:89.145000px;}
.y2e{bottom:92.700000px;}
.y7a{bottom:94.140000px;}
.yb1{bottom:99.180000px;}
.y2d{bottom:105.120000px;}
.y3e{bottom:113.760000px;}
.y8b{bottom:113.790000px;}
.y4b{bottom:113.805000px;}
.y28{bottom:115.950000px;}
.yb4{bottom:138.195479px;}
.y7f{bottom:138.420000px;}
.y5a{bottom:138.450000px;}
.y4a{bottom:138.465000px;}
.y3d{bottom:138.600000px;}
.y63{bottom:138.630000px;}
.y5d{bottom:138.645000px;}
.y27{bottom:140.790000px;}
.y74{bottom:149.610000px;}
.y86{bottom:149.790000px;}
.y77{bottom:159.690000px;}
.yb3{bottom:163.035479px;}
.y52{bottom:163.110000px;}
.ya0{bottom:163.260000px;}
.y59{bottom:163.290000px;}
.y3c{bottom:163.305000px;}
.y26{bottom:165.630000px;}
.y73{bottom:174.450000px;}
.y85{bottom:174.630000px;}
.y14{bottom:178.920000px;}
.y9c{bottom:183.450000px;}
.yb2{bottom:187.875479px;}
.y51{bottom:187.950000px;}
.y49{bottom:187.965000px;}
.y9f{bottom:188.100000px;}
.y62{bottom:188.130000px;}
.y3b{bottom:188.145000px;}
.y25{bottom:190.290000px;}
.y72{bottom:199.290000px;}
.y67{bottom:205.950000px;}
.y9b{bottom:208.290000px;}
.y90{bottom:210.450000px;}
.y9e{bottom:212.760000px;}
.y58{bottom:212.790000px;}
.y3a{bottom:212.805000px;}
.y2c{bottom:214.950000px;}
.y24{bottom:215.130000px;}
.yb0{bottom:216.210000px;}
.y71{bottom:223.950000px;}
.y84{bottom:224.130000px;}
.y66{bottom:230.790000px;}
.y9a{bottom:233.130000px;}
.y8f{bottom:235.290000px;}
.y57{bottom:237.450000px;}
.y48{bottom:237.465000px;}
.y61{bottom:237.630000px;}
.y39{bottom:237.645000px;}
.y23{bottom:239.790000px;}
.y70{bottom:248.790000px;}
.yaf{bottom:249.870000px;}
.y65{bottom:255.450000px;}
.y99{bottom:257.790000px;}
.y8e{bottom:260.130000px;}
.y8c{bottom:262.110000px;}
.y56{bottom:262.290000px;}
.y38{bottom:262.305000px;}
.y47{bottom:262.335000px;}
.y16{bottom:263.415000px;}
.y22{bottom:264.675000px;}
.y6f{bottom:273.450000px;}
.y83{bottom:273.630000px;}
.y8a{bottom:279.390000px;}
.y98{bottom:282.630000px;}
.yae{bottom:283.710000px;}
.y55{bottom:286.950000px;}
.y79{bottom:286.965000px;}
.y46{bottom:286.995000px;}
.y60{bottom:287.130000px;}
.y37{bottom:287.145000px;}
.y15{bottom:288.255000px;}
.y21{bottom:289.335000px;}
.ya3{bottom:291.825000px;}
.y6e{bottom:298.290000px;}
.ya1{bottom:303.510000px;}
.y89{bottom:304.230000px;}
.y97{bottom:307.290000px;}
.y54{bottom:311.790000px;}
.y36{bottom:311.805000px;}
.y45{bottom:311.835000px;}
.y20{bottom:314.175000px;}
.ya2{bottom:316.665000px;}
.y6d{bottom:322.950000px;}
.y82{bottom:323.130000px;}
.y96{bottom:332.130000px;}
.y53{bottom:336.450000px;}
.y44{bottom:336.495000px;}
.y35{bottom:336.645000px;}
.y1f{bottom:338.835000px;}
.y7d{bottom:347.115000px;}
.y6c{bottom:347.790000px;}
.y81{bottom:347.835000px;}
.y95{bottom:356.835000px;}
.y34{bottom:361.305000px;}
.y1e{bottom:363.675000px;}
.y7c{bottom:371.955000px;}
.y6b{bottom:372.495000px;}
.y80{bottom:372.675000px;}
.y94{bottom:381.675000px;}
.y1d{bottom:388.335000px;}
.y7b{bottom:396.615000px;}
.y6a{bottom:397.335000px;}
.y93{bottom:406.335000px;}
.y43{bottom:412.230000px;}
.y1c{bottom:413.175000px;}
.y69{bottom:421.995000px;}
.y92{bottom:431.175000px;}
.y1b{bottom:437.835000px;}
.yaa{bottom:445.215000px;}
.y68{bottom:446.835000px;}
.y91{bottom:455.835000px;}
.y1a{bottom:462.675000px;}
.ya9{bottom:470.055000px;}
.y19{bottom:487.335000px;}
.ya8{bottom:494.715000px;}
.y7e{bottom:511.275000px;}
.y18{bottom:512.205000px;}
.ya7{bottom:519.555000px;}
.y5f{bottom:535.935000px;}
.y17{bottom:536.865000px;}
.ya6{bottom:544.215000px;}
.y88{bottom:560.775000px;}
.ya5{bottom:569.055000px;}
.ya4{bottom:593.715000px;}
.yab{bottom:610.275000px;}
.y11{bottom:735.585000px;}
.y33{bottom:768.525000px;}
.y10{bottom:809.385000px;}
.y78{bottom:842.865000px;}
.yf{bottom:843.225000px;}
.y5c{bottom:867.525000px;}
.ye{bottom:868.065000px;}
.yd{bottom:892.725000px;}
.y9d{bottom:917.070000px;}
.yc{bottom:917.610000px;}
.yb{bottom:942.270000px;}
.ya{bottom:967.110000px;}
.y9{bottom:991.770000px;}
.y8{bottom:1016.610000px;}
.y7{bottom:1041.270000px;}
.y6{bottom:1066.110000px;}
.y5{bottom:1090.770000px;}
.y4{bottom:1115.610000px;}
.y3{bottom:1149.270000px;}
.y32{bottom:1149.660000px;}
.y1{bottom:1184.760000px;}
.y2{bottom:1192.320000px;}
.h8{height:22.334400px;}
.h9{height:39.254400px;}
.h3{height:48.052800px;}
.h7{height:49.992188px;}
.h5{height:58.500000px;}
.h4{height:62.265600px;}
.h2{height:79.185600px;}
.h17{height:231.840000px;}
.h15{height:281.190000px;}
.hd{height:281.370000px;}
.h10{height:306.030000px;}
.h19{height:306.075000px;}
.h12{height:330.690000px;}
.he{height:330.870000px;}
.hc{height:355.530000px;}
.hb{height:355.575000px;}
.ha{height:380.370000px;}
.h13{height:416.415000px;}
.hf{height:465.735000px;}
.h16{height:474.915000px;}
.h6{height:555.945000px;}
.h14{height:588.135000px;}
.h18{height:612.825000px;}
.h11{height:747.825000px;}
.h1a{height:830.220479px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:124.416000px;}
.w5{width:124.776000px;}
.w4{width:133.596000px;}
.w8{width:171.210000px;}
.wb{width:173.700000px;}
.w7{width:174.060000px;}
.wa{width:178.230000px;}
.w6{width:178.590000px;}
.wc{width:891.179624px;}
.wd{width:892.382890px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.800376px;}
.x5{left:4.860000px;}
.x19{left:7.560000px;}
.xc{left:9.180000px;}
.xa{left:10.980000px;}
.x10{left:12.060000px;}
.x15{left:14.040000px;}
.x12{left:15.120000px;}
.xd{left:16.920000px;}
.x16{left:18.900000px;}
.xb{left:22.860000px;}
.x17{left:29.340000px;}
.x14{left:31.680000px;}
.x11{left:46.620000px;}
.x18{left:51.480000px;}
.x4{left:53.999987px;}
.xf{left:55.799987px;}
.x13{left:60.336000px;}
.x1a{left:115.955987px;}
.x6{left:188.670000px;}
.xe{left:270.029987px;}
.x1{left:291.134987px;}
.x7{left:313.815000px;}
.x1b{left:446.474987px;}
.x8{left:492.765000px;}
.x2{left:597.884973px;}
.x3{left:601.844987px;}
.x9{left:667.185000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.230400pt;}
.ls4{letter-spacing:0.249600pt;}
.ls3{letter-spacing:0.618667pt;}
.ls2{letter-spacing:0.629333pt;}
.ws1{word-spacing:-16.363520pt;}
.ws0{word-spacing:-16.133120pt;}
.ws2{word-spacing:-5.786880pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-2.649600pt;}
._1{margin-left:-1.184427pt;}
._a{width:1.073493pt;}
._11{width:1.989120pt;}
._5{width:3.532800pt;}
._6{width:4.769280pt;}
._c{width:8.236373pt;}
._b{width:9.133227pt;}
._0{width:12.887893pt;}
._2{width:14.276267pt;}
._f{width:15.202133pt;}
._8{width:17.344853pt;}
._7{width:18.252800pt;}
._12{width:23.257600pt;}
._13{width:24.376320pt;}
._10{width:27.621120pt;}
._3{width:28.792320pt;}
._4{width:29.988267pt;}
._d{width:37.271040pt;}
._e{width:38.219947pt;}
.fs4{font-size:21.120000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:45.440000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:12.960000pt;}
.y4f{bottom:13.000000pt;}
.y42{bottom:13.120000pt;}
.y2b{bottom:13.146667pt;}
.y13{bottom:35.040000pt;}
.y4e{bottom:35.080000pt;}
.y41{bottom:35.200000pt;}
.y76{bottom:43.040000pt;}
.y2a{bottom:43.066667pt;}
.y50{bottom:49.760000pt;}
.y31{bottom:51.040000pt;}
.y5b{bottom:56.960000pt;}
.y40{bottom:57.120000pt;}
.yad{bottom:57.146667pt;}
.y4d{bottom:57.160000pt;}
.y64{bottom:61.760000pt;}
.y30{bottom:65.120000pt;}
.y75{bottom:72.960000pt;}
.y87{bottom:73.120000pt;}
.y29{bottom:73.146667pt;}
.y8d{bottom:75.680000pt;}
.y2f{bottom:79.040000pt;}
.yac{bottom:79.066667pt;}
.y4c{bottom:79.080000pt;}
.y3f{bottom:79.200000pt;}
.y5e{bottom:79.240000pt;}
.y2e{bottom:82.400000pt;}
.y7a{bottom:83.680000pt;}
.yb1{bottom:88.160000pt;}
.y2d{bottom:93.440000pt;}
.y3e{bottom:101.120000pt;}
.y8b{bottom:101.146667pt;}
.y4b{bottom:101.160000pt;}
.y28{bottom:103.066667pt;}
.yb4{bottom:122.840426pt;}
.y7f{bottom:123.040000pt;}
.y5a{bottom:123.066667pt;}
.y4a{bottom:123.080000pt;}
.y3d{bottom:123.200000pt;}
.y63{bottom:123.226667pt;}
.y5d{bottom:123.240000pt;}
.y27{bottom:125.146667pt;}
.y74{bottom:132.986667pt;}
.y86{bottom:133.146667pt;}
.y77{bottom:141.946667pt;}
.yb3{bottom:144.920426pt;}
.y52{bottom:144.986667pt;}
.ya0{bottom:145.120000pt;}
.y59{bottom:145.146667pt;}
.y3c{bottom:145.160000pt;}
.y26{bottom:147.226667pt;}
.y73{bottom:155.066667pt;}
.y85{bottom:155.226667pt;}
.y14{bottom:159.040000pt;}
.y9c{bottom:163.066667pt;}
.yb2{bottom:167.000426pt;}
.y51{bottom:167.066667pt;}
.y49{bottom:167.080000pt;}
.y9f{bottom:167.200000pt;}
.y62{bottom:167.226667pt;}
.y3b{bottom:167.240000pt;}
.y25{bottom:169.146667pt;}
.y72{bottom:177.146667pt;}
.y67{bottom:183.066667pt;}
.y9b{bottom:185.146667pt;}
.y90{bottom:187.066667pt;}
.y9e{bottom:189.120000pt;}
.y58{bottom:189.146667pt;}
.y3a{bottom:189.160000pt;}
.y2c{bottom:191.066667pt;}
.y24{bottom:191.226667pt;}
.yb0{bottom:192.186667pt;}
.y71{bottom:199.066667pt;}
.y84{bottom:199.226667pt;}
.y66{bottom:205.146667pt;}
.y9a{bottom:207.226667pt;}
.y8f{bottom:209.146667pt;}
.y57{bottom:211.066667pt;}
.y48{bottom:211.080000pt;}
.y61{bottom:211.226667pt;}
.y39{bottom:211.240000pt;}
.y23{bottom:213.146667pt;}
.y70{bottom:221.146667pt;}
.yaf{bottom:222.106667pt;}
.y65{bottom:227.066667pt;}
.y99{bottom:229.146667pt;}
.y8e{bottom:231.226667pt;}
.y8c{bottom:232.986667pt;}
.y56{bottom:233.146667pt;}
.y38{bottom:233.160000pt;}
.y47{bottom:233.186667pt;}
.y16{bottom:234.146667pt;}
.y22{bottom:235.266667pt;}
.y6f{bottom:243.066667pt;}
.y83{bottom:243.226667pt;}
.y8a{bottom:248.346667pt;}
.y98{bottom:251.226667pt;}
.yae{bottom:252.186667pt;}
.y55{bottom:255.066667pt;}
.y79{bottom:255.080000pt;}
.y46{bottom:255.106667pt;}
.y60{bottom:255.226667pt;}
.y37{bottom:255.240000pt;}
.y15{bottom:256.226667pt;}
.y21{bottom:257.186667pt;}
.ya3{bottom:259.400000pt;}
.y6e{bottom:265.146667pt;}
.ya1{bottom:269.786667pt;}
.y89{bottom:270.426667pt;}
.y97{bottom:273.146667pt;}
.y54{bottom:277.146667pt;}
.y36{bottom:277.160000pt;}
.y45{bottom:277.186667pt;}
.y20{bottom:279.266667pt;}
.ya2{bottom:281.480000pt;}
.y6d{bottom:287.066667pt;}
.y82{bottom:287.226667pt;}
.y96{bottom:295.226667pt;}
.y53{bottom:299.066667pt;}
.y44{bottom:299.106667pt;}
.y35{bottom:299.240000pt;}
.y1f{bottom:301.186667pt;}
.y7d{bottom:308.546667pt;}
.y6c{bottom:309.146667pt;}
.y81{bottom:309.186667pt;}
.y95{bottom:317.186667pt;}
.y34{bottom:321.160000pt;}
.y1e{bottom:323.266667pt;}
.y7c{bottom:330.626667pt;}
.y6b{bottom:331.106667pt;}
.y80{bottom:331.266667pt;}
.y94{bottom:339.266667pt;}
.y1d{bottom:345.186667pt;}
.y7b{bottom:352.546667pt;}
.y6a{bottom:353.186667pt;}
.y93{bottom:361.186667pt;}
.y43{bottom:366.426667pt;}
.y1c{bottom:367.266667pt;}
.y69{bottom:375.106667pt;}
.y92{bottom:383.266667pt;}
.y1b{bottom:389.186667pt;}
.yaa{bottom:395.746667pt;}
.y68{bottom:397.186667pt;}
.y91{bottom:405.186667pt;}
.y1a{bottom:411.266667pt;}
.ya9{bottom:417.826667pt;}
.y19{bottom:433.186667pt;}
.ya8{bottom:439.746667pt;}
.y7e{bottom:454.466667pt;}
.y18{bottom:455.293333pt;}
.ya7{bottom:461.826667pt;}
.y5f{bottom:476.386667pt;}
.y17{bottom:477.213333pt;}
.ya6{bottom:483.746667pt;}
.y88{bottom:498.466667pt;}
.ya5{bottom:505.826667pt;}
.ya4{bottom:527.746667pt;}
.yab{bottom:542.466667pt;}
.y11{bottom:653.853333pt;}
.y33{bottom:683.133333pt;}
.y10{bottom:719.453333pt;}
.y78{bottom:749.213333pt;}
.yf{bottom:749.533333pt;}
.y5c{bottom:771.133333pt;}
.ye{bottom:771.613333pt;}
.yd{bottom:793.533333pt;}
.y9d{bottom:815.173333pt;}
.yc{bottom:815.653333pt;}
.yb{bottom:837.573333pt;}
.ya{bottom:859.653333pt;}
.y9{bottom:881.573333pt;}
.y8{bottom:903.653333pt;}
.y7{bottom:925.573333pt;}
.y6{bottom:947.653333pt;}
.y5{bottom:969.573333pt;}
.y4{bottom:991.653333pt;}
.y3{bottom:1021.573333pt;}
.y32{bottom:1021.920000pt;}
.y1{bottom:1053.120000pt;}
.y2{bottom:1059.840000pt;}
.h8{height:19.852800pt;}
.h9{height:34.892800pt;}
.h3{height:42.713600pt;}
.h7{height:44.437500pt;}
.h5{height:52.000000pt;}
.h4{height:55.347200pt;}
.h2{height:70.387200pt;}
.h17{height:206.080000pt;}
.h15{height:249.946667pt;}
.hd{height:250.106667pt;}
.h10{height:272.026667pt;}
.h19{height:272.066667pt;}
.h12{height:293.946667pt;}
.he{height:294.106667pt;}
.hc{height:316.026667pt;}
.hb{height:316.066667pt;}
.ha{height:338.106667pt;}
.h13{height:370.146667pt;}
.hf{height:413.986667pt;}
.h16{height:422.146667pt;}
.h6{height:494.173333pt;}
.h14{height:522.786667pt;}
.h18{height:544.733333pt;}
.h11{height:664.733333pt;}
.h1a{height:737.973759pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:110.592000pt;}
.w5{width:110.912000pt;}
.w4{width:118.752000pt;}
.w8{width:152.186667pt;}
.wb{width:154.400000pt;}
.w7{width:154.720000pt;}
.wa{width:158.426667pt;}
.w6{width:158.746667pt;}
.wc{width:792.159666pt;}
.wd{width:793.229236pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.600334pt;}
.x5{left:4.320000pt;}
.x19{left:6.720000pt;}
.xc{left:8.160000pt;}
.xa{left:9.760000pt;}
.x10{left:10.720000pt;}
.x15{left:12.480000pt;}
.x12{left:13.440000pt;}
.xd{left:15.040000pt;}
.x16{left:16.800000pt;}
.xb{left:20.320000pt;}
.x17{left:26.080000pt;}
.x14{left:28.160000pt;}
.x11{left:41.440000pt;}
.x18{left:45.760000pt;}
.x4{left:47.999988pt;}
.xf{left:49.599988pt;}
.x13{left:53.632000pt;}
.x1a{left:103.071988pt;}
.x6{left:167.706667pt;}
.xe{left:240.026655pt;}
.x1{left:258.786655pt;}
.x7{left:278.946667pt;}
.x1b{left:396.866655pt;}
.x8{left:438.013333pt;}
.x2{left:531.453310pt;}
.x3{left:534.973322pt;}
.x9{left:593.053333pt;}
}




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