
    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_c52c8adfb0dc50bc87096d65.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2fdf3bd614ba31eaabe0b50e.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5a8541ca2b575415c7aa2c55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_b5b80e00d74dac9027274957.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_27be792f4850903c0d71434b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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:20.880000px;}
.lsd{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106560px;}
.ls6{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:14.580000px;}
.ls1{letter-spacing:15.238800px;}
.ls2{letter-spacing:610.200000px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws9{word-spacing:-9.711360px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-16.075440px;}
._4{margin-left:-15.059520px;}
._0{margin-left:-7.888320px;}
._7{margin-left:-6.131520px;}
._15{margin-left:-4.190880px;}
._f{margin-left:-3.045840px;}
._9{margin-left:-2.033760px;}
._2{margin-left:-1.031520px;}
._1{width:1.077600px;}
._a{width:2.151360px;}
._3{width:4.147920px;}
._b{width:5.369760px;}
._e{width:7.352400px;}
._d{width:8.902320px;}
._c{width:9.979920px;}
._8{width:11.651280px;}
._13{width:12.728880px;}
._14{width:13.837680px;}
._17{width:16.852320px;}
._19{width:18.107280px;}
._12{width:19.420080px;}
._11{width:20.856240px;}
._16{width:22.145280px;}
._10{width:23.186880px;}
._1b{width:24.301680px;}
._1a{width:25.338240px;}
._18{width:27.788400px;}
._1d{width:34.840080px;}
._1c{width:36.021840px;}
._6{width:135.762000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:36.360000px;}
.yb{bottom:54.360000px;}
.ya{bottom:69.876000px;}
.y34{bottom:112.716000px;}
.y5a{bottom:117.216000px;}
.y33{bottom:136.116000px;}
.y59{bottom:140.616000px;}
.y32{bottom:159.510000px;}
.y58{bottom:164.010000px;}
.y31{bottom:182.910000px;}
.y57{bottom:187.410000px;}
.y30{bottom:206.310000px;}
.y56{bottom:210.810000px;}
.y2f{bottom:229.710000px;}
.y55{bottom:234.210000px;}
.y2e{bottom:253.110000px;}
.y54{bottom:257.610000px;}
.y2d{bottom:276.510000px;}
.y53{bottom:281.010000px;}
.y5b{bottom:284.250000px;}
.y2c{bottom:299.910000px;}
.y52{bottom:304.410000px;}
.y2b{bottom:323.310000px;}
.y51{bottom:327.810000px;}
.y2a{bottom:346.755000px;}
.y50{bottom:351.255000px;}
.y29{bottom:370.155000px;}
.y4f{bottom:374.655000px;}
.y28{bottom:395.895000px;}
.y4e{bottom:398.055000px;}
.y5c{bottom:418.035000px;}
.y27{bottom:419.295000px;}
.y4d{bottom:421.455000px;}
.y26{bottom:442.695000px;}
.y4c{bottom:444.855000px;}
.y25{bottom:466.095000px;}
.y4b{bottom:468.255000px;}
.y24{bottom:489.495000px;}
.y4a{bottom:491.655000px;}
.y23{bottom:512.895000px;}
.y49{bottom:515.055000px;}
.y22{bottom:536.295000px;}
.y48{bottom:538.455000px;}
.y21{bottom:559.695000px;}
.y47{bottom:561.855000px;}
.y20{bottom:583.095000px;}
.y46{bottom:585.255000px;}
.y1f{bottom:606.525000px;}
.y45{bottom:608.685000px;}
.y5d{bottom:627.585000px;}
.y1e{bottom:629.925000px;}
.y44{bottom:632.085000px;}
.y1d{bottom:653.325000px;}
.y43{bottom:655.485000px;}
.y1c{bottom:676.725000px;}
.y42{bottom:678.885000px;}
.y1b{bottom:700.125000px;}
.y41{bottom:702.285000px;}
.y1a{bottom:723.525000px;}
.y40{bottom:725.685000px;}
.y19{bottom:746.925000px;}
.y3f{bottom:749.085000px;}
.y18{bottom:770.325000px;}
.y3e{bottom:772.485000px;}
.y17{bottom:793.725000px;}
.y3d{bottom:795.885000px;}
.y16{bottom:817.125000px;}
.y3c{bottom:819.285000px;}
.y15{bottom:840.525000px;}
.y3b{bottom:842.685000px;}
.y14{bottom:863.925000px;}
.y3a{bottom:866.085000px;}
.y13{bottom:889.530000px;}
.y12{bottom:912.390000px;}
.y39{bottom:912.930000px;}
.y11{bottom:935.790000px;}
.y38{bottom:936.330000px;}
.y10{bottom:959.190000px;}
.y37{bottom:959.730000px;}
.yf{bottom:983.130000px;}
.ye{bottom:1005.450000px;}
.y36{bottom:1006.530000px;}
.yd{bottom:1028.850000px;}
.y35{bottom:1029.930000px;}
.y9{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1086.810000px;}
.y6{bottom:1104.810000px;}
.y5{bottom:1121.550000px;}
.y4{bottom:1163.160000px;}
.y3{bottom:1181.340000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.302656px;}
.hc{height:43.506914px;}
.h3{height:44.240625px;}
.h9{height:46.251562px;}
.h8{height:46.736719px;}
.hb{height:48.027656px;}
.h4{height:50.800781px;}
.h6{height:63.019687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x7{left:137.195987px;}
.x4{left:158.429987px;}
.x11{left:178.949987px;}
.xa{left:196.589987px;}
.x8{left:212.609987px;}
.xb{left:296.894987px;}
.x10{left:298.514987px;}
.x13{left:300.134987px;}
.x9{left:317.234987px;}
.x12{left:339.014987px;}
.xd{left:356.294987px;}
.xe{left:376.994987px;}
.xc{left:378.974987px;}
.x6{left:386.354987px;}
.x14{left:388.154987px;}
.x15{left:396.074987px;}
.x5{left:412.274987px;}
.x2{left:446.474987px;}
.x3{left:518.504987px;}
.xf{left:758.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094720pt;}
.ls6{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:12.960000pt;}
.ls1{letter-spacing:13.545600pt;}
.ls2{letter-spacing:542.400000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws9{word-spacing:-8.632320pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-14.289280pt;}
._4{margin-left:-13.386240pt;}
._0{margin-left:-7.011840pt;}
._7{margin-left:-5.450240pt;}
._15{margin-left:-3.725227pt;}
._f{margin-left:-2.707413pt;}
._9{margin-left:-1.807787pt;}
._2{margin-left:-0.916907pt;}
._1{width:0.957867pt;}
._a{width:1.912320pt;}
._3{width:3.687040pt;}
._b{width:4.773120pt;}
._e{width:6.535467pt;}
._d{width:7.913173pt;}
._c{width:8.871040pt;}
._8{width:10.356693pt;}
._13{width:11.314560pt;}
._14{width:12.300160pt;}
._17{width:14.979840pt;}
._19{width:16.095360pt;}
._12{width:17.262293pt;}
._11{width:18.538880pt;}
._16{width:19.684693pt;}
._10{width:20.610560pt;}
._1b{width:21.601493pt;}
._1a{width:22.522880pt;}
._18{width:24.700800pt;}
._1d{width:30.968960pt;}
._1c{width:32.019413pt;}
._6{width:120.677333pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:32.320000pt;}
.yb{bottom:48.320000pt;}
.ya{bottom:62.112000pt;}
.y34{bottom:100.192000pt;}
.y5a{bottom:104.192000pt;}
.y33{bottom:120.992000pt;}
.y59{bottom:124.992000pt;}
.y32{bottom:141.786667pt;}
.y58{bottom:145.786667pt;}
.y31{bottom:162.586667pt;}
.y57{bottom:166.586667pt;}
.y30{bottom:183.386667pt;}
.y56{bottom:187.386667pt;}
.y2f{bottom:204.186667pt;}
.y55{bottom:208.186667pt;}
.y2e{bottom:224.986667pt;}
.y54{bottom:228.986667pt;}
.y2d{bottom:245.786667pt;}
.y53{bottom:249.786667pt;}
.y5b{bottom:252.666667pt;}
.y2c{bottom:266.586667pt;}
.y52{bottom:270.586667pt;}
.y2b{bottom:287.386667pt;}
.y51{bottom:291.386667pt;}
.y2a{bottom:308.226667pt;}
.y50{bottom:312.226667pt;}
.y29{bottom:329.026667pt;}
.y4f{bottom:333.026667pt;}
.y28{bottom:351.906667pt;}
.y4e{bottom:353.826667pt;}
.y5c{bottom:371.586667pt;}
.y27{bottom:372.706667pt;}
.y4d{bottom:374.626667pt;}
.y26{bottom:393.506667pt;}
.y4c{bottom:395.426667pt;}
.y25{bottom:414.306667pt;}
.y4b{bottom:416.226667pt;}
.y24{bottom:435.106667pt;}
.y4a{bottom:437.026667pt;}
.y23{bottom:455.906667pt;}
.y49{bottom:457.826667pt;}
.y22{bottom:476.706667pt;}
.y48{bottom:478.626667pt;}
.y21{bottom:497.506667pt;}
.y47{bottom:499.426667pt;}
.y20{bottom:518.306667pt;}
.y46{bottom:520.226667pt;}
.y1f{bottom:539.133333pt;}
.y45{bottom:541.053333pt;}
.y5d{bottom:557.853333pt;}
.y1e{bottom:559.933333pt;}
.y44{bottom:561.853333pt;}
.y1d{bottom:580.733333pt;}
.y43{bottom:582.653333pt;}
.y1c{bottom:601.533333pt;}
.y42{bottom:603.453333pt;}
.y1b{bottom:622.333333pt;}
.y41{bottom:624.253333pt;}
.y1a{bottom:643.133333pt;}
.y40{bottom:645.053333pt;}
.y19{bottom:663.933333pt;}
.y3f{bottom:665.853333pt;}
.y18{bottom:684.733333pt;}
.y3e{bottom:686.653333pt;}
.y17{bottom:705.533333pt;}
.y3d{bottom:707.453333pt;}
.y16{bottom:726.333333pt;}
.y3c{bottom:728.253333pt;}
.y15{bottom:747.133333pt;}
.y3b{bottom:749.053333pt;}
.y14{bottom:767.933333pt;}
.y3a{bottom:769.853333pt;}
.y13{bottom:790.693333pt;}
.y12{bottom:811.013333pt;}
.y39{bottom:811.493333pt;}
.y11{bottom:831.813333pt;}
.y38{bottom:832.293333pt;}
.y10{bottom:852.613333pt;}
.y37{bottom:853.093333pt;}
.yf{bottom:873.893333pt;}
.ye{bottom:893.733333pt;}
.y36{bottom:894.693333pt;}
.yd{bottom:914.533333pt;}
.y35{bottom:915.493333pt;}
.y9{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:966.053333pt;}
.y6{bottom:982.053333pt;}
.y5{bottom:996.933333pt;}
.y4{bottom:1033.920000pt;}
.y3{bottom:1050.080000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.491250pt;}
.hc{height:38.672812pt;}
.h3{height:39.325000pt;}
.h9{height:41.112500pt;}
.h8{height:41.543750pt;}
.hb{height:42.691250pt;}
.h4{height:45.156250pt;}
.h6{height:56.017500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x7{left:121.951988pt;}
.x4{left:140.826655pt;}
.x11{left:159.066655pt;}
.xa{left:174.746655pt;}
.x8{left:188.986655pt;}
.xb{left:263.906655pt;}
.x10{left:265.346655pt;}
.x13{left:266.786655pt;}
.x9{left:281.986655pt;}
.x12{left:301.346655pt;}
.xd{left:316.706655pt;}
.xe{left:335.106655pt;}
.xc{left:336.866655pt;}
.x6{left:343.426655pt;}
.x14{left:345.026655pt;}
.x15{left:352.066655pt;}
.x5{left:366.466655pt;}
.x2{left:396.866655pt;}
.x3{left:460.893322pt;}
.xf{left:673.893322pt;}
}




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