
    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_46ff42855069bb54f345ffe6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_1ef31a5a9ae3acf7cb98517b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_3d418bb62d95af770a3e378d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_0d3daaec91d25fd88fe5006a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_dff73af96345655240e17266.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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(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;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.481280px;}
._1{width:1.703520px;}
._e{width:3.336480px;}
._2{width:4.392000px;}
._3{width:5.472000px;}
._8{width:6.624000px;}
._11{width:7.632000px;}
._d{width:8.681280px;}
._4{width:9.864000px;}
._5{width:11.016000px;}
._6{width:12.816000px;}
._b{width:14.136480px;}
._14{width:15.143040px;}
._7{width:16.200000px;}
._12{width:19.944000px;}
._13{width:20.987040px;}
._15{width:22.252320px;}
._16{width:23.319360px;}
._1c{width:24.849600px;}
._1b{width:25.858560px;}
._17{width:27.216000px;}
._18{width:28.584000px;}
._19{width:30.240000px;}
._1a{width:31.680000px;}
._c{width:32.904000px;}
._1e{width:33.977760px;}
._1d{width:35.064000px;}
._f{width:36.144000px;}
._10{width:37.224000px;}
._9{width:46.584000px;}
._a{width:47.592000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.780000px;}
.y3{bottom:78.696000px;}
.y2{bottom:97.596000px;}
.y1{bottom:116.496000px;}
.y9e{bottom:138.276000px;}
.y2f{bottom:142.596000px;}
.y68{bottom:146.016000px;}
.y9d{bottom:158.970000px;}
.y4c{bottom:160.050000px;}
.y2e{bottom:163.290000px;}
.y83{bottom:173.010000px;}
.y67{bottom:177.150000px;}
.y9c{bottom:179.670000px;}
.y2d{bottom:183.990000px;}
.y4b{bottom:191.010000px;}
.y9b{bottom:200.370000px;}
.y82{bottom:204.150000px;}
.y2c{bottom:204.690000px;}
.y66{bottom:208.110000px;}
.y9a{bottom:221.070000px;}
.y4a{bottom:222.150000px;}
.y2b{bottom:225.390000px;}
.y81{bottom:235.110000px;}
.y65{bottom:239.250000px;}
.y2a{bottom:246.090000px;}
.y49{bottom:253.110000px;}
.y99{bottom:263.370000px;}
.y80{bottom:266.250000px;}
.y29{bottom:266.790000px;}
.y64{bottom:270.210000px;}
.y48{bottom:284.250000px;}
.y28{bottom:287.490000px;}
.y7f{bottom:297.210000px;}
.y63{bottom:301.350000px;}
.y98{bottom:306.210000px;}
.y27{bottom:308.190000px;}
.y47{bottom:315.210000px;}
.y7e{bottom:328.395000px;}
.y26{bottom:328.935000px;}
.y62{bottom:332.355000px;}
.y97{bottom:337.395000px;}
.y46{bottom:346.395000px;}
.y25{bottom:349.635000px;}
.y7d{bottom:359.355000px;}
.y61{bottom:363.495000px;}
.y96{bottom:368.355000px;}
.y24{bottom:370.335000px;}
.y45{bottom:377.355000px;}
.y7c{bottom:390.495000px;}
.y23{bottom:391.035000px;}
.y95{bottom:399.495000px;}
.y60{bottom:403.455000px;}
.y44{bottom:408.495000px;}
.y22{bottom:411.735000px;}
.y7b{bottom:421.455000px;}
.y94{bottom:430.455000px;}
.y21{bottom:432.435000px;}
.y43{bottom:439.455000px;}
.y5f{bottom:443.595000px;}
.y7a{bottom:452.595000px;}
.y20{bottom:453.135000px;}
.y93{bottom:461.595000px;}
.y42{bottom:470.595000px;}
.y1f{bottom:473.835000px;}
.y5e{bottom:474.555000px;}
.y92{bottom:492.555000px;}
.y1e{bottom:494.535000px;}
.y79{bottom:494.895000px;}
.y41{bottom:501.555000px;}
.y5d{bottom:505.695000px;}
.y1d{bottom:515.235000px;}
.y91{bottom:523.695000px;}
.y40{bottom:532.695000px;}
.y1c{bottom:535.935000px;}
.y5c{bottom:536.655000px;}
.y78{bottom:537.735000px;}
.y1b{bottom:556.635000px;}
.y3f{bottom:563.655000px;}
.y90{bottom:565.995000px;}
.y5b{bottom:567.795000px;}
.y77{bottom:568.905000px;}
.y1a{bottom:577.365000px;}
.y3e{bottom:594.825000px;}
.y19{bottom:598.065000px;}
.y5a{bottom:598.785000px;}
.y76{bottom:599.865000px;}
.y8f{bottom:608.865000px;}
.y18{bottom:618.765000px;}
.y3d{bottom:625.785000px;}
.y59{bottom:629.925000px;}
.y75{bottom:631.005000px;}
.y17{bottom:639.465000px;}
.y8e{bottom:640.005000px;}
.y3c{bottom:656.925000px;}
.y16{bottom:660.165000px;}
.y58{bottom:660.885000px;}
.y74{bottom:661.965000px;}
.y8d{bottom:670.965000px;}
.y15{bottom:680.865000px;}
.y3b{bottom:687.885000px;}
.y57{bottom:692.025000px;}
.y73{bottom:693.105000px;}
.y14{bottom:701.565000px;}
.y8c{bottom:702.105000px;}
.y3a{bottom:719.025000px;}
.y13{bottom:722.265000px;}
.y56{bottom:722.985000px;}
.y72{bottom:724.065000px;}
.y8b{bottom:733.065000px;}
.y12{bottom:742.965000px;}
.y39{bottom:749.985000px;}
.ya8{bottom:753.765000px;}
.y71{bottom:755.205000px;}
.y55{bottom:763.125000px;}
.y11{bottom:763.665000px;}
.y8a{bottom:764.205000px;}
.ya7{bottom:774.465000px;}
.y38{bottom:781.125000px;}
.y10{bottom:784.365000px;}
.y70{bottom:786.165000px;}
.y89{bottom:795.165000px;}
.y54{bottom:803.085000px;}
.yf{bottom:805.065000px;}
.y37{bottom:812.085000px;}
.ya6{bottom:815.865000px;}
.y6f{bottom:817.305000px;}
.ye{bottom:825.810000px;}
.y88{bottom:826.350000px;}
.y53{bottom:834.270000px;}
.ya5{bottom:836.610000px;}
.y36{bottom:843.270000px;}
.yd{bottom:846.510000px;}
.y6e{bottom:848.310000px;}
.y87{bottom:857.310000px;}
.y52{bottom:865.230000px;}
.yc{bottom:867.210000px;}
.y35{bottom:874.230000px;}
.ya4{bottom:878.010000px;}
.y6d{bottom:879.450000px;}
.yb{bottom:887.910000px;}
.y86{bottom:888.450000px;}
.y51{bottom:896.370000px;}
.ya3{bottom:898.710000px;}
.y34{bottom:905.370000px;}
.ya{bottom:908.610000px;}
.y6c{bottom:910.410000px;}
.y85{bottom:919.410000px;}
.y9{bottom:929.850000px;}
.y33{bottom:936.330000px;}
.y50{bottom:938.670000px;}
.ya2{bottom:940.110000px;}
.y6b{bottom:941.550000px;}
.y84{bottom:950.550000px;}
.y8{bottom:954.690000px;}
.ya1{bottom:960.810000px;}
.y32{bottom:967.470000px;}
.y6a{bottom:972.510000px;}
.y4f{bottom:981.510000px;}
.y7{bottom:982.410000px;}
.y31{bottom:998.430000px;}
.ya0{bottom:1002.210000px;}
.y69{bottom:1003.650000px;}
.y6{bottom:1010.490000px;}
.y4e{bottom:1012.650000px;}
.y9f{bottom:1022.910000px;}
.y5{bottom:1038.030000px;}
.y30{bottom:1040.730000px;}
.y4d{bottom:1043.610000px;}
.h7{height:54.878906px;}
.h1{height:59.383125px;}
.h2{height:60.679688px;}
.h8{height:63.949219px;}
.h6{height:64.546875px;}
.h5{height:74.820586px;}
.h4{height:80.703984px;}
.h3{height:85.052461px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:127.655986px;}
.x7{left:167.789986px;}
.x9{left:170.129986px;}
.x5{left:176.069986px;}
.x3{left:186.689986px;}
.x4{left:202.529986px;}
.x8{left:293.654986px;}
.x6{left:437.294986px;}
.x2{left:480.344986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.316693pt;}
._1{width:1.514240pt;}
._e{width:2.965760pt;}
._2{width:3.904000pt;}
._3{width:4.864000pt;}
._8{width:5.888000pt;}
._11{width:6.784000pt;}
._d{width:7.716693pt;}
._4{width:8.768000pt;}
._5{width:9.792000pt;}
._6{width:11.392000pt;}
._b{width:12.565760pt;}
._14{width:13.460480pt;}
._7{width:14.400000pt;}
._12{width:17.728000pt;}
._13{width:18.655147pt;}
._15{width:19.779840pt;}
._16{width:20.728320pt;}
._1c{width:22.088533pt;}
._1b{width:22.985387pt;}
._17{width:24.192000pt;}
._18{width:25.408000pt;}
._19{width:26.880000pt;}
._1a{width:28.160000pt;}
._c{width:29.248000pt;}
._1e{width:30.202453pt;}
._1d{width:31.168000pt;}
._f{width:32.128000pt;}
._10{width:33.088000pt;}
._9{width:41.408000pt;}
._a{width:42.304000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.360000pt;}
.y3{bottom:69.952000pt;}
.y2{bottom:86.752000pt;}
.y1{bottom:103.552000pt;}
.y9e{bottom:122.912000pt;}
.y2f{bottom:126.752000pt;}
.y68{bottom:129.792000pt;}
.y9d{bottom:141.306667pt;}
.y4c{bottom:142.266667pt;}
.y2e{bottom:145.146667pt;}
.y83{bottom:153.786667pt;}
.y67{bottom:157.466667pt;}
.y9c{bottom:159.706667pt;}
.y2d{bottom:163.546667pt;}
.y4b{bottom:169.786667pt;}
.y9b{bottom:178.106667pt;}
.y82{bottom:181.466667pt;}
.y2c{bottom:181.946667pt;}
.y66{bottom:184.986667pt;}
.y9a{bottom:196.506667pt;}
.y4a{bottom:197.466667pt;}
.y2b{bottom:200.346667pt;}
.y81{bottom:208.986667pt;}
.y65{bottom:212.666667pt;}
.y2a{bottom:218.746667pt;}
.y49{bottom:224.986667pt;}
.y99{bottom:234.106667pt;}
.y80{bottom:236.666667pt;}
.y29{bottom:237.146667pt;}
.y64{bottom:240.186667pt;}
.y48{bottom:252.666667pt;}
.y28{bottom:255.546667pt;}
.y7f{bottom:264.186667pt;}
.y63{bottom:267.866667pt;}
.y98{bottom:272.186667pt;}
.y27{bottom:273.946667pt;}
.y47{bottom:280.186667pt;}
.y7e{bottom:291.906667pt;}
.y26{bottom:292.386667pt;}
.y62{bottom:295.426667pt;}
.y97{bottom:299.906667pt;}
.y46{bottom:307.906667pt;}
.y25{bottom:310.786667pt;}
.y7d{bottom:319.426667pt;}
.y61{bottom:323.106667pt;}
.y96{bottom:327.426667pt;}
.y24{bottom:329.186667pt;}
.y45{bottom:335.426667pt;}
.y7c{bottom:347.106667pt;}
.y23{bottom:347.586667pt;}
.y95{bottom:355.106667pt;}
.y60{bottom:358.626667pt;}
.y44{bottom:363.106667pt;}
.y22{bottom:365.986667pt;}
.y7b{bottom:374.626667pt;}
.y94{bottom:382.626667pt;}
.y21{bottom:384.386667pt;}
.y43{bottom:390.626667pt;}
.y5f{bottom:394.306667pt;}
.y7a{bottom:402.306667pt;}
.y20{bottom:402.786667pt;}
.y93{bottom:410.306667pt;}
.y42{bottom:418.306667pt;}
.y1f{bottom:421.186667pt;}
.y5e{bottom:421.826667pt;}
.y92{bottom:437.826667pt;}
.y1e{bottom:439.586667pt;}
.y79{bottom:439.906667pt;}
.y41{bottom:445.826667pt;}
.y5d{bottom:449.506667pt;}
.y1d{bottom:457.986667pt;}
.y91{bottom:465.506667pt;}
.y40{bottom:473.506667pt;}
.y1c{bottom:476.386667pt;}
.y5c{bottom:477.026667pt;}
.y78{bottom:477.986667pt;}
.y1b{bottom:494.786667pt;}
.y3f{bottom:501.026667pt;}
.y90{bottom:503.106667pt;}
.y5b{bottom:504.706667pt;}
.y77{bottom:505.693333pt;}
.y1a{bottom:513.213333pt;}
.y3e{bottom:528.733333pt;}
.y19{bottom:531.613333pt;}
.y5a{bottom:532.253333pt;}
.y76{bottom:533.213333pt;}
.y8f{bottom:541.213333pt;}
.y18{bottom:550.013333pt;}
.y3d{bottom:556.253333pt;}
.y59{bottom:559.933333pt;}
.y75{bottom:560.893333pt;}
.y17{bottom:568.413333pt;}
.y8e{bottom:568.893333pt;}
.y3c{bottom:583.933333pt;}
.y16{bottom:586.813333pt;}
.y58{bottom:587.453333pt;}
.y74{bottom:588.413333pt;}
.y8d{bottom:596.413333pt;}
.y15{bottom:605.213333pt;}
.y3b{bottom:611.453333pt;}
.y57{bottom:615.133333pt;}
.y73{bottom:616.093333pt;}
.y14{bottom:623.613333pt;}
.y8c{bottom:624.093333pt;}
.y3a{bottom:639.133333pt;}
.y13{bottom:642.013333pt;}
.y56{bottom:642.653333pt;}
.y72{bottom:643.613333pt;}
.y8b{bottom:651.613333pt;}
.y12{bottom:660.413333pt;}
.y39{bottom:666.653333pt;}
.ya8{bottom:670.013333pt;}
.y71{bottom:671.293333pt;}
.y55{bottom:678.333333pt;}
.y11{bottom:678.813333pt;}
.y8a{bottom:679.293333pt;}
.ya7{bottom:688.413333pt;}
.y38{bottom:694.333333pt;}
.y10{bottom:697.213333pt;}
.y70{bottom:698.813333pt;}
.y89{bottom:706.813333pt;}
.y54{bottom:713.853333pt;}
.yf{bottom:715.613333pt;}
.y37{bottom:721.853333pt;}
.ya6{bottom:725.213333pt;}
.y6f{bottom:726.493333pt;}
.ye{bottom:734.053333pt;}
.y88{bottom:734.533333pt;}
.y53{bottom:741.573333pt;}
.ya5{bottom:743.653333pt;}
.y36{bottom:749.573333pt;}
.yd{bottom:752.453333pt;}
.y6e{bottom:754.053333pt;}
.y87{bottom:762.053333pt;}
.y52{bottom:769.093333pt;}
.yc{bottom:770.853333pt;}
.y35{bottom:777.093333pt;}
.ya4{bottom:780.453333pt;}
.y6d{bottom:781.733333pt;}
.yb{bottom:789.253333pt;}
.y86{bottom:789.733333pt;}
.y51{bottom:796.773333pt;}
.ya3{bottom:798.853333pt;}
.y34{bottom:804.773333pt;}
.ya{bottom:807.653333pt;}
.y6c{bottom:809.253333pt;}
.y85{bottom:817.253333pt;}
.y9{bottom:826.533333pt;}
.y33{bottom:832.293333pt;}
.y50{bottom:834.373333pt;}
.ya2{bottom:835.653333pt;}
.y6b{bottom:836.933333pt;}
.y84{bottom:844.933333pt;}
.y8{bottom:848.613333pt;}
.ya1{bottom:854.053333pt;}
.y32{bottom:859.973333pt;}
.y6a{bottom:864.453333pt;}
.y4f{bottom:872.453333pt;}
.y7{bottom:873.253333pt;}
.y31{bottom:887.493333pt;}
.ya0{bottom:890.853333pt;}
.y69{bottom:892.133333pt;}
.y6{bottom:898.213333pt;}
.y4e{bottom:900.133333pt;}
.y9f{bottom:909.253333pt;}
.y5{bottom:922.693333pt;}
.y30{bottom:925.093333pt;}
.y4d{bottom:927.653333pt;}
.h7{height:48.781250pt;}
.h1{height:52.785000pt;}
.h2{height:53.937500pt;}
.h8{height:56.843750pt;}
.h6{height:57.375000pt;}
.h5{height:66.507188pt;}
.h4{height:71.736875pt;}
.h3{height:75.602187pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x7{left:149.146655pt;}
.x9{left:151.226655pt;}
.x5{left:156.506655pt;}
.x3{left:165.946655pt;}
.x4{left:180.026655pt;}
.x8{left:261.026655pt;}
.x6{left:388.706655pt;}
.x2{left:426.973321pt;}
}




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