
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e68e2112deaac50232d9a7d2.woff')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_555717be022124f2538c2d0b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_b25991d60df040a403df9a91.woff')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_fec288535ac41906fed588de.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a8ffb9a06331399770cd4b56.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_957157e713011429a29a807a.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6e357f414e1ff536b8b45539.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls2{letter-spacing:-0.237600px;}
.ls5{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.720000px;}
.ls0{letter-spacing:10.800000px;}
.ls6{letter-spacing:96.624000px;}
.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.159360px;}
.ws3{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-3.384000px;}
._e{margin-left:-2.232000px;}
._0{margin-left:-1.080000px;}
._1{width:1.080000px;}
._b{width:2.616000px;}
._f{width:4.248000px;}
._c{width:5.832000px;}
._d{width:6.960000px;}
._12{width:8.280000px;}
._3{width:10.152000px;}
._4{width:11.268000px;}
._7{width:12.744000px;}
._13{width:14.256000px;}
._14{width:15.492000px;}
._8{width:16.740000px;}
._a{width:20.232000px;}
._5{width:21.312000px;}
._6{width:22.392000px;}
._15{width:24.984000px;}
._16{width:26.280000px;}
._9{width:37.584000px;}
._10{width:42.120000px;}
._11{width:43.200000px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(204,0,102);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y54{bottom:7.020000px;}
.y26{bottom:7.200000px;}
.y28{bottom:7.380000px;}
.y66{bottom:7.425000px;}
.y2a{bottom:7.560000px;}
.y57{bottom:31.005000px;}
.y5b{bottom:31.140000px;}
.y65{bottom:31.185000px;}
.y60{bottom:31.320000px;}
.y5e{bottom:31.350000px;}
.y7{bottom:48.240000px;}
.y56{bottom:54.765000px;}
.y5a{bottom:55.080000px;}
.y6{bottom:68.580000px;}
.y55{bottom:78.525000px;}
.y59{bottom:78.840000px;}
.y52{bottom:79.245000px;}
.y5{bottom:92.340000px;}
.y51{bottom:103.005000px;}
.y5d{bottom:126.180000px;}
.y24{bottom:135.756000px;}
.y23{bottom:159.510000px;}
.y5c{bottom:174.630000px;}
.y22{bottom:183.630000px;}
.y21{bottom:207.390000px;}
.y20{bottom:231.330000px;}
.y7a{bottom:245.010000px;}
.y3f{bottom:248.250000px;}
.y1f{bottom:255.090000px;}
.y79{bottom:268.770000px;}
.y58{bottom:270.570000px;}
.y3e{bottom:272.010000px;}
.y1e{bottom:278.850000px;}
.y78{bottom:292.710000px;}
.y3d{bottom:295.770000px;}
.y1d{bottom:298.470000px;}
.y77{bottom:316.110000px;}
.y3c{bottom:319.170000px;}
.y3b{bottom:339.150000px;}
.y76{bottom:339.870000px;}
.y75{bottom:363.990000px;}
.y50{bottom:366.510000px;}
.y74{bottom:387.975000px;}
.y73{bottom:411.735000px;}
.y72{bottom:435.495000px;}
.y71{bottom:459.255000px;}
.y53{bottom:462.495000px;}
.y70{bottom:483.195000px;}
.y4f{bottom:494.175000px;}
.y6f{bottom:506.955000px;}
.y4e{bottom:517.935000px;}
.y6e{bottom:530.355000px;}
.y4d{bottom:542.055000px;}
.y6d{bottom:547.815000px;}
.y4c{bottom:565.995000px;}
.y4b{bottom:589.755000px;}
.y6c{bottom:596.235000px;}
.y4a{bottom:613.515000px;}
.y1c{bottom:634.935000px;}
.y49{bottom:637.275000px;}
.y6b{bottom:644.505000px;}
.y1b{bottom:658.725000px;}
.y48{bottom:661.245000px;}
.y3a{bottom:670.605000px;}
.y1a{bottom:682.485000px;}
.y47{bottom:685.005000px;}
.y6a{bottom:692.925000px;}
.y39{bottom:694.365000px;}
.y19{bottom:706.425000px;}
.y46{bottom:708.765000px;}
.y38{bottom:718.125000px;}
.y18{bottom:730.185000px;}
.y45{bottom:732.525000px;}
.y69{bottom:741.345000px;}
.y37{bottom:741.885000px;}
.y17{bottom:753.945000px;}
.y44{bottom:756.465000px;}
.y36{bottom:759.165000px;}
.y16{bottom:777.705000px;}
.y43{bottom:780.225000px;}
.y35{bottom:783.645000px;}
.y68{bottom:789.585000px;}
.y15{bottom:801.645000px;}
.y42{bottom:803.985000px;}
.y34{bottom:808.125000px;}
.y14{bottom:825.405000px;}
.y41{bottom:827.385000px;}
.y33{bottom:832.785000px;}
.y67{bottom:838.005000px;}
.y40{bottom:847.365000px;}
.y13{bottom:849.165000px;}
.y32{bottom:857.265000px;}
.y12{bottom:872.925000px;}
.y31{bottom:881.925000px;}
.y64{bottom:886.425000px;}
.y11{bottom:896.910000px;}
.y30{bottom:906.450000px;}
.y10{bottom:920.670000px;}
.y2f{bottom:930.930000px;}
.y63{bottom:934.710000px;}
.yf{bottom:944.070000px;}
.y2e{bottom:955.590000px;}
.ye{bottom:967.830000px;}
.y2d{bottom:980.070000px;}
.y62{bottom:983.130000px;}
.yd{bottom:991.770000px;}
.y2c{bottom:1004.730000px;}
.yc{bottom:1015.890000px;}
.y2b{bottom:1029.210000px;}
.y61{bottom:1031.550000px;}
.yb{bottom:1039.650000px;}
.y29{bottom:1053.690000px;}
.ya{bottom:1063.050000px;}
.y27{bottom:1078.350000px;}
.y5f{bottom:1079.790000px;}
.y9{bottom:1086.810000px;}
.y25{bottom:1102.830000px;}
.y8{bottom:1110.750000px;}
.y4{bottom:1131.630000px;}
.y3{bottom:1152.360000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1194.300000px;}
.ha{height:23.760000px;}
.hb{height:23.796000px;}
.h9{height:23.940000px;}
.h11{height:47.520000px;}
.h12{height:47.556000px;}
.h10{height:47.700000px;}
.hf{height:47.736000px;}
.h6{height:50.273438px;}
.h5{height:50.800781px;}
.h4{height:63.673594px;}
.h2{height:65.884219px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h3{height:72.562500px;}
.h13{height:74.004654px;}
.he{height:95.220000px;}
.hd{height:95.256000px;}
.hc{height:119.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:52.020000px;}
.wc{width:52.056000px;}
.wb{width:73.620000px;}
.w9{width:73.656000px;}
.w6{width:95.940000px;}
.w8{width:126.000000px;}
.w7{width:126.036000px;}
.w4{width:137.520000px;}
.w5{width:200.955000px;}
.w3{width:360.435000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:9.000000px;}
.x2d{left:10.260000px;}
.x26{left:11.880000px;}
.x3a{left:13.680000px;}
.x37{left:14.940000px;}
.x12{left:16.380000px;}
.x36{left:18.900000px;}
.x25{left:20.700000px;}
.x14{left:22.185000px;}
.x39{left:23.400000px;}
.x38{left:25.380000px;}
.x28{left:32.580000px;}
.x35{left:37.980000px;}
.x34{left:43.374000px;}
.x16{left:47.880000px;}
.x1d{left:52.380000px;}
.x21{left:71.145000px;}
.x17{left:75.645000px;}
.x1c{left:94.674000px;}
.xf{left:109.296000px;}
.x1{left:117.035987px;}
.x22{left:122.394000px;}
.x1a{left:133.554000px;}
.x3b{left:138.275987px;}
.x20{left:139.674000px;}
.x1e{left:141.114000px;}
.x1f{left:147.594000px;}
.x15{left:149.214000px;}
.x1b{left:151.194000px;}
.x19{left:153.759000px;}
.x18{left:157.719000px;}
.xc{left:170.129987px;}
.x5{left:178.049987px;}
.x10{left:180.219000px;}
.x2{left:185.249987px;}
.x27{left:205.590000px;}
.x6{left:271.334987px;}
.x2f{left:279.615000px;}
.xb{left:322.454987px;}
.x29{left:331.995000px;}
.x7{left:348.734987px;}
.xa{left:367.814987px;}
.x9{left:372.854987px;}
.x8{left:396.434987px;}
.x30{left:405.975000px;}
.x4{left:424.154987px;}
.xe{left:425.234987px;}
.x2a{left:458.385000px;}
.x11{left:470.445000px;}
.x3{left:473.144987px;}
.x31{left:532.365000px;}
.x2b{left:584.745000px;}
.x13{left:608.685000px;}
.x32{left:658.770000px;}
.x2c{left:711.150000px;}
.x23{left:762.089987px;}
.x33{left:785.130000px;}
.x24{left:806.219987px;}
.xd{left:818.279987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.211200pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls0{letter-spacing:9.600000pt;}
.ls6{letter-spacing:85.888000pt;}
.ws0{word-spacing:-18.808320pt;}
.ws3{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-3.008000pt;}
._e{margin-left:-1.984000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.960000pt;}
._b{width:2.325333pt;}
._f{width:3.776000pt;}
._c{width:5.184000pt;}
._d{width:6.186667pt;}
._12{width:7.360000pt;}
._3{width:9.024000pt;}
._4{width:10.016000pt;}
._7{width:11.328000pt;}
._13{width:12.672000pt;}
._14{width:13.770667pt;}
._8{width:14.880000pt;}
._a{width:17.984000pt;}
._5{width:18.944000pt;}
._6{width:19.904000pt;}
._15{width:22.208000pt;}
._16{width:23.360000pt;}
._9{width:33.408000pt;}
._10{width:37.440000pt;}
._11{width:38.400000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:6.240000pt;}
.y26{bottom:6.400000pt;}
.y28{bottom:6.560000pt;}
.y66{bottom:6.600000pt;}
.y2a{bottom:6.720000pt;}
.y57{bottom:27.560000pt;}
.y5b{bottom:27.680000pt;}
.y65{bottom:27.720000pt;}
.y60{bottom:27.840000pt;}
.y5e{bottom:27.866667pt;}
.y7{bottom:42.880000pt;}
.y56{bottom:48.680000pt;}
.y5a{bottom:48.960000pt;}
.y6{bottom:60.960000pt;}
.y55{bottom:69.800000pt;}
.y59{bottom:70.080000pt;}
.y52{bottom:70.440000pt;}
.y5{bottom:82.080000pt;}
.y51{bottom:91.560000pt;}
.y5d{bottom:112.160000pt;}
.y24{bottom:120.672000pt;}
.y23{bottom:141.786667pt;}
.y5c{bottom:155.226667pt;}
.y22{bottom:163.226667pt;}
.y21{bottom:184.346667pt;}
.y20{bottom:205.626667pt;}
.y7a{bottom:217.786667pt;}
.y3f{bottom:220.666667pt;}
.y1f{bottom:226.746667pt;}
.y79{bottom:238.906667pt;}
.y58{bottom:240.506667pt;}
.y3e{bottom:241.786667pt;}
.y1e{bottom:247.866667pt;}
.y78{bottom:260.186667pt;}
.y3d{bottom:262.906667pt;}
.y1d{bottom:265.306667pt;}
.y77{bottom:280.986667pt;}
.y3c{bottom:283.706667pt;}
.y3b{bottom:301.466667pt;}
.y76{bottom:302.106667pt;}
.y75{bottom:323.546667pt;}
.y50{bottom:325.786667pt;}
.y74{bottom:344.866667pt;}
.y73{bottom:365.986667pt;}
.y72{bottom:387.106667pt;}
.y71{bottom:408.226667pt;}
.y53{bottom:411.106667pt;}
.y70{bottom:429.506667pt;}
.y4f{bottom:439.266667pt;}
.y6f{bottom:450.626667pt;}
.y4e{bottom:460.386667pt;}
.y6e{bottom:471.426667pt;}
.y4d{bottom:481.826667pt;}
.y6d{bottom:486.946667pt;}
.y4c{bottom:503.106667pt;}
.y4b{bottom:524.226667pt;}
.y6c{bottom:529.986667pt;}
.y4a{bottom:545.346667pt;}
.y1c{bottom:564.386667pt;}
.y49{bottom:566.466667pt;}
.y6b{bottom:572.893333pt;}
.y1b{bottom:585.533333pt;}
.y48{bottom:587.773333pt;}
.y3a{bottom:596.093333pt;}
.y1a{bottom:606.653333pt;}
.y47{bottom:608.893333pt;}
.y6a{bottom:615.933333pt;}
.y39{bottom:617.213333pt;}
.y19{bottom:627.933333pt;}
.y46{bottom:630.013333pt;}
.y38{bottom:638.333333pt;}
.y18{bottom:649.053333pt;}
.y45{bottom:651.133333pt;}
.y69{bottom:658.973333pt;}
.y37{bottom:659.453333pt;}
.y17{bottom:670.173333pt;}
.y44{bottom:672.413333pt;}
.y36{bottom:674.813333pt;}
.y16{bottom:691.293333pt;}
.y43{bottom:693.533333pt;}
.y35{bottom:696.573333pt;}
.y68{bottom:701.853333pt;}
.y15{bottom:712.573333pt;}
.y42{bottom:714.653333pt;}
.y34{bottom:718.333333pt;}
.y14{bottom:733.693333pt;}
.y41{bottom:735.453333pt;}
.y33{bottom:740.253333pt;}
.y67{bottom:744.893333pt;}
.y40{bottom:753.213333pt;}
.y13{bottom:754.813333pt;}
.y32{bottom:762.013333pt;}
.y12{bottom:775.933333pt;}
.y31{bottom:783.933333pt;}
.y64{bottom:787.933333pt;}
.y11{bottom:797.253333pt;}
.y30{bottom:805.733333pt;}
.y10{bottom:818.373333pt;}
.y2f{bottom:827.493333pt;}
.y63{bottom:830.853333pt;}
.yf{bottom:839.173333pt;}
.y2e{bottom:849.413333pt;}
.ye{bottom:860.293333pt;}
.y2d{bottom:871.173333pt;}
.y62{bottom:873.893333pt;}
.yd{bottom:881.573333pt;}
.y2c{bottom:893.093333pt;}
.yc{bottom:903.013333pt;}
.y2b{bottom:914.853333pt;}
.y61{bottom:916.933333pt;}
.yb{bottom:924.133333pt;}
.y29{bottom:936.613333pt;}
.ya{bottom:944.933333pt;}
.y27{bottom:958.533333pt;}
.y5f{bottom:959.813333pt;}
.y9{bottom:966.053333pt;}
.y25{bottom:980.293333pt;}
.y8{bottom:987.333333pt;}
.y4{bottom:1005.893333pt;}
.y3{bottom:1024.320000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1061.600000pt;}
.ha{height:21.120000pt;}
.hb{height:21.152000pt;}
.h9{height:21.280000pt;}
.h11{height:42.240000pt;}
.h12{height:42.272000pt;}
.h10{height:42.400000pt;}
.hf{height:42.432000pt;}
.h6{height:44.687500pt;}
.h5{height:45.156250pt;}
.h4{height:56.598750pt;}
.h2{height:58.563750pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h3{height:64.500000pt;}
.h13{height:65.781915pt;}
.he{height:84.640000pt;}
.hd{height:84.672000pt;}
.hc{height:106.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:46.240000pt;}
.wc{width:46.272000pt;}
.wb{width:65.440000pt;}
.w9{width:65.472000pt;}
.w6{width:85.280000pt;}
.w8{width:112.000000pt;}
.w7{width:112.032000pt;}
.w4{width:122.240000pt;}
.w5{width:178.626667pt;}
.w3{width:320.386667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:8.000000pt;}
.x2d{left:9.120000pt;}
.x26{left:10.560000pt;}
.x3a{left:12.160000pt;}
.x37{left:13.280000pt;}
.x12{left:14.560000pt;}
.x36{left:16.800000pt;}
.x25{left:18.400000pt;}
.x14{left:19.720000pt;}
.x39{left:20.800000pt;}
.x38{left:22.560000pt;}
.x28{left:28.960000pt;}
.x35{left:33.760000pt;}
.x34{left:38.554667pt;}
.x16{left:42.560000pt;}
.x1d{left:46.560000pt;}
.x21{left:63.240000pt;}
.x17{left:67.240000pt;}
.x1c{left:84.154667pt;}
.xf{left:97.152000pt;}
.x1{left:104.031988pt;}
.x22{left:108.794667pt;}
.x1a{left:118.714667pt;}
.x3b{left:122.911988pt;}
.x20{left:124.154667pt;}
.x1e{left:125.434667pt;}
.x1f{left:131.194667pt;}
.x15{left:132.634667pt;}
.x1b{left:134.394667pt;}
.x19{left:136.674667pt;}
.x18{left:140.194667pt;}
.xc{left:151.226655pt;}
.x5{left:158.266655pt;}
.x10{left:160.194667pt;}
.x2{left:164.666655pt;}
.x27{left:182.746667pt;}
.x6{left:241.186655pt;}
.x2f{left:248.546667pt;}
.xb{left:286.626655pt;}
.x29{left:295.106667pt;}
.x7{left:309.986655pt;}
.xa{left:326.946655pt;}
.x9{left:331.426655pt;}
.x8{left:352.386655pt;}
.x30{left:360.866667pt;}
.x4{left:377.026655pt;}
.xe{left:377.986655pt;}
.x2a{left:407.453333pt;}
.x11{left:418.173333pt;}
.x3{left:420.573322pt;}
.x31{left:473.213333pt;}
.x2b{left:519.773333pt;}
.x13{left:541.053333pt;}
.x32{left:585.573333pt;}
.x2c{left:632.133333pt;}
.x23{left:677.413322pt;}
.x33{left:697.893333pt;}
.x24{left:716.639988pt;}
.xd{left:727.359988pt;}
}




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