
    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_2bd5644934b58a5d9c264a94.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_e40cd7461fd54bfacc7707bd.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_21fc787cc98edde514bd08ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088867;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_ed52cc2b802284770765a14a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_9c8c33127a60b88334ed5b6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_bbf94960024d2d87ab4b2c4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-2.916000px;}
.lse{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.684000px;}
.ls7{letter-spacing:-0.378600px;}
.lsd{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.341400px;}
.lsa{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.480000px;}
.ls0{letter-spacing:7.740000px;}
.ls1{letter-spacing:12.060000px;}
.lsb{letter-spacing:24.901920px;}
.ls4{letter-spacing:87.660000px;}
.ls3{letter-spacing:89.820000px;}
.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;}
}
.ws6{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.401400px;}
.ws5{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.700000px;}
.ws4{word-spacing:-20.681400px;}
.ws8{word-spacing:-20.340000px;}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-14.580000px;}
._2c{margin-left:-5.896800px;}
._2d{margin-left:-4.796880px;}
._0{margin-left:-3.201120px;}
._1{margin-left:-2.106000px;}
._5{margin-left:-1.010880px;}
._4{width:1.036080px;}
._b{width:2.572800px;}
._11{width:3.953280px;}
._2{width:5.118960px;}
._3{width:6.377040px;}
._13{width:7.379280px;}
._8{width:8.398800px;}
._6{width:9.434880px;}
._7{width:10.614240px;}
._19{width:11.789040px;}
._10{width:13.132800px;}
._f{width:14.211360px;}
._38{width:15.323040px;}
._23{width:16.594320px;}
._c{width:18.196320px;}
._9{width:19.206720px;}
._2e{width:22.323600px;}
._33{width:23.502960px;}
._18{width:24.598080px;}
._31{width:25.625520px;}
._15{width:26.678880px;}
._14{width:27.743520px;}
._28{width:28.784880px;}
._32{width:30.326400px;}
._39{width:31.564800px;}
._30{width:32.685120px;}
._2f{width:34.117200px;}
._3a{width:36.054720px;}
._20{width:38.893680px;}
._d{width:40.856400px;}
._e{width:42.249360px;}
._16{width:43.754880px;}
._1d{width:45.024480px;}
._35{width:47.090160px;}
._36{width:48.219120px;}
._34{width:49.877760px;}
._1c{width:50.965200px;}
._3b{width:53.576640px;}
._17{width:54.924480px;}
._37{width:56.609280px;}
._2a{width:61.158240px;}
._2b{width:62.649360px;}
._a{width:64.106640px;}
._24{width:74.299680px;}
._21{width:82.892160px;}
._22{width:84.155760px;}
._1e{width:85.250880px;}
._1f{width:86.405040px;}
._29{width:87.484080px;}
._1a{width:88.692960px;}
._1b{width:89.895840px;}
._25{width:95.696640px;}
._26{width:96.876000px;}
._27{width:121.305600px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y44{bottom:91.296000px;}
.y7f{bottom:95.976000px;}
.y6d{bottom:110.736000px;}
.y43{bottom:115.416000px;}
.y7e{bottom:119.376000px;}
.y2c{bottom:133.596000px;}
.y6c{bottom:134.856000px;}
.y42{bottom:139.536000px;}
.y7d{bottom:142.596000px;}
.y2b{bottom:157.710000px;}
.y6b{bottom:159.150000px;}
.y41{bottom:163.650000px;}
.y7c{bottom:165.810000px;}
.y2a{bottom:181.830000px;}
.y6a{bottom:183.270000px;}
.y40{bottom:187.950000px;}
.y7b{bottom:189.210000px;}
.y29{bottom:205.950000px;}
.y69{bottom:207.390000px;}
.y3f{bottom:212.070000px;}
.y7a{bottom:212.430000px;}
.y28{bottom:230.250000px;}
.y68{bottom:231.510000px;}
.y79{bottom:235.650000px;}
.y3e{bottom:236.190000px;}
.y27{bottom:254.370000px;}
.y67{bottom:255.630000px;}
.y78{bottom:259.050000px;}
.y3d{bottom:260.310000px;}
.y26{bottom:278.535000px;}
.y66{bottom:279.795000px;}
.y77{bottom:282.315000px;}
.y3c{bottom:284.475000px;}
.y25{bottom:302.655000px;}
.y65{bottom:303.915000px;}
.y76{bottom:305.535000px;}
.y3b{bottom:308.595000px;}
.y24{bottom:326.775000px;}
.y64{bottom:328.215000px;}
.y75{bottom:328.935000px;}
.y3a{bottom:332.715000px;}
.y23{bottom:350.895000px;}
.y74{bottom:352.155000px;}
.y63{bottom:352.335000px;}
.y39{bottom:357.015000px;}
.y22{bottom:375.015000px;}
.y73{bottom:375.555000px;}
.y62{bottom:376.455000px;}
.y38{bottom:381.135000px;}
.y72{bottom:398.775000px;}
.y21{bottom:399.315000px;}
.y61{bottom:400.575000px;}
.y37{bottom:405.255000px;}
.y71{bottom:421.995000px;}
.y20{bottom:423.435000px;}
.y60{bottom:424.695000px;}
.y36{bottom:429.375000px;}
.y70{bottom:445.395000px;}
.y1f{bottom:447.555000px;}
.y5f{bottom:448.815000px;}
.y35{bottom:453.495000px;}
.y6f{bottom:468.615000px;}
.y1e{bottom:471.675000px;}
.y5e{bottom:473.115000px;}
.y34{bottom:477.615000px;}
.y6e{bottom:491.835000px;}
.y1d{bottom:495.795000px;}
.y5d{bottom:497.235000px;}
.y33{bottom:501.915000px;}
.y5c{bottom:521.355000px;}
.y32{bottom:526.035000px;}
.y1c{bottom:527.475000px;}
.y5b{bottom:545.475000px;}
.y31{bottom:550.155000px;}
.y1b{bottom:551.595000px;}
.y5a{bottom:569.625000px;}
.y30{bottom:574.305000px;}
.y1a{bottom:575.745000px;}
.y59{bottom:593.745000px;}
.y19{bottom:605.985000px;}
.y58{bottom:618.045000px;}
.y2f{bottom:630.105000px;}
.y57{bottom:642.165000px;}
.y18{bottom:654.225000px;}
.y56{bottom:666.285000px;}
.y17{bottom:678.345000px;}
.y55{bottom:690.405000px;}
.y16{bottom:702.465000px;}
.y54{bottom:714.525000px;}
.y15{bottom:726.765000px;}
.y53{bottom:738.645000px;}
.y14{bottom:750.885000px;}
.y52{bottom:762.765000px;}
.y13{bottom:775.005000px;}
.y51{bottom:787.065000px;}
.y12{bottom:799.125000px;}
.y50{bottom:811.185000px;}
.y11{bottom:823.245000px;}
.y4f{bottom:835.305000px;}
.y10{bottom:847.410000px;}
.y4e{bottom:859.470000px;}
.yf{bottom:871.710000px;}
.y4d{bottom:883.590000px;}
.ye{bottom:895.830000px;}
.y4c{bottom:907.710000px;}
.yd{bottom:919.950000px;}
.y4b{bottom:932.010000px;}
.yc{bottom:944.070000px;}
.y4a{bottom:956.130000px;}
.yb{bottom:968.190000px;}
.y49{bottom:980.250000px;}
.ya{bottom:992.310000px;}
.y48{bottom:1004.370000px;}
.y2e{bottom:1016.430000px;}
.y9{bottom:1022.550000px;}
.y47{bottom:1028.490000px;}
.y8{bottom:1046.670000px;}
.y46{bottom:1052.610000px;}
.y7{bottom:1070.790000px;}
.y45{bottom:1076.730000px;}
.y2d{bottom:1094.910000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h5{height:73.545469px;}
.h4{height:74.244727px;}
.h7{height:79.850391px;}
.h2{height:82.676953px;}
.h6{height:83.625259px;}
.h3{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.xe{left:86.759987px;}
.x16{left:112.355987px;}
.xf{left:124.235987px;}
.x13{left:127.835987px;}
.x9{left:139.355987px;}
.x3{left:145.655987px;}
.x4{left:153.749987px;}
.x12{left:163.469987px;}
.xa{left:191.189987px;}
.x8{left:228.629987px;}
.xd{left:235.109987px;}
.x11{left:253.469987px;}
.xc{left:262.469987px;}
.x10{left:273.809987px;}
.x6{left:282.449987px;}
.x7{left:295.949987px;}
.xb{left:308.954987px;}
.x5{left:364.034987px;}
.x15{left:401.294987px;}
.x14{left:436.034987px;}
.x2{left:441.254987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-2.592000pt;}
.lse{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.608000pt;}
.ls7{letter-spacing:-0.336533pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.303467pt;}
.lsa{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls0{letter-spacing:6.880000pt;}
.ls1{letter-spacing:10.720000pt;}
.lsb{letter-spacing:22.135040pt;}
.ls4{letter-spacing:77.920000pt;}
.ls3{letter-spacing:79.840000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws3{word-spacing:-19.023467pt;}
.ws5{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.400000pt;}
.ws4{word-spacing:-18.383467pt;}
.ws8{word-spacing:-18.080000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-12.960000pt;}
._2c{margin-left:-5.241600pt;}
._2d{margin-left:-4.263893pt;}
._0{margin-left:-2.845440pt;}
._1{margin-left:-1.872000pt;}
._5{margin-left:-0.898560pt;}
._4{width:0.920960pt;}
._b{width:2.286933pt;}
._11{width:3.514027pt;}
._2{width:4.550187pt;}
._3{width:5.668480pt;}
._13{width:6.559360pt;}
._8{width:7.465600pt;}
._6{width:8.386560pt;}
._7{width:9.434880pt;}
._19{width:10.479147pt;}
._10{width:11.673600pt;}
._f{width:12.632320pt;}
._38{width:13.620480pt;}
._23{width:14.750507pt;}
._c{width:16.174507pt;}
._9{width:17.072640pt;}
._2e{width:19.843200pt;}
._33{width:20.891520pt;}
._18{width:21.864960pt;}
._31{width:22.778240pt;}
._15{width:23.714560pt;}
._14{width:24.660907pt;}
._28{width:25.586560pt;}
._32{width:26.956800pt;}
._39{width:28.057600pt;}
._30{width:29.053440pt;}
._2f{width:30.326400pt;}
._3a{width:32.048640pt;}
._20{width:34.572160pt;}
._d{width:36.316800pt;}
._e{width:37.554987pt;}
._16{width:38.893227pt;}
._1d{width:40.021760pt;}
._35{width:41.857920pt;}
._36{width:42.861440pt;}
._34{width:44.335787pt;}
._1c{width:45.302400pt;}
._3b{width:47.623680pt;}
._17{width:48.821760pt;}
._37{width:50.319360pt;}
._2a{width:54.362880pt;}
._2b{width:55.688320pt;}
._a{width:56.983680pt;}
._24{width:66.044160pt;}
._21{width:73.681920pt;}
._22{width:74.805120pt;}
._1e{width:75.778560pt;}
._1f{width:76.804480pt;}
._29{width:77.763627pt;}
._1a{width:78.838187pt;}
._1b{width:79.907413pt;}
._25{width:85.063680pt;}
._26{width:86.112000pt;}
._27{width:107.827200pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y44{bottom:81.152000pt;}
.y7f{bottom:85.312000pt;}
.y6d{bottom:98.432000pt;}
.y43{bottom:102.592000pt;}
.y7e{bottom:106.112000pt;}
.y2c{bottom:118.752000pt;}
.y6c{bottom:119.872000pt;}
.y42{bottom:124.032000pt;}
.y7d{bottom:126.752000pt;}
.y2b{bottom:140.186667pt;}
.y6b{bottom:141.466667pt;}
.y41{bottom:145.466667pt;}
.y7c{bottom:147.386667pt;}
.y2a{bottom:161.626667pt;}
.y6a{bottom:162.906667pt;}
.y40{bottom:167.066667pt;}
.y7b{bottom:168.186667pt;}
.y29{bottom:183.066667pt;}
.y69{bottom:184.346667pt;}
.y3f{bottom:188.506667pt;}
.y7a{bottom:188.826667pt;}
.y28{bottom:204.666667pt;}
.y68{bottom:205.786667pt;}
.y79{bottom:209.466667pt;}
.y3e{bottom:209.946667pt;}
.y27{bottom:226.106667pt;}
.y67{bottom:227.226667pt;}
.y78{bottom:230.266667pt;}
.y3d{bottom:231.386667pt;}
.y26{bottom:247.586667pt;}
.y66{bottom:248.706667pt;}
.y77{bottom:250.946667pt;}
.y3c{bottom:252.866667pt;}
.y25{bottom:269.026667pt;}
.y65{bottom:270.146667pt;}
.y76{bottom:271.586667pt;}
.y3b{bottom:274.306667pt;}
.y24{bottom:290.466667pt;}
.y64{bottom:291.746667pt;}
.y75{bottom:292.386667pt;}
.y3a{bottom:295.746667pt;}
.y23{bottom:311.906667pt;}
.y74{bottom:313.026667pt;}
.y63{bottom:313.186667pt;}
.y39{bottom:317.346667pt;}
.y22{bottom:333.346667pt;}
.y73{bottom:333.826667pt;}
.y62{bottom:334.626667pt;}
.y38{bottom:338.786667pt;}
.y72{bottom:354.466667pt;}
.y21{bottom:354.946667pt;}
.y61{bottom:356.066667pt;}
.y37{bottom:360.226667pt;}
.y71{bottom:375.106667pt;}
.y20{bottom:376.386667pt;}
.y60{bottom:377.506667pt;}
.y36{bottom:381.666667pt;}
.y70{bottom:395.906667pt;}
.y1f{bottom:397.826667pt;}
.y5f{bottom:398.946667pt;}
.y35{bottom:403.106667pt;}
.y6f{bottom:416.546667pt;}
.y1e{bottom:419.266667pt;}
.y5e{bottom:420.546667pt;}
.y34{bottom:424.546667pt;}
.y6e{bottom:437.186667pt;}
.y1d{bottom:440.706667pt;}
.y5d{bottom:441.986667pt;}
.y33{bottom:446.146667pt;}
.y5c{bottom:463.426667pt;}
.y32{bottom:467.586667pt;}
.y1c{bottom:468.866667pt;}
.y5b{bottom:484.866667pt;}
.y31{bottom:489.026667pt;}
.y1b{bottom:490.306667pt;}
.y5a{bottom:506.333333pt;}
.y30{bottom:510.493333pt;}
.y1a{bottom:511.773333pt;}
.y59{bottom:527.773333pt;}
.y19{bottom:538.653333pt;}
.y58{bottom:549.373333pt;}
.y2f{bottom:560.093333pt;}
.y57{bottom:570.813333pt;}
.y18{bottom:581.533333pt;}
.y56{bottom:592.253333pt;}
.y17{bottom:602.973333pt;}
.y55{bottom:613.693333pt;}
.y16{bottom:624.413333pt;}
.y54{bottom:635.133333pt;}
.y15{bottom:646.013333pt;}
.y53{bottom:656.573333pt;}
.y14{bottom:667.453333pt;}
.y52{bottom:678.013333pt;}
.y13{bottom:688.893333pt;}
.y51{bottom:699.613333pt;}
.y12{bottom:710.333333pt;}
.y50{bottom:721.053333pt;}
.y11{bottom:731.773333pt;}
.y4f{bottom:742.493333pt;}
.y10{bottom:753.253333pt;}
.y4e{bottom:763.973333pt;}
.yf{bottom:774.853333pt;}
.y4d{bottom:785.413333pt;}
.ye{bottom:796.293333pt;}
.y4c{bottom:806.853333pt;}
.yd{bottom:817.733333pt;}
.y4b{bottom:828.453333pt;}
.yc{bottom:839.173333pt;}
.y4a{bottom:849.893333pt;}
.yb{bottom:860.613333pt;}
.y49{bottom:871.333333pt;}
.ya{bottom:882.053333pt;}
.y48{bottom:892.773333pt;}
.y2e{bottom:903.493333pt;}
.y9{bottom:908.933333pt;}
.y47{bottom:914.213333pt;}
.y8{bottom:930.373333pt;}
.y46{bottom:935.653333pt;}
.y7{bottom:951.813333pt;}
.y45{bottom:957.093333pt;}
.y2d{bottom:973.253333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h5{height:65.373750pt;}
.h4{height:65.995312pt;}
.h7{height:70.978125pt;}
.h2{height:73.490625pt;}
.h6{height:74.333564pt;}
.h3{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.xe{left:77.119988pt;}
.x16{left:99.871988pt;}
.xf{left:110.431988pt;}
.x13{left:113.631988pt;}
.x9{left:123.871988pt;}
.x3{left:129.471988pt;}
.x4{left:136.666655pt;}
.x12{left:145.306655pt;}
.xa{left:169.946655pt;}
.x8{left:203.226655pt;}
.xd{left:208.986655pt;}
.x11{left:225.306655pt;}
.xc{left:233.306655pt;}
.x10{left:243.386655pt;}
.x6{left:251.066655pt;}
.x7{left:263.066655pt;}
.xb{left:274.626655pt;}
.x5{left:323.586655pt;}
.x15{left:356.706655pt;}
.x14{left:387.586655pt;}
.x2{left:392.226655pt;}
}




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