
    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_6341626ccbb4914ca7a90133.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f977bc23332b67bc6d4a6fbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_ba051cbcce90bcea1c523e4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706055;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_6ec97e1b4e0fbb4ffd9fce9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.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:-18.000000px;}
.ws2{word-spacing:-17.985600px;}
.ws0{word-spacing:0.000000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:1.500000px;}
.y7e{bottom:4.140000px;}
.y7c{bottom:4.260000px;}
.y2c{bottom:4.380000px;}
.y3e{bottom:4.500000px;}
.y3b{bottom:4.620000px;}
.y38{bottom:4.740000px;}
.y35{bottom:4.860000px;}
.y74{bottom:5.040000px;}
.y5a{bottom:5.100000px;}
.y5d{bottom:5.220000px;}
.y5c{bottom:5.340000px;}
.y51{bottom:5.400000px;}
.y63{bottom:5.460000px;}
.y48{bottom:5.520000px;}
.y61{bottom:5.580000px;}
.y5f{bottom:5.700000px;}
.y30{bottom:5.820000px;}
.y41{bottom:5.880000px;}
.y32{bottom:8.220000px;}
.y6b{bottom:8.820000px;}
.y69{bottom:8.940000px;}
.y27{bottom:9.000000px;}
.y67{bottom:9.060000px;}
.y3d{bottom:25.020000px;}
.y3a{bottom:25.140000px;}
.y2b{bottom:25.260000px;}
.y57{bottom:25.380000px;}
.y37{bottom:25.620000px;}
.y34{bottom:25.740000px;}
.y73{bottom:25.920000px;}
.y59{bottom:25.980000px;}
.y2f{bottom:26.340000px;}
.y40{bottom:26.400000px;}
.y2a{bottom:45.780000px;}
.y79{bottom:45.900000px;}
.y44{bottom:46.140000px;}
.y4e{bottom:46.260000px;}
.y72{bottom:46.440000px;}
.y77{bottom:46.920000px;}
.y2e{bottom:47.220000px;}
.y4a{bottom:47.280000px;}
.y55{bottom:51.660000px;}
.y29{bottom:66.660000px;}
.y78{bottom:66.780000px;}
.y4d{bottom:67.140000px;}
.y71{bottom:67.320000px;}
.y76{bottom:67.800000px;}
.y54{bottom:72.180000px;}
.y70{bottom:87.840000px;}
.y53{bottom:93.060000px;}
.y6f{bottom:108.720000px;}
.y52{bottom:121.500000px;}
.y28{bottom:142.500000px;}
.y5b{bottom:145.500000px;}
.y58{bottom:169.500000px;}
.y56{bottom:211.500000px;}
.y26{bottom:225.000000px;}
.y50{bottom:252.000000px;}
.y25{bottom:255.240000px;}
.y86{bottom:272.880000px;}
.y24{bottom:276.120000px;}
.y4f{bottom:277.500000px;}
.y85{bottom:293.760000px;}
.y23{bottom:296.640000px;}
.y84{bottom:314.280000px;}
.y22{bottom:317.520000px;}
.y4c{bottom:319.500000px;}
.y83{bottom:335.160000px;}
.y21{bottom:338.040000px;}
.y82{bottom:355.680000px;}
.y20{bottom:358.920000px;}
.y81{bottom:376.560000px;}
.y1f{bottom:379.440000px;}
.y80{bottom:397.080000px;}
.y1e{bottom:400.320000px;}
.y4b{bottom:403.500000px;}
.y1d{bottom:420.840000px;}
.y7f{bottom:428.040000px;}
.y7d{bottom:445.500000px;}
.y1c{bottom:450.720000px;}
.y49{bottom:465.000000px;}
.y1b{bottom:480.240000px;}
.y7b{bottom:487.500000px;}
.y1a{bottom:510.120000px;}
.y47{bottom:528.000000px;}
.y7a{bottom:529.500000px;}
.y19{bottom:539.640000px;}
.y18{bottom:569.520000px;}
.y46{bottom:571.500000px;}
.y17{bottom:599.040000px;}
.y45{bottom:613.500000px;}
.y16{bottom:628.920000px;}
.y15{bottom:649.440000px;}
.y75{bottom:654.000000px;}
.y43{bottom:655.500000px;}
.y14{bottom:670.320000px;}
.y13{bottom:690.840000px;}
.y12{bottom:711.720000px;}
.y42{bottom:718.500000px;}
.y11{bottom:732.240000px;}
.y6e{bottom:738.000000px;}
.y10{bottom:753.120000px;}
.yf{bottom:773.640000px;}
.y3f{bottom:780.000000px;}
.ye{bottom:794.520000px;}
.yd{bottom:815.040000px;}
.y3c{bottom:823.500000px;}
.yc{bottom:835.920000px;}
.yb{bottom:856.440000px;}
.y6c{bottom:862.500000px;}
.y39{bottom:865.500000px;}
.ya{bottom:877.320000px;}
.y6a{bottom:886.500000px;}
.y9{bottom:897.840000px;}
.y36{bottom:907.500000px;}
.y68{bottom:910.500000px;}
.y8{bottom:918.720000px;}
.y66{bottom:934.500000px;}
.y7{bottom:939.240000px;}
.y33{bottom:949.500000px;}
.y65{bottom:958.500000px;}
.y6{bottom:960.120000px;}
.y5{bottom:980.640000px;}
.y64{bottom:982.500000px;}
.y31{bottom:991.500000px;}
.y4{bottom:1001.520000px;}
.y62{bottom:1006.500000px;}
.y2d{bottom:1015.500000px;}
.y3{bottom:1022.040000px;}
.y60{bottom:1030.500000px;}
.y2{bottom:1042.920000px;}
.y5e{bottom:1054.500000px;}
.y1{bottom:1063.440000px;}
.hd{height:1.919531px;}
.hb{height:22.500000px;}
.h4{height:25.500000px;}
.h8{height:42.000000px;}
.h7{height:43.500000px;}
.h3{height:48.796875px;}
.h2{height:49.992188px;}
.h1{height:50.027344px;}
.h9{height:63.000000px;}
.h6{height:64.500000px;}
.h5{height:84.000000px;}
.hf{height:85.500000px;}
.he{height:126.000000px;}
.ha{height:156.000000px;}
.hc{height:217.500000px;}
.h0{height:1188.000000px;}
.w2{width:318.000000px;}
.w3{width:319.500000px;}
.w1{width:393.000000px;}
.w4{width:423.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:7.920036px;}
.xd{left:10.410120px;}
.x1a{left:12.070080px;}
.x1c{left:14.078160px;}
.x20{left:15.334920px;}
.x11{left:17.186760px;}
.x16{left:19.347480px;}
.x22{left:20.349360px;}
.xc{left:22.147920px;}
.x15{left:25.815960px;}
.x18{left:27.609120px;}
.x23{left:28.848240px;}
.x13{left:31.071960px;}
.x27{left:32.082840px;}
.x26{left:34.578720px;}
.x9{left:38.904480px;}
.xa{left:41.905800px;}
.x8{left:43.650360px;}
.x14{left:46.356120px;}
.xf{left:54.645480px;}
.x17{left:56.832840px;}
.x25{left:61.086600px;}
.x1d{left:65.344680px;}
.x6{left:67.631400px;}
.x21{left:77.073840px;}
.x12{left:83.627640px;}
.x19{left:93.056760px;}
.x1e{left:98.325720px;}
.xe{left:99.408240px;}
.x10{left:104.132520px;}
.x4{left:106.365240px;}
.x1{left:108.000000px;}
.x24{left:115.500000px;}
.x1f{left:122.557320px;}
.xb{left:124.887960px;}
.x1b{left:128.063520px;}
.x2{left:162.000000px;}
.x3{left:216.000000px;}
.x28{left:459.000000px;}
.x5{left:499.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.987200pt;}
.ws0{word-spacing:0.000000pt;}
.fs1{font-size:2.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:1.333333pt;}
.y7e{bottom:3.680000pt;}
.y7c{bottom:3.786667pt;}
.y2c{bottom:3.893333pt;}
.y3e{bottom:4.000000pt;}
.y3b{bottom:4.106667pt;}
.y38{bottom:4.213333pt;}
.y35{bottom:4.320000pt;}
.y74{bottom:4.480000pt;}
.y5a{bottom:4.533333pt;}
.y5d{bottom:4.640000pt;}
.y5c{bottom:4.746667pt;}
.y51{bottom:4.800000pt;}
.y63{bottom:4.853333pt;}
.y48{bottom:4.906667pt;}
.y61{bottom:4.960000pt;}
.y5f{bottom:5.066667pt;}
.y30{bottom:5.173333pt;}
.y41{bottom:5.226667pt;}
.y32{bottom:7.306667pt;}
.y6b{bottom:7.840000pt;}
.y69{bottom:7.946667pt;}
.y27{bottom:8.000000pt;}
.y67{bottom:8.053333pt;}
.y3d{bottom:22.240000pt;}
.y3a{bottom:22.346667pt;}
.y2b{bottom:22.453333pt;}
.y57{bottom:22.560000pt;}
.y37{bottom:22.773333pt;}
.y34{bottom:22.880000pt;}
.y73{bottom:23.040000pt;}
.y59{bottom:23.093333pt;}
.y2f{bottom:23.413333pt;}
.y40{bottom:23.466667pt;}
.y2a{bottom:40.693333pt;}
.y79{bottom:40.800000pt;}
.y44{bottom:41.013333pt;}
.y4e{bottom:41.120000pt;}
.y72{bottom:41.280000pt;}
.y77{bottom:41.706667pt;}
.y2e{bottom:41.973333pt;}
.y4a{bottom:42.026667pt;}
.y55{bottom:45.920000pt;}
.y29{bottom:59.253333pt;}
.y78{bottom:59.360000pt;}
.y4d{bottom:59.680000pt;}
.y71{bottom:59.840000pt;}
.y76{bottom:60.266667pt;}
.y54{bottom:64.160000pt;}
.y70{bottom:78.080000pt;}
.y53{bottom:82.720000pt;}
.y6f{bottom:96.640000pt;}
.y52{bottom:108.000000pt;}
.y28{bottom:126.666667pt;}
.y5b{bottom:129.333333pt;}
.y58{bottom:150.666667pt;}
.y56{bottom:188.000000pt;}
.y26{bottom:200.000000pt;}
.y50{bottom:224.000000pt;}
.y25{bottom:226.880000pt;}
.y86{bottom:242.560000pt;}
.y24{bottom:245.440000pt;}
.y4f{bottom:246.666667pt;}
.y85{bottom:261.120000pt;}
.y23{bottom:263.680000pt;}
.y84{bottom:279.360000pt;}
.y22{bottom:282.240000pt;}
.y4c{bottom:284.000000pt;}
.y83{bottom:297.920000pt;}
.y21{bottom:300.480000pt;}
.y82{bottom:316.160000pt;}
.y20{bottom:319.040000pt;}
.y81{bottom:334.720000pt;}
.y1f{bottom:337.280000pt;}
.y80{bottom:352.960000pt;}
.y1e{bottom:355.840000pt;}
.y4b{bottom:358.666667pt;}
.y1d{bottom:374.080000pt;}
.y7f{bottom:380.480000pt;}
.y7d{bottom:396.000000pt;}
.y1c{bottom:400.640000pt;}
.y49{bottom:413.333333pt;}
.y1b{bottom:426.880000pt;}
.y7b{bottom:433.333333pt;}
.y1a{bottom:453.440000pt;}
.y47{bottom:469.333333pt;}
.y7a{bottom:470.666667pt;}
.y19{bottom:479.680000pt;}
.y18{bottom:506.240000pt;}
.y46{bottom:508.000000pt;}
.y17{bottom:532.480000pt;}
.y45{bottom:545.333333pt;}
.y16{bottom:559.040000pt;}
.y15{bottom:577.280000pt;}
.y75{bottom:581.333333pt;}
.y43{bottom:582.666667pt;}
.y14{bottom:595.840000pt;}
.y13{bottom:614.080000pt;}
.y12{bottom:632.640000pt;}
.y42{bottom:638.666667pt;}
.y11{bottom:650.880000pt;}
.y6e{bottom:656.000000pt;}
.y10{bottom:669.440000pt;}
.yf{bottom:687.680000pt;}
.y3f{bottom:693.333333pt;}
.ye{bottom:706.240000pt;}
.yd{bottom:724.480000pt;}
.y3c{bottom:732.000000pt;}
.yc{bottom:743.040000pt;}
.yb{bottom:761.280000pt;}
.y6c{bottom:766.666667pt;}
.y39{bottom:769.333333pt;}
.ya{bottom:779.840000pt;}
.y6a{bottom:788.000000pt;}
.y9{bottom:798.080000pt;}
.y36{bottom:806.666667pt;}
.y68{bottom:809.333333pt;}
.y8{bottom:816.640000pt;}
.y66{bottom:830.666667pt;}
.y7{bottom:834.880000pt;}
.y33{bottom:844.000000pt;}
.y65{bottom:852.000000pt;}
.y6{bottom:853.440000pt;}
.y5{bottom:871.680000pt;}
.y64{bottom:873.333333pt;}
.y31{bottom:881.333333pt;}
.y4{bottom:890.240000pt;}
.y62{bottom:894.666667pt;}
.y2d{bottom:902.666667pt;}
.y3{bottom:908.480000pt;}
.y60{bottom:916.000000pt;}
.y2{bottom:927.040000pt;}
.y5e{bottom:937.333333pt;}
.y1{bottom:945.280000pt;}
.hd{height:1.706250pt;}
.hb{height:20.000000pt;}
.h4{height:22.666667pt;}
.h8{height:37.333333pt;}
.h7{height:38.666667pt;}
.h3{height:43.375000pt;}
.h2{height:44.437500pt;}
.h1{height:44.468750pt;}
.h9{height:56.000000pt;}
.h6{height:57.333333pt;}
.h5{height:74.666667pt;}
.hf{height:76.000000pt;}
.he{height:112.000000pt;}
.ha{height:138.666667pt;}
.hc{height:193.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:282.666667pt;}
.w3{width:284.000000pt;}
.w1{width:349.333333pt;}
.w4{width:376.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.040032pt;}
.xd{left:9.253440pt;}
.x1a{left:10.728960pt;}
.x1c{left:12.513920pt;}
.x20{left:13.631040pt;}
.x11{left:15.277120pt;}
.x16{left:17.197760pt;}
.x22{left:18.088320pt;}
.xc{left:19.687040pt;}
.x15{left:22.947520pt;}
.x18{left:24.541440pt;}
.x23{left:25.642880pt;}
.x13{left:27.619520pt;}
.x27{left:28.518080pt;}
.x26{left:30.736640pt;}
.x9{left:34.581760pt;}
.xa{left:37.249600pt;}
.x8{left:38.800320pt;}
.x14{left:41.205440pt;}
.xf{left:48.573760pt;}
.x17{left:50.518080pt;}
.x25{left:54.299200pt;}
.x1d{left:58.084160pt;}
.x6{left:60.116800pt;}
.x21{left:68.510080pt;}
.x12{left:74.335680pt;}
.x19{left:82.717120pt;}
.x1e{left:87.400640pt;}
.xe{left:88.362880pt;}
.x10{left:92.562240pt;}
.x4{left:94.546880pt;}
.x1{left:96.000000pt;}
.x24{left:102.666667pt;}
.x1f{left:108.939840pt;}
.xb{left:111.011520pt;}
.x1b{left:113.834240pt;}
.x2{left:144.000000pt;}
.x3{left:192.000000pt;}
.x28{left:408.000000pt;}
.x5{left:444.000000pt;}
}




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