
    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_70e5f209f8adb05a9293b08a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ca5894ceac835bd7f027d677.woff2')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_b55152ff5f377db6b802d87e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088867;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_6f448a9511a5b9ab04b3a2b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0a31a7842b8014af39f03988.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.900000px;}
.ls8{letter-spacing:-0.043920px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.252720px;}
.ls9{letter-spacing:0.350400px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.378600px;}
.ls1{letter-spacing:14.940000px;}
.ls2{letter-spacing:37.980000px;}
.ls6{letter-spacing:48.060000px;}
.ls0{letter-spacing:82.620000px;}
.lsd{letter-spacing:157.277280px;}
.lse{letter-spacing:1019.496000px;}
.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;}
}
.ws2{word-spacing:-21.438600px;}
.ws0{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.410400px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.016080px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-5.644080px;}
._1b{margin-left:-4.296240px;}
._c{margin-left:-3.285360px;}
._d{margin-left:-2.274480px;}
._0{margin-left:-1.010880px;}
._1{width:1.686720px;}
._a{width:3.116880px;}
._11{width:4.595040px;}
._16{width:6.065280px;}
._15{width:7.160400px;}
._24{width:8.171280px;}
._b{width:9.266400px;}
._2{width:10.927920px;}
._3{width:11.962080px;}
._7{width:13.225680px;}
._8{width:14.303280px;}
._6{width:16.258320px;}
._5{width:17.297520px;}
._23{width:18.743760px;}
._25{width:19.879920px;}
._9{width:22.660560px;}
._22{width:24.349200px;}
._1d{width:26.196720px;}
._1c{width:27.209520px;}
._21{width:28.810080px;}
._12{width:32.600880px;}
._13{width:33.864480px;}
._26{width:35.384160px;}
._19{width:36.391680px;}
._18{width:37.823760px;}
._17{width:38.862480px;}
._1a{width:42.878160px;}
._14{width:44.057520px;}
._27{width:46.247760px;}
._20{width:47.764080px;}
._1f{width:60.313920px;}
._1e{width:61.579440px;}
._10{width:82.265280px;}
._f{width:83.266320px;}
._e{width:91.292160px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y5c{bottom:88.416000px;}
.y5b{bottom:93.636000px;}
.y2c{bottom:104.076000px;}
.y5a{bottom:105.696000px;}
.y7e{bottom:106.956000px;}
.y59{bottom:110.916000px;}
.y58{bottom:122.976000px;}
.y2b{bottom:128.196000px;}
.y57{bottom:140.256000px;}
.y56{bottom:145.476000px;}
.y2a{bottom:152.310000px;}
.y55{bottom:157.530000px;}
.y7d{bottom:159.150000px;}
.y54{bottom:162.750000px;}
.y53{bottom:176.070000px;}
.y29{bottom:176.430000px;}
.y7c{bottom:183.270000px;}
.y7b{bottom:207.390000px;}
.y28{bottom:211.350000px;}
.y7a{bottom:231.510000px;}
.y27{bottom:235.470000px;}
.y79{bottom:255.630000px;}
.y26{bottom:259.770000px;}
.y52{bottom:267.870000px;}
.y78{bottom:279.795000px;}
.y25{bottom:283.935000px;}
.y51{bottom:292.035000px;}
.y77{bottom:303.915000px;}
.y24{bottom:308.055000px;}
.y50{bottom:316.155000px;}
.y23{bottom:332.175000px;}
.y4f{bottom:340.275000px;}
.y76{bottom:352.335000px;}
.y22{bottom:356.295000px;}
.y4e{bottom:364.395000px;}
.y75{bottom:376.455000px;}
.y21{bottom:380.415000px;}
.y4d{bottom:388.515000px;}
.y74{bottom:400.575000px;}
.y20{bottom:404.715000px;}
.y4c{bottom:412.815000px;}
.y1f{bottom:428.835000px;}
.y4b{bottom:436.935000px;}
.y73{bottom:448.815000px;}
.y49{bottom:461.055000px;}
.y1e{bottom:463.755000px;}
.y4a{bottom:468.615000px;}
.y72{bottom:473.115000px;}
.y48{bottom:485.175000px;}
.y1d{bottom:487.875000px;}
.y71{bottom:497.235000px;}
.y47{bottom:509.295000px;}
.y1c{bottom:511.995000px;}
.y70{bottom:521.355000px;}
.y46{bottom:533.415000px;}
.y1b{bottom:536.115000px;}
.y6f{bottom:545.475000px;}
.y45{bottom:557.745000px;}
.y1a{bottom:560.445000px;}
.y6e{bottom:569.625000px;}
.y43{bottom:581.865000px;}
.y19{bottom:584.565000px;}
.y44{bottom:589.425000px;}
.y6d{bottom:593.745000px;}
.y42{bottom:605.985000px;}
.y18{bottom:608.685000px;}
.y6c{bottom:618.045000px;}
.y41{bottom:630.105000px;}
.y17{bottom:632.805000px;}
.y6b{bottom:642.165000px;}
.y3f{bottom:654.225000px;}
.y16{bottom:656.925000px;}
.y40{bottom:661.785000px;}
.y6a{bottom:666.285000px;}
.y3e{bottom:678.345000px;}
.y15{bottom:681.045000px;}
.y69{bottom:690.405000px;}
.y3d{bottom:702.465000px;}
.y14{bottom:705.165000px;}
.y68{bottom:714.525000px;}
.y3c{bottom:726.765000px;}
.y13{bottom:729.465000px;}
.y67{bottom:738.645000px;}
.y3b{bottom:750.885000px;}
.y12{bottom:753.585000px;}
.y66{bottom:762.765000px;}
.y3a{bottom:775.005000px;}
.y11{bottom:777.705000px;}
.y65{bottom:787.065000px;}
.y39{bottom:799.125000px;}
.y10{bottom:801.825000px;}
.y64{bottom:811.185000px;}
.y37{bottom:823.245000px;}
.yf{bottom:825.945000px;}
.y38{bottom:830.805000px;}
.y63{bottom:835.305000px;}
.y36{bottom:847.410000px;}
.y62{bottom:859.470000px;}
.ye{bottom:860.910000px;}
.y35{bottom:871.710000px;}
.y61{bottom:883.590000px;}
.yd{bottom:885.210000px;}
.y34{bottom:895.830000px;}
.y60{bottom:907.710000px;}
.yc{bottom:909.330000px;}
.y33{bottom:919.950000px;}
.y5f{bottom:932.010000px;}
.y32{bottom:944.070000px;}
.yb{bottom:944.250000px;}
.y5e{bottom:956.130000px;}
.ya{bottom:968.370000px;}
.y31{bottom:980.250000px;}
.y9{bottom:992.490000px;}
.y30{bottom:1004.370000px;}
.y2f{bottom:1028.490000px;}
.y8{bottom:1034.610000px;}
.y2e{bottom:1052.610000px;}
.y7{bottom:1058.730000px;}
.y2d{bottom:1076.730000px;}
.y5d{bottom:1084.290000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h8{height:38.158594px;}
.h7{height:52.998047px;}
.h9{height:58.651172px;}
.h4{height:73.545469px;}
.h6{height:74.244727px;}
.h5{height:82.635820px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.ha{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x1d{left:95.039987px;}
.x6{left:103.895987px;}
.x11{left:139.355987px;}
.x3{left:142.775987px;}
.x4{left:154.289987px;}
.x10{left:155.729987px;}
.x8{left:186.509987px;}
.x9{left:189.749987px;}
.x12{left:207.569973px;}
.x7{left:217.469987px;}
.x13{left:221.249987px;}
.xd{left:243.209987px;}
.xa{left:246.629987px;}
.xf{left:261.749987px;}
.x1c{left:301.394987px;}
.xc{left:314.714987px;}
.x18{left:341.534973px;}
.xb{left:352.694987px;}
.x19{left:355.214987px;}
.x5{left:369.434987px;}
.xe{left:394.634987px;}
.x1a{left:409.574973px;}
.x1b{left:423.254987px;}
.x2{left:436.034987px;}
.x14{left:583.304973px;}
.x15{left:596.984987px;}
.x1e{left:667.544973px;}
.x1f{left:681.224987px;}
.x16{left:789.089973px;}
.x17{left:802.769987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls8{letter-spacing:-0.039040pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.224640pt;}
.ls9{letter-spacing:0.311467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.336533pt;}
.ls1{letter-spacing:13.280000pt;}
.ls2{letter-spacing:33.760000pt;}
.ls6{letter-spacing:42.720000pt;}
.ls0{letter-spacing:73.440000pt;}
.lsd{letter-spacing:139.802027pt;}
.lse{letter-spacing:906.218667pt;}
.ws2{word-spacing:-19.056533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.031467pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.680960pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-5.016960pt;}
._1b{margin-left:-3.818880pt;}
._c{margin-left:-2.920320pt;}
._d{margin-left:-2.021760pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.499307pt;}
._a{width:2.770560pt;}
._11{width:4.084480pt;}
._16{width:5.391360pt;}
._15{width:6.364800pt;}
._24{width:7.263360pt;}
._b{width:8.236800pt;}
._2{width:9.713707pt;}
._3{width:10.632960pt;}
._7{width:11.756160pt;}
._8{width:12.714027pt;}
._6{width:14.451840pt;}
._5{width:15.375573pt;}
._23{width:16.661120pt;}
._25{width:17.671040pt;}
._9{width:20.142720pt;}
._22{width:21.643733pt;}
._1d{width:23.285973pt;}
._1c{width:24.186240pt;}
._21{width:25.608960pt;}
._12{width:28.978560pt;}
._13{width:30.101760pt;}
._26{width:31.452587pt;}
._19{width:32.348160pt;}
._18{width:33.621120pt;}
._17{width:34.544427pt;}
._1a{width:38.113920pt;}
._14{width:39.162240pt;}
._27{width:41.109120pt;}
._20{width:42.456960pt;}
._1f{width:53.612373pt;}
._1e{width:54.737280pt;}
._10{width:73.124693pt;}
._f{width:74.014507pt;}
._e{width:81.148587pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y5c{bottom:78.592000pt;}
.y5b{bottom:83.232000pt;}
.y2c{bottom:92.512000pt;}
.y5a{bottom:93.952000pt;}
.y7e{bottom:95.072000pt;}
.y59{bottom:98.592000pt;}
.y58{bottom:109.312000pt;}
.y2b{bottom:113.952000pt;}
.y57{bottom:124.672000pt;}
.y56{bottom:129.312000pt;}
.y2a{bottom:135.386667pt;}
.y55{bottom:140.026667pt;}
.y7d{bottom:141.466667pt;}
.y54{bottom:144.666667pt;}
.y53{bottom:156.506667pt;}
.y29{bottom:156.826667pt;}
.y7c{bottom:162.906667pt;}
.y7b{bottom:184.346667pt;}
.y28{bottom:187.866667pt;}
.y7a{bottom:205.786667pt;}
.y27{bottom:209.306667pt;}
.y79{bottom:227.226667pt;}
.y26{bottom:230.906667pt;}
.y52{bottom:238.106667pt;}
.y78{bottom:248.706667pt;}
.y25{bottom:252.386667pt;}
.y51{bottom:259.586667pt;}
.y77{bottom:270.146667pt;}
.y24{bottom:273.826667pt;}
.y50{bottom:281.026667pt;}
.y23{bottom:295.266667pt;}
.y4f{bottom:302.466667pt;}
.y76{bottom:313.186667pt;}
.y22{bottom:316.706667pt;}
.y4e{bottom:323.906667pt;}
.y75{bottom:334.626667pt;}
.y21{bottom:338.146667pt;}
.y4d{bottom:345.346667pt;}
.y74{bottom:356.066667pt;}
.y20{bottom:359.746667pt;}
.y4c{bottom:366.946667pt;}
.y1f{bottom:381.186667pt;}
.y4b{bottom:388.386667pt;}
.y73{bottom:398.946667pt;}
.y49{bottom:409.826667pt;}
.y1e{bottom:412.226667pt;}
.y4a{bottom:416.546667pt;}
.y72{bottom:420.546667pt;}
.y48{bottom:431.266667pt;}
.y1d{bottom:433.666667pt;}
.y71{bottom:441.986667pt;}
.y47{bottom:452.706667pt;}
.y1c{bottom:455.106667pt;}
.y70{bottom:463.426667pt;}
.y46{bottom:474.146667pt;}
.y1b{bottom:476.546667pt;}
.y6f{bottom:484.866667pt;}
.y45{bottom:495.773333pt;}
.y1a{bottom:498.173333pt;}
.y6e{bottom:506.333333pt;}
.y43{bottom:517.213333pt;}
.y19{bottom:519.613333pt;}
.y44{bottom:523.933333pt;}
.y6d{bottom:527.773333pt;}
.y42{bottom:538.653333pt;}
.y18{bottom:541.053333pt;}
.y6c{bottom:549.373333pt;}
.y41{bottom:560.093333pt;}
.y17{bottom:562.493333pt;}
.y6b{bottom:570.813333pt;}
.y3f{bottom:581.533333pt;}
.y16{bottom:583.933333pt;}
.y40{bottom:588.253333pt;}
.y6a{bottom:592.253333pt;}
.y3e{bottom:602.973333pt;}
.y15{bottom:605.373333pt;}
.y69{bottom:613.693333pt;}
.y3d{bottom:624.413333pt;}
.y14{bottom:626.813333pt;}
.y68{bottom:635.133333pt;}
.y3c{bottom:646.013333pt;}
.y13{bottom:648.413333pt;}
.y67{bottom:656.573333pt;}
.y3b{bottom:667.453333pt;}
.y12{bottom:669.853333pt;}
.y66{bottom:678.013333pt;}
.y3a{bottom:688.893333pt;}
.y11{bottom:691.293333pt;}
.y65{bottom:699.613333pt;}
.y39{bottom:710.333333pt;}
.y10{bottom:712.733333pt;}
.y64{bottom:721.053333pt;}
.y37{bottom:731.773333pt;}
.yf{bottom:734.173333pt;}
.y38{bottom:738.493333pt;}
.y63{bottom:742.493333pt;}
.y36{bottom:753.253333pt;}
.y62{bottom:763.973333pt;}
.ye{bottom:765.253333pt;}
.y35{bottom:774.853333pt;}
.y61{bottom:785.413333pt;}
.yd{bottom:786.853333pt;}
.y34{bottom:796.293333pt;}
.y60{bottom:806.853333pt;}
.yc{bottom:808.293333pt;}
.y33{bottom:817.733333pt;}
.y5f{bottom:828.453333pt;}
.y32{bottom:839.173333pt;}
.yb{bottom:839.333333pt;}
.y5e{bottom:849.893333pt;}
.ya{bottom:860.773333pt;}
.y31{bottom:871.333333pt;}
.y9{bottom:882.213333pt;}
.y30{bottom:892.773333pt;}
.y2f{bottom:914.213333pt;}
.y8{bottom:919.653333pt;}
.y2e{bottom:935.653333pt;}
.y7{bottom:941.093333pt;}
.y2d{bottom:957.093333pt;}
.y5d{bottom:963.813333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h8{height:33.918750pt;}
.h7{height:47.109375pt;}
.h9{height:52.134375pt;}
.h4{height:65.373750pt;}
.h6{height:65.995312pt;}
.h5{height:73.454062pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.ha{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x1d{left:84.479988pt;}
.x6{left:92.351988pt;}
.x11{left:123.871988pt;}
.x3{left:126.911988pt;}
.x4{left:137.146655pt;}
.x10{left:138.426655pt;}
.x8{left:165.786655pt;}
.x9{left:168.666655pt;}
.x12{left:184.506643pt;}
.x7{left:193.306655pt;}
.x13{left:196.666655pt;}
.xd{left:216.186655pt;}
.xa{left:219.226655pt;}
.xf{left:232.666655pt;}
.x1c{left:267.906655pt;}
.xc{left:279.746655pt;}
.x18{left:303.586643pt;}
.xb{left:313.506655pt;}
.x19{left:315.746655pt;}
.x5{left:328.386655pt;}
.xe{left:350.786655pt;}
.x1a{left:364.066643pt;}
.x1b{left:376.226655pt;}
.x2{left:387.586655pt;}
.x14{left:518.493310pt;}
.x15{left:530.653322pt;}
.x1e{left:593.373310pt;}
.x1f{left:605.533322pt;}
.x16{left:701.413310pt;}
.x17{left:713.573322pt;}
}




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