
    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_63d95560c9521263c2366188.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_1b00eb06c74007147e8a5285.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_6c155570ffcd8afdd6a1d2e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.197000;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_0ff3ad770b671e7b83f34ac8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.197000;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_76f3c97ce500f1b3e3e2a963.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.240000;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_aeb363183e7a082a174328a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.747000;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.258925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.492000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.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;}
}
.ws4{word-spacing:-20.436000px;}
.ws2{word-spacing:-18.216000px;}
.ws0{word-spacing:-17.304000px;}
.ws1{word-spacing:-17.292000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-4.860000px;}
._2{margin-left:-3.672000px;}
._0{margin-left:-2.484000px;}
._3{margin-left:-1.404000px;}
._4{width:1.164000px;}
._5{width:2.393787px;}
._b{width:3.474213px;}
._9{width:4.554000px;}
._6{width:5.898000px;}
._7{width:7.632213px;}
._f{width:9.468000px;}
._a{width:10.854000px;}
._8{width:12.474000px;}
._1c{width:13.620000px;}
._1d{width:15.228000px;}
._17{width:16.296000px;}
._e{width:19.560000px;}
._1e{width:20.658000px;}
._c{width:21.714000px;}
._d{width:22.956000px;}
._1b{width:24.468213px;}
._19{width:25.764000px;}
._1a{width:27.054000px;}
._13{width:29.304000px;}
._14{width:30.840000px;}
._22{width:33.528000px;}
._11{width:35.460000px;}
._10{width:36.954000px;}
._21{width:38.154000px;}
._18{width:40.650000px;}
._16{width:41.724000px;}
._15{width:42.828000px;}
._12{width:49.386000px;}
._1f{width:61.164000px;}
._20{width:62.172213px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:3.000000px;}
.fs2{font-size:36.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y65{bottom:6.780000px;}
.y59{bottom:7.110000px;}
.y5c{bottom:7.125000px;}
.y2{bottom:8.625000px;}
.y9{bottom:9.375000px;}
.y8{bottom:18.000000px;}
.y62{bottom:18.750000px;}
.y5b{bottom:30.000000px;}
.y64{bottom:30.030000px;}
.y60{bottom:30.375000px;}
.y5f{bottom:53.280000px;}
.y7{bottom:58.537500px;}
.yc{bottom:70.912500px;}
.y5e{bottom:76.530000px;}
.yb{bottom:91.162500px;}
.ya{bottom:111.412500px;}
.y6{bottom:126.787500px;}
.y57{bottom:210.075000px;}
.y30{bottom:219.075000px;}
.y78{bottom:226.575000px;}
.y56{bottom:233.325000px;}
.y2f{bottom:241.950000px;}
.y77{bottom:249.450000px;}
.y55{bottom:256.200000px;}
.y2e{bottom:265.200000px;}
.y76{bottom:272.700000px;}
.y54{bottom:279.450000px;}
.y2d{bottom:288.450000px;}
.y75{bottom:295.950000px;}
.y53{bottom:302.745000px;}
.y2c{bottom:311.745000px;}
.y74{bottom:318.870000px;}
.y52{bottom:325.620000px;}
.y2b{bottom:334.605000px;}
.y73{bottom:342.120000px;}
.y51{bottom:348.870000px;}
.y2a{bottom:357.855000px;}
.y72{bottom:365.355000px;}
.y50{bottom:372.105000px;}
.y29{bottom:381.120000px;}
.y71{bottom:388.230000px;}
.y4f{bottom:394.980000px;}
.y28{bottom:403.995000px;}
.y70{bottom:411.495000px;}
.y4e{bottom:418.245000px;}
.y27{bottom:427.245000px;}
.y6f{bottom:434.775000px;}
.y4d{bottom:441.525000px;}
.y26{bottom:450.525000px;}
.y6e{bottom:457.650000px;}
.y4c{bottom:464.400000px;}
.y25{bottom:473.400000px;}
.y6d{bottom:482.400000px;}
.y4b{bottom:487.650000px;}
.y24{bottom:496.650000px;}
.y6c{bottom:508.275000px;}
.y4a{bottom:510.900000px;}
.y23{bottom:519.900000px;}
.y6b{bottom:531.525000px;}
.y49{bottom:533.775000px;}
.y22{bottom:542.775000px;}
.y6a{bottom:554.400000px;}
.y48{bottom:557.025000px;}
.y21{bottom:566.070000px;}
.y69{bottom:577.695000px;}
.y47{bottom:580.320000px;}
.y20{bottom:589.320000px;}
.y68{bottom:600.945000px;}
.y46{bottom:603.195000px;}
.y1f{bottom:612.195000px;}
.y67{bottom:623.820000px;}
.y45{bottom:626.445000px;}
.y1e{bottom:636.945000px;}
.y66{bottom:640.695000px;}
.y44{bottom:651.195000px;}
.y1d{bottom:662.820000px;}
.y43{bottom:677.070000px;}
.y1c{bottom:686.070000px;}
.y63{bottom:687.945000px;}
.y42{bottom:699.975000px;}
.y1b{bottom:708.975000px;}
.y41{bottom:723.225000px;}
.y1a{bottom:732.225000px;}
.y61{bottom:734.850000px;}
.y40{bottom:746.475000px;}
.y19{bottom:755.475000px;}
.y3f{bottom:769.350000px;}
.y18{bottom:778.350000px;}
.y5d{bottom:781.725000px;}
.y3e{bottom:792.600000px;}
.y17{bottom:801.600000px;}
.y3d{bottom:815.850000px;}
.y16{bottom:824.880000px;}
.y3c{bottom:838.770000px;}
.y15{bottom:847.755000px;}
.y3b{bottom:862.005000px;}
.y14{bottom:871.005000px;}
.y5a{bottom:875.130000px;}
.y3a{bottom:885.255000px;}
.y13{bottom:894.255000px;}
.y39{bottom:908.130000px;}
.y12{bottom:917.130000px;}
.y58{bottom:923.520000px;}
.y38{bottom:931.380000px;}
.y11{bottom:946.425000px;}
.y37{bottom:954.675000px;}
.y10{bottom:975.675000px;}
.y36{bottom:977.925000px;}
.y35{bottom:1000.800000px;}
.yf{bottom:1004.550000px;}
.y34{bottom:1024.050000px;}
.ye{bottom:1036.425000px;}
.y33{bottom:1047.300000px;}
.y32{bottom:1070.175000px;}
.yd{bottom:1078.455000px;}
.y31{bottom:1094.955000px;}
.y5{bottom:1131.705000px;}
.y4{bottom:1151.955000px;}
.y3{bottom:1167.705000px;}
.y1{bottom:1168.455000px;}
.h4{height:2.983887px;}
.hb{height:23.272500px;}
.h6{height:35.806641px;}
.h1{height:40.537500px;}
.h3{height:42.037500px;}
.hc{height:46.125000px;}
.he{height:46.162500px;}
.hf{height:46.500000px;}
.h10{height:48.972000px;}
.h2{height:65.645508px;}
.h8{height:65.868000px;}
.h9{height:68.574000px;}
.h5{height:74.287500px;}
.ha{height:77.844000px;}
.hd{height:92.662500px;}
.h7{height:110.583984px;}
.h0{height:1263.000000px;}
.w7{width:233.370000px;}
.w6{width:318.525000px;}
.w5{width:318.900000px;}
.w8{width:402.195000px;}
.w2{width:620.130000px;}
.w3{width:636.675000px;}
.w4{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.912500px;}
.x14{left:12.787500px;}
.x1f{left:15.412500px;}
.x15{left:17.662500px;}
.x10{left:24.787500px;}
.x1d{left:28.125000px;}
.x12{left:31.125000px;}
.x17{left:32.295000px;}
.x19{left:38.670000px;}
.x20{left:43.170000px;}
.x1b{left:48.412500px;}
.x16{left:54.412500px;}
.xf{left:58.545000px;}
.x11{left:65.287500px;}
.x1c{left:73.162500px;}
.xd{left:77.662500px;}
.x1e{left:106.920000px;}
.x2{left:112.170000px;}
.x5{left:118.582500px;}
.x1a{left:125.700000px;}
.x3{left:128.287500px;}
.x1{left:136.950000px;}
.x21{left:141.450000px;}
.x18{left:145.200000px;}
.x13{left:153.825000px;}
.x7{left:310.260000px;}
.xe{left:362.400000px;}
.x8{left:442.319987px;}
.x6{left:446.445000px;}
.x9{left:456.194987px;}
.xb{left:552.224987px;}
.xc{left:563.849987px;}
.xa{left:765.719987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.437333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ws4{word-spacing:-18.165333pt;}
.ws2{word-spacing:-16.192000pt;}
.ws0{word-spacing:-15.381333pt;}
.ws1{word-spacing:-15.370667pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-4.320000pt;}
._2{margin-left:-3.264000pt;}
._0{margin-left:-2.208000pt;}
._3{margin-left:-1.248000pt;}
._4{width:1.034667pt;}
._5{width:2.127810pt;}
._b{width:3.088190pt;}
._9{width:4.048000pt;}
._6{width:5.242667pt;}
._7{width:6.784190pt;}
._f{width:8.416000pt;}
._a{width:9.648000pt;}
._8{width:11.088000pt;}
._1c{width:12.106667pt;}
._1d{width:13.536000pt;}
._17{width:14.485333pt;}
._e{width:17.386667pt;}
._1e{width:18.362667pt;}
._c{width:19.301333pt;}
._d{width:20.405333pt;}
._1b{width:21.749523pt;}
._19{width:22.901333pt;}
._1a{width:24.048000pt;}
._13{width:26.048000pt;}
._14{width:27.413333pt;}
._22{width:29.802667pt;}
._11{width:31.520000pt;}
._10{width:32.848000pt;}
._21{width:33.914667pt;}
._18{width:36.133333pt;}
._16{width:37.088000pt;}
._15{width:38.069333pt;}
._12{width:43.898667pt;}
._1f{width:54.368000pt;}
._20{width:55.264190pt;}
.fs1{font-size:2.666667pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:6.026667pt;}
.y59{bottom:6.320000pt;}
.y5c{bottom:6.333333pt;}
.y2{bottom:7.666667pt;}
.y9{bottom:8.333333pt;}
.y8{bottom:16.000000pt;}
.y62{bottom:16.666667pt;}
.y5b{bottom:26.666667pt;}
.y64{bottom:26.693333pt;}
.y60{bottom:27.000000pt;}
.y5f{bottom:47.360000pt;}
.y7{bottom:52.033333pt;}
.yc{bottom:63.033333pt;}
.y5e{bottom:68.026667pt;}
.yb{bottom:81.033333pt;}
.ya{bottom:99.033333pt;}
.y6{bottom:112.700000pt;}
.y57{bottom:186.733333pt;}
.y30{bottom:194.733333pt;}
.y78{bottom:201.400000pt;}
.y56{bottom:207.400000pt;}
.y2f{bottom:215.066667pt;}
.y77{bottom:221.733333pt;}
.y55{bottom:227.733333pt;}
.y2e{bottom:235.733333pt;}
.y76{bottom:242.400000pt;}
.y54{bottom:248.400000pt;}
.y2d{bottom:256.400000pt;}
.y75{bottom:263.066667pt;}
.y53{bottom:269.106667pt;}
.y2c{bottom:277.106667pt;}
.y74{bottom:283.440000pt;}
.y52{bottom:289.440000pt;}
.y2b{bottom:297.426667pt;}
.y73{bottom:304.106667pt;}
.y51{bottom:310.106667pt;}
.y2a{bottom:318.093333pt;}
.y72{bottom:324.760000pt;}
.y50{bottom:330.760000pt;}
.y29{bottom:338.773333pt;}
.y71{bottom:345.093333pt;}
.y4f{bottom:351.093333pt;}
.y28{bottom:359.106667pt;}
.y70{bottom:365.773333pt;}
.y4e{bottom:371.773333pt;}
.y27{bottom:379.773333pt;}
.y6f{bottom:386.466667pt;}
.y4d{bottom:392.466667pt;}
.y26{bottom:400.466667pt;}
.y6e{bottom:406.800000pt;}
.y4c{bottom:412.800000pt;}
.y25{bottom:420.800000pt;}
.y6d{bottom:428.800000pt;}
.y4b{bottom:433.466667pt;}
.y24{bottom:441.466667pt;}
.y6c{bottom:451.800000pt;}
.y4a{bottom:454.133333pt;}
.y23{bottom:462.133333pt;}
.y6b{bottom:472.466667pt;}
.y49{bottom:474.466667pt;}
.y22{bottom:482.466667pt;}
.y6a{bottom:492.800000pt;}
.y48{bottom:495.133333pt;}
.y21{bottom:503.173333pt;}
.y69{bottom:513.506667pt;}
.y47{bottom:515.840000pt;}
.y20{bottom:523.840000pt;}
.y68{bottom:534.173333pt;}
.y46{bottom:536.173333pt;}
.y1f{bottom:544.173333pt;}
.y67{bottom:554.506667pt;}
.y45{bottom:556.840000pt;}
.y1e{bottom:566.173333pt;}
.y66{bottom:569.506667pt;}
.y44{bottom:578.840000pt;}
.y1d{bottom:589.173333pt;}
.y43{bottom:601.840000pt;}
.y1c{bottom:609.840000pt;}
.y63{bottom:611.506667pt;}
.y42{bottom:622.200000pt;}
.y1b{bottom:630.200000pt;}
.y41{bottom:642.866667pt;}
.y1a{bottom:650.866667pt;}
.y61{bottom:653.200000pt;}
.y40{bottom:663.533333pt;}
.y19{bottom:671.533333pt;}
.y3f{bottom:683.866667pt;}
.y18{bottom:691.866667pt;}
.y5d{bottom:694.866667pt;}
.y3e{bottom:704.533333pt;}
.y17{bottom:712.533333pt;}
.y3d{bottom:725.200000pt;}
.y16{bottom:733.226667pt;}
.y3c{bottom:745.573333pt;}
.y15{bottom:753.560000pt;}
.y3b{bottom:766.226667pt;}
.y14{bottom:774.226667pt;}
.y5a{bottom:777.893333pt;}
.y3a{bottom:786.893333pt;}
.y13{bottom:794.893333pt;}
.y39{bottom:807.226667pt;}
.y12{bottom:815.226667pt;}
.y58{bottom:820.906667pt;}
.y38{bottom:827.893333pt;}
.y11{bottom:841.266667pt;}
.y37{bottom:848.600000pt;}
.y10{bottom:867.266667pt;}
.y36{bottom:869.266667pt;}
.y35{bottom:889.600000pt;}
.yf{bottom:892.933333pt;}
.y34{bottom:910.266667pt;}
.ye{bottom:921.266667pt;}
.y33{bottom:930.933333pt;}
.y32{bottom:951.266667pt;}
.yd{bottom:958.626667pt;}
.y31{bottom:973.293333pt;}
.y5{bottom:1005.960000pt;}
.y4{bottom:1023.960000pt;}
.y3{bottom:1037.960000pt;}
.y1{bottom:1038.626667pt;}
.h4{height:2.652344pt;}
.hb{height:20.686667pt;}
.h6{height:31.828125pt;}
.h1{height:36.033333pt;}
.h3{height:37.366667pt;}
.hc{height:41.000000pt;}
.he{height:41.033333pt;}
.hf{height:41.333333pt;}
.h10{height:43.530667pt;}
.h2{height:58.351562pt;}
.h8{height:58.549333pt;}
.h9{height:60.954667pt;}
.h5{height:66.033333pt;}
.ha{height:69.194667pt;}
.hd{height:82.366667pt;}
.h7{height:98.296875pt;}
.h0{height:1122.666667pt;}
.w7{width:207.440000pt;}
.w6{width:283.133333pt;}
.w5{width:283.466667pt;}
.w8{width:357.506667pt;}
.w2{width:551.226667pt;}
.w3{width:565.933333pt;}
.w4{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.033333pt;}
.x14{left:11.366667pt;}
.x1f{left:13.700000pt;}
.x15{left:15.700000pt;}
.x10{left:22.033333pt;}
.x1d{left:25.000000pt;}
.x12{left:27.666667pt;}
.x17{left:28.706667pt;}
.x19{left:34.373333pt;}
.x20{left:38.373333pt;}
.x1b{left:43.033333pt;}
.x16{left:48.366667pt;}
.xf{left:52.040000pt;}
.x11{left:58.033333pt;}
.x1c{left:65.033333pt;}
.xd{left:69.033333pt;}
.x1e{left:95.040000pt;}
.x2{left:99.706667pt;}
.x5{left:105.406667pt;}
.x1a{left:111.733333pt;}
.x3{left:114.033333pt;}
.x1{left:121.733333pt;}
.x21{left:125.733333pt;}
.x18{left:129.066667pt;}
.x13{left:136.733333pt;}
.x7{left:275.786667pt;}
.xe{left:322.133333pt;}
.x8{left:393.173322pt;}
.x6{left:396.840000pt;}
.x9{left:405.506655pt;}
.xb{left:490.866655pt;}
.xc{left:501.199988pt;}
.xa{left:680.639988pt;}
}




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