
    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_cb1eb1b3d0924754500cc56d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_b4b1f6593b36773f01b79aec.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a643101b9eb72134d85fc399.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916016;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_b17c5cfbdffe7658e1180a5a.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_dca58517c33ccfb78b20e490.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_e0cda354eb6207852767e73c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_3e2aa4ff0d54f6f0ed401d8f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.027360px;}
.ls3{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.540000px;}
.lsd{letter-spacing:1.061280px;}
.ls6{letter-spacing:11.861280px;}
.ls7{letter-spacing:13.500000px;}
.ls8{letter-spacing:14.220000px;}
.ls5{letter-spacing:18.341280px;}
.lsb{letter-spacing:21.221280px;}
.lse{letter-spacing:41.381280px;}
.lsa{letter-spacing:54.540000px;}
.lsc{letter-spacing:55.980000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:0.000000px;}
._25{margin-left:-5.896800px;}
._9{margin-left:-4.801680px;}
._1d{margin-left:-3.369600px;}
._1{margin-left:-1.684800px;}
._0{width:1.532160px;}
._7{width:2.784960px;}
._2e{width:4.134960px;}
._13{width:5.307120px;}
._1e{width:6.570720px;}
._26{width:7.918560px;}
._14{width:10.445760px;}
._6{width:12.888720px;}
._4{width:13.899600px;}
._5{width:14.994720px;}
._15{width:17.016480px;}
._17{width:18.280080px;}
._b{width:19.290960px;}
._3{width:22.155120px;}
._2a{width:24.092640px;}
._f{width:25.861680px;}
._10{width:27.277920px;}
._28{width:29.736720px;}
._29{width:30.747600px;}
._2b{width:32.432400px;}
._33{width:33.443280px;}
._2d{width:34.454160px;}
._24{width:35.549280px;}
._8{width:37.065600px;}
._2c{width:39.677040px;}
._27{width:44.478720px;}
._1f{width:47.427120px;}
._1a{width:50.291280px;}
._1c{width:51.302160px;}
._1b{width:52.313040px;}
._2f{width:53.660880px;}
._30{width:54.787440px;}
._16{width:56.440800px;}
._c{width:63.769680px;}
._31{width:65.504160px;}
._32{width:66.686160px;}
._a{width:67.728960px;}
._d{width:71.419680px;}
._e{width:72.714960px;}
._19{width:75.900240px;}
._18{width:77.248080px;}
._2{width:88.367760px;}
._12{width:102.351600px;}
._20{width:110.844000px;}
._22{width:146.914560px;}
._23{width:148.093920px;}
._11{width:261.312480px;}
._21{width:334.011600px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y20{bottom:8.100000px;}
.ye{bottom:8.145000px;}
.y22{bottom:8.280000px;}
.y1f{bottom:35.820000px;}
.y35{bottom:36.045000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y2a{bottom:63.534000px;}
.y1e{bottom:63.720000px;}
.y34{bottom:63.765000px;}
.y29{bottom:91.434000px;}
.y1d{bottom:91.440000px;}
.y33{bottom:91.485000px;}
.y23{bottom:112.716000px;}
.y42{bottom:117.756000px;}
.y28{bottom:119.154000px;}
.y1c{bottom:119.160000px;}
.y32{bottom:119.205000px;}
.y66{bottom:119.916000px;}
.y41{bottom:145.476000px;}
.y27{bottom:146.874000px;}
.y1b{bottom:146.880000px;}
.y31{bottom:147.105000px;}
.y65{bottom:147.636000px;}
.y40{bottom:173.190000px;}
.y26{bottom:174.774000px;}
.y1a{bottom:174.780000px;}
.y30{bottom:174.825000px;}
.y64{bottom:175.530000px;}
.y3f{bottom:200.910000px;}
.y25{bottom:202.494000px;}
.y19{bottom:202.500000px;}
.y2f{bottom:202.545000px;}
.y63{bottom:203.250000px;}
.y3e{bottom:228.810000px;}
.y39{bottom:230.220000px;}
.y18{bottom:230.250000px;}
.y24{bottom:230.259000px;}
.y2e{bottom:230.445000px;}
.y62{bottom:230.970000px;}
.y3d{bottom:256.530000px;}
.y17{bottom:257.970000px;}
.y38{bottom:258.150000px;}
.y2d{bottom:258.165000px;}
.y61{bottom:258.690000px;}
.y3c{bottom:284.250000px;}
.y16{bottom:285.870000px;}
.y2c{bottom:285.915000px;}
.y60{bottom:286.590000px;}
.y3b{bottom:311.970000px;}
.y15{bottom:313.590000px;}
.y5f{bottom:314.310000px;}
.y3a{bottom:339.915000px;}
.y14{bottom:341.310000px;}
.y5e{bottom:342.075000px;}
.y37{bottom:359.535000px;}
.y21{bottom:363.315000px;}
.y13{bottom:369.210000px;}
.y5d{bottom:369.975000px;}
.yf{bottom:391.935000px;}
.y12{bottom:396.930000px;}
.y5c{bottom:397.695000px;}
.y11{bottom:424.650000px;}
.y5b{bottom:425.415000px;}
.y10{bottom:452.370000px;}
.y5a{bottom:453.135000px;}
.y59{bottom:481.035000px;}
.y58{bottom:508.755000px;}
.y57{bottom:536.475000px;}
.y56{bottom:564.195000px;}
.y55{bottom:592.095000px;}
.y54{bottom:619.845000px;}
.y53{bottom:647.565000px;}
.y52{bottom:675.465000px;}
.y51{bottom:703.185000px;}
.y50{bottom:730.905000px;}
.y4f{bottom:758.625000px;}
.y4e{bottom:786.525000px;}
.y4d{bottom:814.245000px;}
.y36{bottom:832.425000px;}
.y4c{bottom:841.965000px;}
.y2b{bottom:860.865000px;}
.yd{bottom:864.825000px;}
.y4b{bottom:869.865000px;}
.y4a{bottom:897.630000px;}
.yc{bottom:901.410000px;}
.y49{bottom:925.350000px;}
.yb{bottom:929.310000px;}
.y48{bottom:953.070000px;}
.ya{bottom:957.030000px;}
.y47{bottom:980.970000px;}
.y9{bottom:984.750000px;}
.y46{bottom:1008.690000px;}
.y8{bottom:1013.730000px;}
.y45{bottom:1036.410000px;}
.y7{bottom:1045.590000px;}
.y44{bottom:1064.130000px;}
.y6{bottom:1077.270000px;}
.y43{bottom:1092.030000px;}
.y5{bottom:1119.750000px;}
.y4{bottom:1147.500000px;}
.h3{height:22.536000px;}
.hd{height:27.720000px;}
.h8{height:27.756000px;}
.ha{height:27.900000px;}
.h5{height:58.984453px;}
.h2{height:59.066719px;}
.h4{height:59.436914px;}
.hf{height:61.329023px;}
.h7{height:61.575820px;}
.he{height:64.496250px;}
.h6{height:67.565039px;}
.hb{height:249.870000px;}
.hc{height:305.535000px;}
.h9{height:471.990000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.896000px;}
.w5{width:244.650000px;}
.w4{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x10{left:10.620000px;}
.x3{left:18.900000px;}
.xe{left:61.194000px;}
.xf{left:63.894000px;}
.x1{left:95.795987px;}
.x6{left:119.195987px;}
.x12{left:122.795987px;}
.x14{left:126.935987px;}
.x13{left:140.975987px;}
.x5{left:145.115987px;}
.x11{left:148.895987px;}
.xa{left:270.569987px;}
.x9{left:325.334987px;}
.x7{left:405.074987px;}
.x2{left:421.815000px;}
.xb{left:446.474987px;}
.x4{left:451.874987px;}
.x8{left:515.444987px;}
.xd{left:574.305000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024320pt;}
.ls3{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.943360pt;}
.ls6{letter-spacing:10.543360pt;}
.ls7{letter-spacing:12.000000pt;}
.ls8{letter-spacing:12.640000pt;}
.ls5{letter-spacing:16.303360pt;}
.lsb{letter-spacing:18.863360pt;}
.lse{letter-spacing:36.783360pt;}
.lsa{letter-spacing:48.480000pt;}
.lsc{letter-spacing:49.760000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:0.000000pt;}
._25{margin-left:-5.241600pt;}
._9{margin-left:-4.268160pt;}
._1d{margin-left:-2.995200pt;}
._1{margin-left:-1.497600pt;}
._0{width:1.361920pt;}
._7{width:2.475520pt;}
._2e{width:3.675520pt;}
._13{width:4.717440pt;}
._1e{width:5.840640pt;}
._26{width:7.038720pt;}
._14{width:9.285120pt;}
._6{width:11.456640pt;}
._4{width:12.355200pt;}
._5{width:13.328640pt;}
._15{width:15.125760pt;}
._17{width:16.248960pt;}
._b{width:17.147520pt;}
._3{width:19.693440pt;}
._2a{width:21.415680pt;}
._f{width:22.988160pt;}
._10{width:24.247040pt;}
._28{width:26.432640pt;}
._29{width:27.331200pt;}
._2b{width:28.828800pt;}
._33{width:29.727360pt;}
._2d{width:30.625920pt;}
._24{width:31.599360pt;}
._8{width:32.947200pt;}
._2c{width:35.268480pt;}
._27{width:39.536640pt;}
._1f{width:42.157440pt;}
._1a{width:44.703360pt;}
._1c{width:45.601920pt;}
._1b{width:46.500480pt;}
._2f{width:47.698560pt;}
._30{width:48.699947pt;}
._16{width:50.169600pt;}
._c{width:56.684160pt;}
._31{width:58.225920pt;}
._32{width:59.276587pt;}
._a{width:60.203520pt;}
._d{width:63.484160pt;}
._e{width:64.635520pt;}
._19{width:67.466880pt;}
._18{width:68.664960pt;}
._2{width:78.549120pt;}
._12{width:90.979200pt;}
._20{width:98.528000pt;}
._22{width:130.590720pt;}
._23{width:131.639040pt;}
._11{width:232.277760pt;}
._21{width:296.899200pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y20{bottom:7.200000pt;}
.ye{bottom:7.240000pt;}
.y22{bottom:7.360000pt;}
.y1f{bottom:31.840000pt;}
.y35{bottom:32.040000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y2a{bottom:56.474667pt;}
.y1e{bottom:56.640000pt;}
.y34{bottom:56.680000pt;}
.y29{bottom:81.274667pt;}
.y1d{bottom:81.280000pt;}
.y33{bottom:81.320000pt;}
.y23{bottom:100.192000pt;}
.y42{bottom:104.672000pt;}
.y28{bottom:105.914667pt;}
.y1c{bottom:105.920000pt;}
.y32{bottom:105.960000pt;}
.y66{bottom:106.592000pt;}
.y41{bottom:129.312000pt;}
.y27{bottom:130.554667pt;}
.y1b{bottom:130.560000pt;}
.y31{bottom:130.760000pt;}
.y65{bottom:131.232000pt;}
.y40{bottom:153.946667pt;}
.y26{bottom:155.354667pt;}
.y1a{bottom:155.360000pt;}
.y30{bottom:155.400000pt;}
.y64{bottom:156.026667pt;}
.y3f{bottom:178.586667pt;}
.y25{bottom:179.994667pt;}
.y19{bottom:180.000000pt;}
.y2f{bottom:180.040000pt;}
.y63{bottom:180.666667pt;}
.y3e{bottom:203.386667pt;}
.y39{bottom:204.640000pt;}
.y18{bottom:204.666667pt;}
.y24{bottom:204.674667pt;}
.y2e{bottom:204.840000pt;}
.y62{bottom:205.306667pt;}
.y3d{bottom:228.026667pt;}
.y17{bottom:229.306667pt;}
.y38{bottom:229.466667pt;}
.y2d{bottom:229.480000pt;}
.y61{bottom:229.946667pt;}
.y3c{bottom:252.666667pt;}
.y16{bottom:254.106667pt;}
.y2c{bottom:254.146667pt;}
.y60{bottom:254.746667pt;}
.y3b{bottom:277.306667pt;}
.y15{bottom:278.746667pt;}
.y5f{bottom:279.386667pt;}
.y3a{bottom:302.146667pt;}
.y14{bottom:303.386667pt;}
.y5e{bottom:304.066667pt;}
.y37{bottom:319.586667pt;}
.y21{bottom:322.946667pt;}
.y13{bottom:328.186667pt;}
.y5d{bottom:328.866667pt;}
.yf{bottom:348.386667pt;}
.y12{bottom:352.826667pt;}
.y5c{bottom:353.506667pt;}
.y11{bottom:377.466667pt;}
.y5b{bottom:378.146667pt;}
.y10{bottom:402.106667pt;}
.y5a{bottom:402.786667pt;}
.y59{bottom:427.586667pt;}
.y58{bottom:452.226667pt;}
.y57{bottom:476.866667pt;}
.y56{bottom:501.506667pt;}
.y55{bottom:526.306667pt;}
.y54{bottom:550.973333pt;}
.y53{bottom:575.613333pt;}
.y52{bottom:600.413333pt;}
.y51{bottom:625.053333pt;}
.y50{bottom:649.693333pt;}
.y4f{bottom:674.333333pt;}
.y4e{bottom:699.133333pt;}
.y4d{bottom:723.773333pt;}
.y36{bottom:739.933333pt;}
.y4c{bottom:748.413333pt;}
.y2b{bottom:765.213333pt;}
.yd{bottom:768.733333pt;}
.y4b{bottom:773.213333pt;}
.y4a{bottom:797.893333pt;}
.yc{bottom:801.253333pt;}
.y49{bottom:822.533333pt;}
.yb{bottom:826.053333pt;}
.y48{bottom:847.173333pt;}
.ya{bottom:850.693333pt;}
.y47{bottom:871.973333pt;}
.y9{bottom:875.333333pt;}
.y46{bottom:896.613333pt;}
.y8{bottom:901.093333pt;}
.y45{bottom:921.253333pt;}
.y7{bottom:929.413333pt;}
.y44{bottom:945.893333pt;}
.y6{bottom:957.573333pt;}
.y43{bottom:970.693333pt;}
.y5{bottom:995.333333pt;}
.y4{bottom:1020.000000pt;}
.h3{height:20.032000pt;}
.hd{height:24.640000pt;}
.h8{height:24.672000pt;}
.ha{height:24.800000pt;}
.h5{height:52.430625pt;}
.h2{height:52.503750pt;}
.h4{height:52.832812pt;}
.hf{height:54.514687pt;}
.h7{height:54.734062pt;}
.he{height:57.330000pt;}
.h6{height:60.057813pt;}
.hb{height:222.106667pt;}
.hc{height:271.586667pt;}
.h9{height:419.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.352000pt;}
.w5{width:217.466667pt;}
.w4{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x10{left:9.440000pt;}
.x3{left:16.800000pt;}
.xe{left:54.394667pt;}
.xf{left:56.794667pt;}
.x1{left:85.151988pt;}
.x6{left:105.951988pt;}
.x12{left:109.151988pt;}
.x14{left:112.831988pt;}
.x13{left:125.311988pt;}
.x5{left:128.991988pt;}
.x11{left:132.351988pt;}
.xa{left:240.506655pt;}
.x9{left:289.186655pt;}
.x7{left:360.066655pt;}
.x2{left:374.946667pt;}
.xb{left:396.866655pt;}
.x4{left:401.666655pt;}
.x8{left:458.173322pt;}
.xd{left:510.493333pt;}
}




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