
    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_d5832a224b207aa95160745e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_db4d79a9b0668591be6de465.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_6ef66ac46c7fcff61ae8caa7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_08467b743b21645a0e1d0ed9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_f73122a073f1c10a677960e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_3df2479e3dc25b1980349297.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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:ff9;src:url('chunks/assets/font_275b4bcd877aea2740abb5c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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);}
.v2{vertical-align:-19.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:3.360000px;}
.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;}
}
.ws5{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.296000px;}
.ws4{word-spacing:-12.420000px;}
.ws19{word-spacing:-12.000000px;}
.ws2{word-spacing:-9.408000px;}
.ws6{word-spacing:-8.400000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.240000px;}
.ws23{word-spacing:0.960000px;}
.ws13{word-spacing:1.140000px;}
.ws21{word-spacing:1.344000px;}
.ws16{word-spacing:1.380000px;}
.ws24{word-spacing:1.584000px;}
.ws25{word-spacing:1.824000px;}
.ws10{word-spacing:2.340000px;}
.ws26{word-spacing:2.352000px;}
.ws12{word-spacing:2.400000px;}
.wsb{word-spacing:2.880000px;}
.ws22{word-spacing:3.216000px;}
.ws1e{word-spacing:3.456000px;}
.wsf{word-spacing:3.540000px;}
.ws1c{word-spacing:4.032000px;}
.ws20{word-spacing:4.368000px;}
.ws15{word-spacing:4.860000px;}
.ws17{word-spacing:5.160000px;}
.ws1d{word-spacing:5.280000px;}
.wsd{word-spacing:5.400000px;}
.ws7{word-spacing:5.700000px;}
.ws14{word-spacing:6.240000px;}
.wsc{word-spacing:6.600000px;}
.ws11{word-spacing:6.660000px;}
.ws1f{word-spacing:6.720000px;}
.ws9{word-spacing:7.680000px;}
.wsa{word-spacing:8.100000px;}
.ws1b{word-spacing:13.200000px;}
.ws8{word-spacing:14.400000px;}
.ws18{word-spacing:73.056000px;}
.ws1a{word-spacing:1821.071960px;}
._5{margin-left:-15.600000px;}
._4{margin-left:-5.208000px;}
._3{margin-left:-3.756000px;}
._2{margin-left:-2.640000px;}
._0{margin-left:-1.632000px;}
._1{width:1.080000px;}
._8{width:7.296000px;}
._9{width:9.899990px;}
._6{width:22.320000px;}
._7{width:56.255991px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:50.758198px;}
.y44{bottom:94.800000px;}
.y4{bottom:97.125005px;}
.y43{bottom:118.655998px;}
.y42{bottom:132.899998px;}
.y20{bottom:139.264499px;}
.y17{bottom:196.933500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y41{bottom:248.108871px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y40{bottom:266.108871px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y3f{bottom:284.108871px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y3e{bottom:302.108871px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y3d{bottom:320.108871px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y3c{bottom:338.108871px;}
.ye{bottom:348.133500px;}
.y3b{bottom:356.108871px;}
.y3a{bottom:374.108871px;}
.yd{bottom:386.785499px;}
.y39{bottom:392.108871px;}
.yc{bottom:408.044999px;}
.y38{bottom:410.108871px;}
.y37{bottom:428.108871px;}
.y52{bottom:438.491531px;}
.y36{bottom:446.108871px;}
.y51{bottom:452.735531px;}
.y35{bottom:464.108871px;}
.y34{bottom:482.108871px;}
.y50{bottom:499.235531px;}
.y33{bottom:500.108871px;}
.yb{bottom:502.864502px;}
.y4f{bottom:513.479531px;}
.y32{bottom:518.108871px;}
.ya{bottom:520.864502px;}
.y4e{bottom:527.723531px;}
.y31{bottom:536.108871px;}
.y9{bottom:538.864499px;}
.y4d{bottom:541.967531px;}
.y30{bottom:554.108871px;}
.y4c{bottom:556.211531px;}
.y8{bottom:556.864499px;}
.y4b{bottom:570.455531px;}
.y2f{bottom:572.108871px;}
.y4a{bottom:584.699531px;}
.y2e{bottom:590.108871px;}
.y49{bottom:598.943531px;}
.y2d{bottom:608.108871px;}
.y48{bottom:613.187531px;}
.y2c{bottom:626.108871px;}
.y47{bottom:641.687531px;}
.y2b{bottom:644.108871px;}
.y7{bottom:645.510000px;}
.y46{bottom:659.687531px;}
.y2a{bottom:662.108871px;}
.y6{bottom:666.771000px;}
.y29{bottom:717.614871px;}
.y5{bottom:726.298500px;}
.y28{bottom:731.858871px;}
.y3{bottom:752.599495px;}
.y27{bottom:769.707275px;}
.y26{bottom:812.453705px;}
.y25{bottom:846.398529px;}
.y2{bottom:879.369000px;}
.y24{bottom:899.785217px;}
.y23{bottom:925.867084px;}
.y22{bottom:940.111084px;}
.y45{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h13{height:22.948800px;}
.h7{height:32.130000px;}
.h12{height:32.784000px;}
.ha{height:33.840000px;}
.hc{height:34.080000px;}
.h11{height:34.687500px;}
.h10{height:40.980000px;}
.hb{height:42.048000px;}
.h14{height:42.528000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hf{height:53.820000px;}
.h2{height:55.080000px;}
.he{height:58.476000px;}
.hd{height:69.108000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w5{width:659.054993px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x9{left:77.598450px;}
.x7{left:80.907303px;}
.x8{left:93.545402px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x5{left:485.858414px;}
@media print{
.v2{vertical-align:-17.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.986667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws3{word-spacing:-11.818667pt;}
.ws4{word-spacing:-11.040000pt;}
.ws19{word-spacing:-10.666667pt;}
.ws2{word-spacing:-8.362667pt;}
.ws6{word-spacing:-7.466667pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.213333pt;}
.ws23{word-spacing:0.853333pt;}
.ws13{word-spacing:1.013333pt;}
.ws21{word-spacing:1.194667pt;}
.ws16{word-spacing:1.226667pt;}
.ws24{word-spacing:1.408000pt;}
.ws25{word-spacing:1.621333pt;}
.ws10{word-spacing:2.080000pt;}
.ws26{word-spacing:2.090667pt;}
.ws12{word-spacing:2.133333pt;}
.wsb{word-spacing:2.560000pt;}
.ws22{word-spacing:2.858667pt;}
.ws1e{word-spacing:3.072000pt;}
.wsf{word-spacing:3.146667pt;}
.ws1c{word-spacing:3.584000pt;}
.ws20{word-spacing:3.882667pt;}
.ws15{word-spacing:4.320000pt;}
.ws17{word-spacing:4.586667pt;}
.ws1d{word-spacing:4.693333pt;}
.wsd{word-spacing:4.800000pt;}
.ws7{word-spacing:5.066667pt;}
.ws14{word-spacing:5.546667pt;}
.wsc{word-spacing:5.866667pt;}
.ws11{word-spacing:5.920000pt;}
.ws1f{word-spacing:5.973333pt;}
.ws9{word-spacing:6.826667pt;}
.wsa{word-spacing:7.200000pt;}
.ws1b{word-spacing:11.733333pt;}
.ws8{word-spacing:12.800000pt;}
.ws18{word-spacing:64.938667pt;}
.ws1a{word-spacing:1618.730632pt;}
._5{margin-left:-13.866667pt;}
._4{margin-left:-4.629333pt;}
._3{margin-left:-3.338667pt;}
._2{margin-left:-2.346667pt;}
._0{margin-left:-1.450667pt;}
._1{width:0.960000pt;}
._8{width:6.485333pt;}
._9{width:8.799991pt;}
._6{width:19.840000pt;}
._7{width:50.005325pt;}
.fs8{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:45.118398pt;}
.y44{bottom:84.266667pt;}
.y4{bottom:86.333337pt;}
.y43{bottom:105.471998pt;}
.y42{bottom:118.133331pt;}
.y20{bottom:123.790666pt;}
.y17{bottom:175.052000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y41{bottom:220.541219pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y40{bottom:236.541219pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y3f{bottom:252.541219pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y3e{bottom:268.541219pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y3d{bottom:284.541219pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y3c{bottom:300.541219pt;}
.ye{bottom:309.452000pt;}
.y3b{bottom:316.541219pt;}
.y3a{bottom:332.541219pt;}
.yd{bottom:343.809333pt;}
.y39{bottom:348.541219pt;}
.yc{bottom:362.706666pt;}
.y38{bottom:364.541219pt;}
.y37{bottom:380.541219pt;}
.y52{bottom:389.770249pt;}
.y36{bottom:396.541219pt;}
.y51{bottom:402.431583pt;}
.y35{bottom:412.541219pt;}
.y34{bottom:428.541219pt;}
.y50{bottom:443.764916pt;}
.y33{bottom:444.541219pt;}
.yb{bottom:446.990669pt;}
.y4f{bottom:456.426249pt;}
.y32{bottom:460.541219pt;}
.ya{bottom:462.990669pt;}
.y4e{bottom:469.087583pt;}
.y31{bottom:476.541219pt;}
.y9{bottom:478.990666pt;}
.y4d{bottom:481.748916pt;}
.y30{bottom:492.541219pt;}
.y4c{bottom:494.410249pt;}
.y8{bottom:494.990666pt;}
.y4b{bottom:507.071583pt;}
.y2f{bottom:508.541219pt;}
.y4a{bottom:519.732916pt;}
.y2e{bottom:524.541219pt;}
.y49{bottom:532.394249pt;}
.y2d{bottom:540.541219pt;}
.y48{bottom:545.055583pt;}
.y2c{bottom:556.541219pt;}
.y47{bottom:570.388916pt;}
.y2b{bottom:572.541219pt;}
.y7{bottom:573.786667pt;}
.y46{bottom:586.388916pt;}
.y2a{bottom:588.541219pt;}
.y6{bottom:592.685334pt;}
.y29{bottom:637.879886pt;}
.y5{bottom:645.598667pt;}
.y28{bottom:650.541219pt;}
.y3{bottom:668.977329pt;}
.y27{bottom:684.184245pt;}
.y26{bottom:722.181071pt;}
.y25{bottom:752.354248pt;}
.y2{bottom:781.661334pt;}
.y24{bottom:799.809082pt;}
.y23{bottom:822.992964pt;}
.y22{bottom:835.654297pt;}
.y45{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h13{height:20.398933pt;}
.h7{height:28.560000pt;}
.h12{height:29.141333pt;}
.ha{height:30.080000pt;}
.hc{height:30.293333pt;}
.h11{height:30.833333pt;}
.h10{height:36.426667pt;}
.hb{height:37.376000pt;}
.h14{height:37.802667pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hf{height:47.840000pt;}
.h2{height:48.960000pt;}
.he{height:51.978667pt;}
.hd{height:61.429333pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w5{width:585.826660pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x9{left:68.976400pt;}
.x7{left:71.917603pt;}
.x8{left:83.151469pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x5{left:431.874146pt;}
}




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