
    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_5174015b1c52d925721ffefe.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_97b067189c6e1a0d609f5b08.woff')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_99628d1ed97e09e667a10a6e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_68f372c486195d4a6cb7288f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_316af3c57f22e3b9ea422c4a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_d071b7cc90b2dbe0ebb1ce2b.woff')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.v1{vertical-align:21.000000px;}
.ls3{letter-spacing:-0.840000px;}
.ls10{letter-spacing:-0.498000px;}
.lsd{letter-spacing:-0.462000px;}
.ls9{letter-spacing:-0.306000px;}
.lsb{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.150000px;}
.lsc{letter-spacing:-0.132000px;}
.ls7{letter-spacing:-0.114000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.084000px;}
.lsa{letter-spacing:0.132000px;}
.ls6{letter-spacing:0.390000px;}
.ls0{letter-spacing:0.444000px;}
.ls11{letter-spacing:0.582000px;}
.lsf{letter-spacing:0.912000px;}
.ls8{letter-spacing:1.368000px;}
.ls1{letter-spacing:848.208000px;}
.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:-18.396000px;}
.wsc{word-spacing:-15.498000px;}
.ws2{word-spacing:-15.306000px;}
.ws5{word-spacing:-15.048000px;}
.ws9{word-spacing:-14.916000px;}
.ws3{word-spacing:-14.802000px;}
.ws6{word-spacing:-14.784000px;}
.ws8{word-spacing:-14.766000px;}
.ws4{word-spacing:-14.610000px;}
.ws7{word-spacing:-14.454000px;}
.wsa{word-spacing:-14.418000px;}
.wsb{word-spacing:-9.492000px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.512000px;}
._0{width:1.224000px;}
._4{width:3.120000px;}
._6{width:4.182000px;}
._5{width:849.534000px;}
._3{width:1272.756000px;}
._2{width:1517.286000px;}
.fc4{color:rgb(46,116,181);}
.fc3{color:transparent;}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(46,117,181);}
.fc1{color:rgb(89,154,213);}
.fc6{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:39.000000px;}
.fs9{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.fs7{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:168.000000px;}
.fs3{font-size:168.150000px;}
.y0{bottom:0.000000px;}
.y10{bottom:55.537500px;}
.y2{bottom:57.412500px;}
.yf{bottom:69.412500px;}
.y1{bottom:77.662500px;}
.y69{bottom:110.287500px;}
.y68{bottom:128.662500px;}
.y67{bottom:147.037500px;}
.y66{bottom:165.030000px;}
.y65{bottom:183.450000px;}
.y64{bottom:201.825000px;}
.y39{bottom:202.950000px;}
.y63{bottom:220.200000px;}
.y38{bottom:224.700000px;}
.y62{bottom:238.575000px;}
.y61{bottom:256.950000px;}
.y37{bottom:258.450000px;}
.y60{bottom:274.950000px;}
.y36{bottom:280.200000px;}
.y5f{bottom:293.325000px;}
.y5e{bottom:297.825000px;}
.y35{bottom:301.950000px;}
.y7c{bottom:310.980000px;}
.y5d{bottom:312.120000px;}
.y34{bottom:323.745000px;}
.y7b{bottom:332.745000px;}
.y33{bottom:345.495000px;}
.ye{bottom:355.995000px;}
.y32{bottom:366.870000px;}
.yd{bottom:385.605000px;}
.y5c{bottom:387.495000px;}
.y31{bottom:388.605000px;}
.y7a{bottom:390.120000px;}
.y5b{bottom:409.245000px;}
.y30{bottom:410.370000px;}
.y79{bottom:411.870000px;}
.yc{bottom:426.870000px;}
.y5a{bottom:430.995000px;}
.y2f{bottom:432.150000px;}
.y78{bottom:433.650000px;}
.y59{bottom:452.775000px;}
.y2e{bottom:453.900000px;}
.y77{bottom:455.400000px;}
.yb{bottom:470.025000px;}
.y58{bottom:474.150000px;}
.y2d{bottom:475.650000px;}
.y57{bottom:495.900000px;}
.y2c{bottom:497.400000px;}
.y76{bottom:513.150000px;}
.ya{bottom:517.650000px;}
.y2b{bottom:519.150000px;}
.y75{bottom:534.900000px;}
.y56{bottom:539.400000px;}
.y2a{bottom:540.900000px;}
.y74{bottom:556.650000px;}
.y8b{bottom:557.400000px;}
.y9{bottom:565.320000px;}
.y55{bottom:573.195000px;}
.y29{bottom:574.695000px;}
.y73{bottom:578.445000px;}
.y8a{bottom:591.195000px;}
.y54{bottom:594.945000px;}
.y28{bottom:596.445000px;}
.y72{bottom:600.195000px;}
.y53{bottom:616.695000px;}
.y27{bottom:618.195000px;}
.y71{bottom:621.945000px;}
.y89{bottom:624.945000px;}
.y8{bottom:626.820000px;}
.y52{bottom:638.445000px;}
.y26{bottom:639.945000px;}
.y70{bottom:643.695000px;}
.y88{bottom:658.695000px;}
.y51{bottom:660.195000px;}
.y25{bottom:661.695000px;}
.y7{bottom:678.570000px;}
.y50{bottom:681.945000px;}
.y24{bottom:683.445000px;}
.y87{bottom:692.475000px;}
.y6f{bottom:701.475000px;}
.y4f{bottom:703.725000px;}
.y23{bottom:705.225000px;}
.y6e{bottom:723.225000px;}
.y4e{bottom:725.475000px;}
.y22{bottom:726.975000px;}
.y6{bottom:729.975000px;}
.y6d{bottom:744.975000px;}
.y4d{bottom:747.225000px;}
.y21{bottom:748.725000px;}
.y6c{bottom:766.725000px;}
.y20{bottom:770.475000px;}
.y4c{bottom:780.975000px;}
.y5{bottom:781.350000px;}
.y6b{bottom:788.475000px;}
.y86{bottom:792.225000px;}
.y4b{bottom:802.725000px;}
.y1f{bottom:804.225000px;}
.y85{bottom:813.975000px;}
.y4a{bottom:824.505000px;}
.y1e{bottom:826.005000px;}
.y4{bottom:833.130000px;}
.y84{bottom:835.755000px;}
.y49{bottom:846.270000px;}
.y1d{bottom:847.755000px;}
.y83{bottom:857.505000px;}
.y48{bottom:868.005000px;}
.y1c{bottom:869.505000px;}
.y3{bottom:876.255000px;}
.y82{bottom:879.255000px;}
.y47{bottom:889.755000px;}
.y1b{bottom:891.255000px;}
.y81{bottom:901.005000px;}
.y46{bottom:911.505000px;}
.y1a{bottom:913.005000px;}
.y45{bottom:933.255000px;}
.y80{bottom:934.755000px;}
.y19{bottom:946.800000px;}
.y44{bottom:955.050000px;}
.y7f{bottom:956.550000px;}
.y6a{bottom:967.050000px;}
.y18{bottom:968.550000px;}
.y7e{bottom:977.925000px;}
.y43{bottom:988.800000px;}
.y17{bottom:989.925000px;}
.y7d{bottom:999.675000px;}
.y41{bottom:1010.550000px;}
.y16{bottom:1011.675000px;}
.y42{bottom:1015.800000px;}
.y40{bottom:1032.300000px;}
.y15{bottom:1033.425000px;}
.y3f{bottom:1054.050000px;}
.y14{bottom:1055.175000px;}
.y3e{bottom:1075.830000px;}
.y13{bottom:1076.955000px;}
.y3d{bottom:1097.205000px;}
.y12{bottom:1098.705000px;}
.y3c{bottom:1118.955000px;}
.y11{bottom:1131.705000px;}
.y3a{bottom:1140.705000px;}
.y3b{bottom:1145.955000px;}
.h9{height:38.790527px;}
.h8{height:41.774414px;}
.h6{height:50.062500px;}
.ha{height:59.677734px;}
.h1{height:65.645508px;}
.hb{height:67.579102px;}
.h5{height:72.000000px;}
.h7{height:81.000000px;}
.h2{height:122.871094px;}
.h4{height:126.000000px;}
.h3{height:126.112500px;}
.h0{height:1263.000000px;}
.w3{width:892.874973px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:65.662487px;}
.x3{left:108.037487px;}
.xf{left:112.912487px;}
.x8{left:119.662487px;}
.x5{left:121.162487px;}
.xe{left:324.149987px;}
.x2{left:378.899987px;}
.xc{left:405.944973px;}
.xd{left:411.194987px;}
.x4{left:425.444987px;}
.x6{left:581.129987px;}
.x9{left:587.879987px;}
.x7{left:624.254987px;}
.xa{left:709.799973px;}
.xb{left:715.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.666667pt;}
.ls3{letter-spacing:-0.746667pt;}
.ls10{letter-spacing:-0.442667pt;}
.lsd{letter-spacing:-0.410667pt;}
.ls9{letter-spacing:-0.272000pt;}
.lsb{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.133333pt;}
.lsc{letter-spacing:-0.117333pt;}
.ls7{letter-spacing:-0.101333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.074667pt;}
.lsa{letter-spacing:0.117333pt;}
.ls6{letter-spacing:0.346667pt;}
.ls0{letter-spacing:0.394667pt;}
.ls11{letter-spacing:0.517333pt;}
.lsf{letter-spacing:0.810667pt;}
.ls8{letter-spacing:1.216000pt;}
.ls1{letter-spacing:753.962667pt;}
.ws0{word-spacing:-16.352000pt;}
.wsc{word-spacing:-13.776000pt;}
.ws2{word-spacing:-13.605333pt;}
.ws5{word-spacing:-13.376000pt;}
.ws9{word-spacing:-13.258667pt;}
.ws3{word-spacing:-13.157333pt;}
.ws6{word-spacing:-13.141333pt;}
.ws8{word-spacing:-13.125333pt;}
.ws4{word-spacing:-12.986667pt;}
.ws7{word-spacing:-12.848000pt;}
.wsa{word-spacing:-12.816000pt;}
.wsb{word-spacing:-8.437333pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.088000pt;}
._4{width:2.773333pt;}
._6{width:3.717333pt;}
._5{width:755.141333pt;}
._3{width:1131.338667pt;}
._2{width:1348.698667pt;}
.fsa{font-size:34.666667pt;}
.fs9{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.fs7{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:149.333333pt;}
.fs3{font-size:149.466667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:49.366667pt;}
.y2{bottom:51.033333pt;}
.yf{bottom:61.700000pt;}
.y1{bottom:69.033333pt;}
.y69{bottom:98.033333pt;}
.y68{bottom:114.366667pt;}
.y67{bottom:130.700000pt;}
.y66{bottom:146.693333pt;}
.y65{bottom:163.066667pt;}
.y64{bottom:179.400000pt;}
.y39{bottom:180.400000pt;}
.y63{bottom:195.733333pt;}
.y38{bottom:199.733333pt;}
.y62{bottom:212.066667pt;}
.y61{bottom:228.400000pt;}
.y37{bottom:229.733333pt;}
.y60{bottom:244.400000pt;}
.y36{bottom:249.066667pt;}
.y5f{bottom:260.733333pt;}
.y5e{bottom:264.733333pt;}
.y35{bottom:268.400000pt;}
.y7c{bottom:276.426667pt;}
.y5d{bottom:277.440000pt;}
.y34{bottom:287.773333pt;}
.y7b{bottom:295.773333pt;}
.y33{bottom:307.106667pt;}
.ye{bottom:316.440000pt;}
.y32{bottom:326.106667pt;}
.yd{bottom:342.760000pt;}
.y5c{bottom:344.440000pt;}
.y31{bottom:345.426667pt;}
.y7a{bottom:346.773333pt;}
.y5b{bottom:363.773333pt;}
.y30{bottom:364.773333pt;}
.y79{bottom:366.106667pt;}
.yc{bottom:379.440000pt;}
.y5a{bottom:383.106667pt;}
.y2f{bottom:384.133333pt;}
.y78{bottom:385.466667pt;}
.y59{bottom:402.466667pt;}
.y2e{bottom:403.466667pt;}
.y77{bottom:404.800000pt;}
.yb{bottom:417.800000pt;}
.y58{bottom:421.466667pt;}
.y2d{bottom:422.800000pt;}
.y57{bottom:440.800000pt;}
.y2c{bottom:442.133333pt;}
.y76{bottom:456.133333pt;}
.ya{bottom:460.133333pt;}
.y2b{bottom:461.466667pt;}
.y75{bottom:475.466667pt;}
.y56{bottom:479.466667pt;}
.y2a{bottom:480.800000pt;}
.y74{bottom:494.800000pt;}
.y8b{bottom:495.466667pt;}
.y9{bottom:502.506667pt;}
.y55{bottom:509.506667pt;}
.y29{bottom:510.840000pt;}
.y73{bottom:514.173333pt;}
.y8a{bottom:525.506667pt;}
.y54{bottom:528.840000pt;}
.y28{bottom:530.173333pt;}
.y72{bottom:533.506667pt;}
.y53{bottom:548.173333pt;}
.y27{bottom:549.506667pt;}
.y71{bottom:552.840000pt;}
.y89{bottom:555.506667pt;}
.y8{bottom:557.173333pt;}
.y52{bottom:567.506667pt;}
.y26{bottom:568.840000pt;}
.y70{bottom:572.173333pt;}
.y88{bottom:585.506667pt;}
.y51{bottom:586.840000pt;}
.y25{bottom:588.173333pt;}
.y7{bottom:603.173333pt;}
.y50{bottom:606.173333pt;}
.y24{bottom:607.506667pt;}
.y87{bottom:615.533333pt;}
.y6f{bottom:623.533333pt;}
.y4f{bottom:625.533333pt;}
.y23{bottom:626.866667pt;}
.y6e{bottom:642.866667pt;}
.y4e{bottom:644.866667pt;}
.y22{bottom:646.200000pt;}
.y6{bottom:648.866667pt;}
.y6d{bottom:662.200000pt;}
.y4d{bottom:664.200000pt;}
.y21{bottom:665.533333pt;}
.y6c{bottom:681.533333pt;}
.y20{bottom:684.866667pt;}
.y4c{bottom:694.200000pt;}
.y5{bottom:694.533333pt;}
.y6b{bottom:700.866667pt;}
.y86{bottom:704.200000pt;}
.y4b{bottom:713.533333pt;}
.y1f{bottom:714.866667pt;}
.y85{bottom:723.533333pt;}
.y4a{bottom:732.893333pt;}
.y1e{bottom:734.226667pt;}
.y4{bottom:740.560000pt;}
.y84{bottom:742.893333pt;}
.y49{bottom:752.240000pt;}
.y1d{bottom:753.560000pt;}
.y83{bottom:762.226667pt;}
.y48{bottom:771.560000pt;}
.y1c{bottom:772.893333pt;}
.y3{bottom:778.893333pt;}
.y82{bottom:781.560000pt;}
.y47{bottom:790.893333pt;}
.y1b{bottom:792.226667pt;}
.y81{bottom:800.893333pt;}
.y46{bottom:810.226667pt;}
.y1a{bottom:811.560000pt;}
.y45{bottom:829.560000pt;}
.y80{bottom:830.893333pt;}
.y19{bottom:841.600000pt;}
.y44{bottom:848.933333pt;}
.y7f{bottom:850.266667pt;}
.y6a{bottom:859.600000pt;}
.y18{bottom:860.933333pt;}
.y7e{bottom:869.266667pt;}
.y43{bottom:878.933333pt;}
.y17{bottom:879.933333pt;}
.y7d{bottom:888.600000pt;}
.y41{bottom:898.266667pt;}
.y16{bottom:899.266667pt;}
.y42{bottom:902.933333pt;}
.y40{bottom:917.600000pt;}
.y15{bottom:918.600000pt;}
.y3f{bottom:936.933333pt;}
.y14{bottom:937.933333pt;}
.y3e{bottom:956.293333pt;}
.y13{bottom:957.293333pt;}
.y3d{bottom:975.293333pt;}
.y12{bottom:976.626667pt;}
.y3c{bottom:994.626667pt;}
.y11{bottom:1005.960000pt;}
.y3a{bottom:1013.960000pt;}
.y3b{bottom:1018.626667pt;}
.h9{height:34.480469pt;}
.h8{height:37.132812pt;}
.h6{height:44.500000pt;}
.ha{height:53.046875pt;}
.h1{height:58.351562pt;}
.hb{height:60.070312pt;}
.h5{height:64.000000pt;}
.h7{height:72.000000pt;}
.h2{height:109.218750pt;}
.h4{height:112.000000pt;}
.h3{height:112.100000pt;}
.h0{height:1122.666667pt;}
.w3{width:793.666643pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:58.366655pt;}
.x3{left:96.033322pt;}
.xf{left:100.366655pt;}
.x8{left:106.366655pt;}
.x5{left:107.699988pt;}
.xe{left:288.133322pt;}
.x2{left:336.799988pt;}
.xc{left:360.839976pt;}
.xd{left:365.506655pt;}
.x4{left:378.173322pt;}
.x6{left:516.559988pt;}
.x9{left:522.559988pt;}
.x7{left:554.893322pt;}
.xa{left:630.933310pt;}
.xb{left:635.599988pt;}
}




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