
    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_7496f80c84272f99e05956c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_f791e0bb7f2b5191391f1209.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_0e6c98b585d2d8134426d462.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e0f784291199003359d806fe.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e917ee32ab514d759192f0dd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_7bd30f99f54aaa80710aa899.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_941ba179afe555c21aa6bd0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.200000px;}
.ls2{letter-spacing:-0.576000px;}
.ls1{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.384000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:33.984000px;}
.ls3{letter-spacing:171.720000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-60.000000px;}
.ws0{word-spacing:-19.776000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.616000px;}
.ws1{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-3.600000px;}
._2{margin-left:-1.536000px;}
._3{width:1.152000px;}
._4{width:2.196000px;}
._e{width:3.528000px;}
._7{width:4.992000px;}
._8{width:6.600000px;}
._10{width:7.704000px;}
._11{width:9.078000px;}
._d{width:10.656000px;}
._12{width:11.862000px;}
._f{width:12.960000px;}
._9{width:14.040000px;}
._a{width:15.096000px;}
._14{width:16.566000px;}
._c{width:21.744000px;}
._b{width:23.280000px;}
._6{width:33.720000px;}
._5{width:34.776000px;}
._0{width:292.446000px;}
._13{width:418.992000px;}
._1{width:1423.116000px;}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(51,51,204);}
.fc1{color:rgb(204,0,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:6.885000px;}
.y2d{bottom:6.900000px;}
.y27{bottom:6.915000px;}
.y62{bottom:7.185000px;}
.y2f{bottom:7.200000px;}
.y53{bottom:7.215000px;}
.y29{bottom:7.245000px;}
.y2b{bottom:18.900000px;}
.y7{bottom:19.537500px;}
.y2c{bottom:30.600000px;}
.y6{bottom:43.537500px;}
.y5{bottom:68.737500px;}
.y35{bottom:105.037500px;}
.y5b{bottom:120.937500px;}
.y34{bottom:129.037500px;}
.y5a{bottom:150.630000px;}
.y33{bottom:152.745000px;}
.y32{bottom:176.475000px;}
.y59{bottom:186.375000px;}
.y31{bottom:200.475000px;}
.y58{bottom:210.375000px;}
.y30{bottom:222.075000px;}
.y57{bottom:234.075000px;}
.y2e{bottom:251.775000px;}
.y56{bottom:257.775000px;}
.y55{bottom:279.675000px;}
.y2a{bottom:281.775000px;}
.y54{bottom:309.375000px;}
.y28{bottom:335.175000px;}
.y52{bottom:339.105000px;}
.y26{bottom:365.205000px;}
.y51{bottom:369.105000px;}
.y25{bottom:400.905000px;}
.y50{bottom:404.820000px;}
.y24{bottom:424.620000px;}
.y4f{bottom:428.505000px;}
.y72{bottom:434.505000px;}
.y23{bottom:448.320000px;}
.y4e{bottom:452.205000px;}
.y71{bottom:458.205000px;}
.y22{bottom:472.320000px;}
.y4d{bottom:476.205000px;}
.y70{bottom:482.205000px;}
.y21{bottom:496.005000px;}
.y4c{bottom:499.905000px;}
.y6f{bottom:505.905000px;}
.y20{bottom:519.750000px;}
.y4b{bottom:523.650000px;}
.y6e{bottom:529.650000px;}
.y1f{bottom:543.750000px;}
.y6d{bottom:553.650000px;}
.y1e{bottom:567.450000px;}
.y4a{bottom:569.250000px;}
.y6c{bottom:577.350000px;}
.y1d{bottom:591.150000px;}
.y49{bottom:598.950000px;}
.y6b{bottom:601.050000px;}
.y1c{bottom:615.150000px;}
.y6a{bottom:625.050000px;}
.y48{bottom:628.950000px;}
.y1b{bottom:638.850000px;}
.y69{bottom:648.750000px;}
.y47{bottom:658.650000px;}
.y1a{bottom:662.550000px;}
.y68{bottom:672.450000px;}
.y19{bottom:686.595000px;}
.y46{bottom:688.380000px;}
.y67{bottom:696.495000px;}
.y18{bottom:710.280000px;}
.y66{bottom:720.195000px;}
.y45{bottom:724.095000px;}
.y17{bottom:733.995000px;}
.y65{bottom:741.780000px;}
.y44{bottom:748.080000px;}
.y16{bottom:757.980000px;}
.y64{bottom:771.780000px;}
.y43{bottom:771.795000px;}
.y15{bottom:781.695000px;}
.y42{bottom:795.480000px;}
.y63{bottom:801.495000px;}
.y14{bottom:805.380000px;}
.y41{bottom:819.480000px;}
.y13{bottom:829.380000px;}
.y61{bottom:831.195000px;}
.y40{bottom:843.195000px;}
.y12{bottom:853.125000px;}
.y60{bottom:861.225000px;}
.y3f{bottom:866.925000px;}
.y11{bottom:876.825000px;}
.y3e{bottom:890.925000px;}
.y5f{bottom:896.925000px;}
.y10{bottom:900.825000px;}
.y3d{bottom:914.625000px;}
.y5e{bottom:920.625000px;}
.yf{bottom:924.525000px;}
.y3c{bottom:938.325000px;}
.y5d{bottom:944.325000px;}
.ye{bottom:948.225000px;}
.y3b{bottom:959.925000px;}
.y5c{bottom:968.325000px;}
.yd{bottom:972.225000px;}
.y3a{bottom:989.925000px;}
.yc{bottom:995.925000px;}
.y39{bottom:1019.655000px;}
.yb{bottom:1019.670000px;}
.ya{bottom:1043.655000px;}
.y38{bottom:1049.670000px;}
.y9{bottom:1067.355000px;}
.y36{bottom:1079.370000px;}
.y8{bottom:1091.070000px;}
.y4{bottom:1127.955000px;}
.y3{bottom:1151.955000px;}
.y2{bottom:1176.870000px;}
.y1{bottom:1207.800000px;}
.hd{height:23.685000px;}
.h9{height:23.700000px;}
.he{height:23.737500px;}
.hc{height:24.000000px;}
.hf{height:24.022500px;}
.ha{height:24.037500px;}
.hb{height:47.400000px;}
.h4{height:66.978516px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h10{height:74.004654px;}
.h2{height:76.546875px;}
.h5{height:82.441406px;}
.h3{height:86.115234px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:109.237500px;}
.w6{width:126.937500px;}
.wc{width:133.837500px;}
.w8{width:166.245000px;}
.wa{width:175.530000px;}
.w5{width:245.175000px;}
.wd{width:263.775000px;}
.wb{width:286.620000px;}
.we{width:348.705000px;}
.wf{width:352.020000px;}
.w4{width:354.420000px;}
.w7{width:370.905000px;}
.w9{width:457.350000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:1.185000px;}
.x5{left:42.299987px;}
.x4{left:84.937487px;}
.x6{left:87.637487px;}
.x1{left:106.537487px;}
.xc{left:201.675000px;}
.xf{left:219.075000px;}
.x13{left:225.975000px;}
.x10{left:258.375000px;}
.x12{left:267.975000px;}
.xa{left:269.774987px;}
.x9{left:318.719987px;}
.x7{left:332.519987px;}
.xb{left:374.219987px;}
.x15{left:404.219987px;}
.x14{left:440.850000px;}
.x8{left:446.249987px;}
.x2{left:546.494987px;}
.xd{left:559.695000px;}
.x3{left:637.694987px;}
.x11{left:807.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls1{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.341333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:30.208000pt;}
.ls3{letter-spacing:152.640000pt;}
.ws4{word-spacing:-53.333333pt;}
.ws0{word-spacing:-17.578667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.658667pt;}
.ws1{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-3.200000pt;}
._2{margin-left:-1.365333pt;}
._3{width:1.024000pt;}
._4{width:1.952000pt;}
._e{width:3.136000pt;}
._7{width:4.437333pt;}
._8{width:5.866667pt;}
._10{width:6.848000pt;}
._11{width:8.069333pt;}
._d{width:9.472000pt;}
._12{width:10.544000pt;}
._f{width:11.520000pt;}
._9{width:12.480000pt;}
._a{width:13.418667pt;}
._14{width:14.725333pt;}
._c{width:19.328000pt;}
._b{width:20.693333pt;}
._6{width:29.973333pt;}
._5{width:30.912000pt;}
._0{width:259.952000pt;}
._13{width:372.437333pt;}
._1{width:1264.992000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:6.120000pt;}
.y2d{bottom:6.133333pt;}
.y27{bottom:6.146667pt;}
.y62{bottom:6.386667pt;}
.y2f{bottom:6.400000pt;}
.y53{bottom:6.413333pt;}
.y29{bottom:6.440000pt;}
.y2b{bottom:16.800000pt;}
.y7{bottom:17.366667pt;}
.y2c{bottom:27.200000pt;}
.y6{bottom:38.700000pt;}
.y5{bottom:61.100000pt;}
.y35{bottom:93.366667pt;}
.y5b{bottom:107.500000pt;}
.y34{bottom:114.700000pt;}
.y5a{bottom:133.893333pt;}
.y33{bottom:135.773333pt;}
.y32{bottom:156.866667pt;}
.y59{bottom:165.666667pt;}
.y31{bottom:178.200000pt;}
.y58{bottom:187.000000pt;}
.y30{bottom:197.400000pt;}
.y57{bottom:208.066667pt;}
.y2e{bottom:223.800000pt;}
.y56{bottom:229.133333pt;}
.y55{bottom:248.600000pt;}
.y2a{bottom:250.466667pt;}
.y54{bottom:275.000000pt;}
.y28{bottom:297.933333pt;}
.y52{bottom:301.426667pt;}
.y26{bottom:324.626667pt;}
.y51{bottom:328.093333pt;}
.y25{bottom:356.360000pt;}
.y50{bottom:359.840000pt;}
.y24{bottom:377.440000pt;}
.y4f{bottom:380.893333pt;}
.y72{bottom:386.226667pt;}
.y23{bottom:398.506667pt;}
.y4e{bottom:401.960000pt;}
.y71{bottom:407.293333pt;}
.y22{bottom:419.840000pt;}
.y4d{bottom:423.293333pt;}
.y70{bottom:428.626667pt;}
.y21{bottom:440.893333pt;}
.y4c{bottom:444.360000pt;}
.y6f{bottom:449.693333pt;}
.y20{bottom:462.000000pt;}
.y4b{bottom:465.466667pt;}
.y6e{bottom:470.800000pt;}
.y1f{bottom:483.333333pt;}
.y6d{bottom:492.133333pt;}
.y1e{bottom:504.400000pt;}
.y4a{bottom:506.000000pt;}
.y6c{bottom:513.200000pt;}
.y1d{bottom:525.466667pt;}
.y49{bottom:532.400000pt;}
.y6b{bottom:534.266667pt;}
.y1c{bottom:546.800000pt;}
.y6a{bottom:555.600000pt;}
.y48{bottom:559.066667pt;}
.y1b{bottom:567.866667pt;}
.y69{bottom:576.666667pt;}
.y47{bottom:585.466667pt;}
.y1a{bottom:588.933333pt;}
.y68{bottom:597.733333pt;}
.y19{bottom:610.306667pt;}
.y46{bottom:611.893333pt;}
.y67{bottom:619.106667pt;}
.y18{bottom:631.360000pt;}
.y66{bottom:640.173333pt;}
.y45{bottom:643.640000pt;}
.y17{bottom:652.440000pt;}
.y65{bottom:659.360000pt;}
.y44{bottom:664.960000pt;}
.y16{bottom:673.760000pt;}
.y64{bottom:686.026667pt;}
.y43{bottom:686.040000pt;}
.y15{bottom:694.840000pt;}
.y42{bottom:707.093333pt;}
.y63{bottom:712.440000pt;}
.y14{bottom:715.893333pt;}
.y41{bottom:728.426667pt;}
.y13{bottom:737.226667pt;}
.y61{bottom:738.840000pt;}
.y40{bottom:749.506667pt;}
.y12{bottom:758.333333pt;}
.y60{bottom:765.533333pt;}
.y3f{bottom:770.600000pt;}
.y11{bottom:779.400000pt;}
.y3e{bottom:791.933333pt;}
.y5f{bottom:797.266667pt;}
.y10{bottom:800.733333pt;}
.y3d{bottom:813.000000pt;}
.y5e{bottom:818.333333pt;}
.yf{bottom:821.800000pt;}
.y3c{bottom:834.066667pt;}
.y5d{bottom:839.400000pt;}
.ye{bottom:842.866667pt;}
.y3b{bottom:853.266667pt;}
.y5c{bottom:860.733333pt;}
.yd{bottom:864.200000pt;}
.y3a{bottom:879.933333pt;}
.yc{bottom:885.266667pt;}
.y39{bottom:906.360000pt;}
.yb{bottom:906.373333pt;}
.ya{bottom:927.693333pt;}
.y38{bottom:933.040000pt;}
.y9{bottom:948.760000pt;}
.y36{bottom:959.440000pt;}
.y8{bottom:969.840000pt;}
.y4{bottom:1002.626667pt;}
.y3{bottom:1023.960000pt;}
.y2{bottom:1046.106667pt;}
.y1{bottom:1073.600000pt;}
.hd{height:21.053333pt;}
.h9{height:21.066667pt;}
.he{height:21.100000pt;}
.hc{height:21.333333pt;}
.hf{height:21.353333pt;}
.ha{height:21.366667pt;}
.hb{height:42.133333pt;}
.h4{height:59.536458pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h10{height:65.781915pt;}
.h2{height:68.041667pt;}
.h5{height:73.281250pt;}
.h3{height:76.546875pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:97.100000pt;}
.w6{width:112.833333pt;}
.wc{width:118.966667pt;}
.w8{width:147.773333pt;}
.wa{width:156.026667pt;}
.w5{width:217.933333pt;}
.wd{width:234.466667pt;}
.wb{width:254.773333pt;}
.we{width:309.960000pt;}
.wf{width:312.906667pt;}
.w4{width:315.040000pt;}
.w7{width:329.693333pt;}
.w9{width:406.533333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.053333pt;}
.x5{left:37.599988pt;}
.x4{left:75.499988pt;}
.x6{left:77.899988pt;}
.x1{left:94.699988pt;}
.xc{left:179.266667pt;}
.xf{left:194.733333pt;}
.x13{left:200.866667pt;}
.x10{left:229.666667pt;}
.x12{left:238.200000pt;}
.xa{left:239.799988pt;}
.x9{left:283.306655pt;}
.x7{left:295.573322pt;}
.xb{left:332.639988pt;}
.x15{left:359.306655pt;}
.x14{left:391.866667pt;}
.x8{left:396.666655pt;}
.x2{left:485.773322pt;}
.xd{left:497.506667pt;}
.x3{left:566.839988pt;}
.x11{left:718.106655pt;}
}




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