
    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_1e307fc7ad5a266684c0c88d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_88c3328cadae6bc4e2964013.woff')format("woff");}.ff2{font-family:ff2;line-height:1.105469;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_6d62e25da570649693238a09.woff')format("woff");}.ff3{font-family:ff3;line-height:1.121582;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;}
.ls2{letter-spacing:-26.640000px;}
.ls9{letter-spacing:-3.726000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.008000px;}
.ls5{letter-spacing:4.800000px;}
.ls6{letter-spacing:7.140000px;}
.ls3{letter-spacing:7.200000px;}
.ls1{letter-spacing:7.968000px;}
.ls7{letter-spacing:8.400000px;}
.ls8{letter-spacing:14.400000px;}
.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:-40.920000px;}
.wsb{word-spacing:-35.802000px;}
.wsc{word-spacing:-34.632000px;}
.ws6{word-spacing:-21.660000px;}
.ws1{word-spacing:-21.240000px;}
.wsa{word-spacing:-18.546000px;}
.wsf{word-spacing:-16.302000px;}
.ws8{word-spacing:-16.017000px;}
.ws10{word-spacing:-15.174000px;}
.ws5{word-spacing:-14.820000px;}
.wse{word-spacing:-14.400000px;}
.ws7{word-spacing:-14.079000px;}
.ws11{word-spacing:-11.448000px;}
.wsd{word-spacing:-8.400000px;}
.ws9{word-spacing:-4.800000px;}
.ws2{word-spacing:-1.248000px;}
.ws4{word-spacing:0.000000px;}
.ws3{word-spacing:26.640000px;}
._a{margin-left:-33.000000px;}
._f{margin-left:-10.312800px;}
._e{margin-left:-9.038400px;}
._7{margin-left:-7.056000px;}
._8{margin-left:-5.841600px;}
._5{margin-left:-4.669200px;}
._9{margin-left:-3.453000px;}
._0{margin-left:-2.188800px;}
._4{margin-left:-1.072800px;}
._1{width:1.233600px;}
._3{width:2.452800px;}
._2{width:4.128000px;}
._6{width:5.725200px;}
._c{width:7.546800px;}
._b{width:9.115200px;}
._d{width:12.384000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:102.000000px;}
.fs2{font-size:120.000000px;}
.fs1{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:72.000000px;}
.y5{bottom:117.000000px;}
.y31{bottom:117.004500px;}
.y38{bottom:117.774000px;}
.y77{bottom:118.529250px;}
.y37{bottom:133.520250px;}
.y58{bottom:138.000000px;}
.y4{bottom:139.500000px;}
.y30{bottom:148.511250px;}
.y36{bottom:149.266500px;}
.y57{bottom:158.994000px;}
.y76{bottom:160.529250px;}
.y2f{bottom:164.257500px;}
.y35{bottom:165.012750px;}
.y56{bottom:180.000000px;}
.y2e{bottom:180.003750px;}
.y34{bottom:180.759000px;}
.y75{bottom:181.529250px;}
.y2d{bottom:195.750000px;}
.y33{bottom:196.505250px;}
.y74{bottom:202.517250px;}
.y32{bottom:212.251500px;}
.y55{bottom:222.000000px;}
.y73{bottom:223.523250px;}
.y54{bottom:243.000000px;}
.y72{bottom:244.529250px;}
.y2c{bottom:261.262200px;}
.y53{bottom:263.988000px;}
.y52{bottom:284.994000px;}
.y71{bottom:286.529250px;}
.y3b{bottom:294.036600px;}
.y2b{bottom:294.262200px;}
.y51{bottom:306.000000px;}
.y70{bottom:307.517250px;}
.y3a{bottom:310.536600px;}
.y2a{bottom:310.762200px;}
.y39{bottom:327.036600px;}
.y29{bottom:327.262200px;}
.y6f{bottom:328.523250px;}
.y50{bottom:348.000000px;}
.y6e{bottom:349.529250px;}
.y28{bottom:354.262200px;}
.y4f{bottom:368.988000px;}
.y27{bottom:370.762200px;}
.y26{bottom:387.262200px;}
.y4e{bottom:389.994000px;}
.y6d{bottom:391.529250px;}
.y25{bottom:403.762200px;}
.y4d{bottom:411.000000px;}
.y6c{bottom:412.529250px;}
.y24{bottom:420.262200px;}
.y23{bottom:436.762200px;}
.y4c{bottom:453.000000px;}
.y22{bottom:453.262200px;}
.y6b{bottom:465.029250px;}
.y21{bottom:469.762200px;}
.y4b{bottom:473.988000px;}
.y6a{bottom:486.017250px;}
.y20{bottom:486.262200px;}
.y4a{bottom:494.994000px;}
.y3{bottom:497.548800px;}
.y1f{bottom:502.762200px;}
.y69{bottom:507.023250px;}
.y49{bottom:516.000000px;}
.y1e{bottom:519.262200px;}
.y68{bottom:528.029250px;}
.y1d{bottom:535.762200px;}
.y1c{bottom:552.262200px;}
.y48{bottom:558.000000px;}
.y2{bottom:567.000000px;}
.y1b{bottom:568.762200px;}
.y67{bottom:570.029250px;}
.y47{bottom:578.988000px;}
.y1a{bottom:585.262200px;}
.y66{bottom:591.029250px;}
.y46{bottom:599.994000px;}
.y19{bottom:601.762200px;}
.y18{bottom:618.262200px;}
.y45{bottom:621.000000px;}
.y17{bottom:634.762200px;}
.y65{bottom:643.529250px;}
.y16{bottom:651.262200px;}
.y1{bottom:657.269550px;}
.y44{bottom:663.000000px;}
.y64{bottom:664.523250px;}
.y15{bottom:667.762200px;}
.y43{bottom:684.000000px;}
.y14{bottom:684.262200px;}
.y63{bottom:685.529250px;}
.y13{bottom:700.762200px;}
.y42{bottom:704.988000px;}
.y12{bottom:717.262200px;}
.y41{bottom:725.994000px;}
.y62{bottom:727.529250px;}
.y11{bottom:733.762200px;}
.y40{bottom:747.000000px;}
.y61{bottom:748.529250px;}
.y10{bottom:750.262200px;}
.yf{bottom:766.762200px;}
.y60{bottom:769.523250px;}
.ye{bottom:783.262200px;}
.y3f{bottom:789.000000px;}
.y5f{bottom:790.529250px;}
.yd{bottom:799.762200px;}
.y3e{bottom:810.000000px;}
.y5e{bottom:811.529250px;}
.yc{bottom:816.262200px;}
.yb{bottom:843.262200px;}
.y5d{bottom:853.529250px;}
.ya{bottom:859.762200px;}
.y5c{bottom:874.529250px;}
.y9{bottom:876.262200px;}
.y5b{bottom:895.517250px;}
.y8{bottom:903.262200px;}
.y5a{bottom:916.523250px;}
.y7{bottom:919.762200px;}
.y3d{bottom:927.000000px;}
.y6{bottom:936.262200px;}
.y59{bottom:937.529250px;}
.h1{height:33.117188px;}
.hd{height:41.396484px;}
.h9{height:45.536133px;}
.h7{height:48.399902px;}
.h8{height:49.290527px;}
.h5{height:50.947266px;}
.h6{height:51.884766px;}
.hc{height:56.041992px;}
.h4{height:61.136719px;}
.hb{height:62.261719px;}
.h3{height:82.792969px;}
.ha{height:86.610352px;}
.h2{height:248.378906px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x3{left:67.500000px;}
.x4{left:81.000000px;}
.x9{left:82.500000px;}
.x2{left:113.250000px;}
.x8{left:127.500000px;}
.x6{left:348.000000px;}
.x5{left:373.500000px;}
.x1{left:544.500000px;}
.x7{left:644.452950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-23.680000pt;}
.ls9{letter-spacing:-3.312000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.896000pt;}
.ls5{letter-spacing:4.266667pt;}
.ls6{letter-spacing:6.346667pt;}
.ls3{letter-spacing:6.400000pt;}
.ls1{letter-spacing:7.082667pt;}
.ls7{letter-spacing:7.466667pt;}
.ls8{letter-spacing:12.800000pt;}
.ws0{word-spacing:-36.373333pt;}
.wsb{word-spacing:-31.824000pt;}
.wsc{word-spacing:-30.784000pt;}
.ws6{word-spacing:-19.253333pt;}
.ws1{word-spacing:-18.880000pt;}
.wsa{word-spacing:-16.485333pt;}
.wsf{word-spacing:-14.490667pt;}
.ws8{word-spacing:-14.237333pt;}
.ws10{word-spacing:-13.488000pt;}
.ws5{word-spacing:-13.173333pt;}
.wse{word-spacing:-12.800000pt;}
.ws7{word-spacing:-12.514667pt;}
.ws11{word-spacing:-10.176000pt;}
.wsd{word-spacing:-7.466667pt;}
.ws9{word-spacing:-4.266667pt;}
.ws2{word-spacing:-1.109333pt;}
.ws4{word-spacing:0.000000pt;}
.ws3{word-spacing:23.680000pt;}
._a{margin-left:-29.333333pt;}
._f{margin-left:-9.166933pt;}
._e{margin-left:-8.034133pt;}
._7{margin-left:-6.272000pt;}
._8{margin-left:-5.192533pt;}
._5{margin-left:-4.150400pt;}
._9{margin-left:-3.069333pt;}
._0{margin-left:-1.945600pt;}
._4{margin-left:-0.953600pt;}
._1{width:1.096533pt;}
._3{width:2.180267pt;}
._2{width:3.669333pt;}
._6{width:5.089067pt;}
._c{width:6.708267pt;}
._b{width:8.102400pt;}
._d{width:11.008000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:90.666667pt;}
.fs2{font-size:106.666667pt;}
.fs1{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:64.000000pt;}
.y5{bottom:104.000000pt;}
.y31{bottom:104.004000pt;}
.y38{bottom:104.688000pt;}
.y77{bottom:105.359333pt;}
.y37{bottom:118.684667pt;}
.y58{bottom:122.666667pt;}
.y4{bottom:124.000000pt;}
.y30{bottom:132.010000pt;}
.y36{bottom:132.681333pt;}
.y57{bottom:141.328000pt;}
.y76{bottom:142.692667pt;}
.y2f{bottom:146.006667pt;}
.y35{bottom:146.678000pt;}
.y56{bottom:160.000000pt;}
.y2e{bottom:160.003333pt;}
.y34{bottom:160.674667pt;}
.y75{bottom:161.359333pt;}
.y2d{bottom:174.000000pt;}
.y33{bottom:174.671333pt;}
.y74{bottom:180.015333pt;}
.y32{bottom:188.668000pt;}
.y55{bottom:197.333333pt;}
.y73{bottom:198.687333pt;}
.y54{bottom:216.000000pt;}
.y72{bottom:217.359333pt;}
.y2c{bottom:232.233067pt;}
.y53{bottom:234.656000pt;}
.y52{bottom:253.328000pt;}
.y71{bottom:254.692667pt;}
.y3b{bottom:261.365867pt;}
.y2b{bottom:261.566400pt;}
.y51{bottom:272.000000pt;}
.y70{bottom:273.348667pt;}
.y3a{bottom:276.032533pt;}
.y2a{bottom:276.233067pt;}
.y39{bottom:290.699200pt;}
.y29{bottom:290.899733pt;}
.y6f{bottom:292.020667pt;}
.y50{bottom:309.333333pt;}
.y6e{bottom:310.692667pt;}
.y28{bottom:314.899733pt;}
.y4f{bottom:327.989333pt;}
.y27{bottom:329.566400pt;}
.y26{bottom:344.233067pt;}
.y4e{bottom:346.661333pt;}
.y6d{bottom:348.026000pt;}
.y25{bottom:358.899733pt;}
.y4d{bottom:365.333333pt;}
.y6c{bottom:366.692667pt;}
.y24{bottom:373.566400pt;}
.y23{bottom:388.233067pt;}
.y4c{bottom:402.666667pt;}
.y22{bottom:402.899733pt;}
.y6b{bottom:413.359333pt;}
.y21{bottom:417.566400pt;}
.y4b{bottom:421.322667pt;}
.y6a{bottom:432.015333pt;}
.y20{bottom:432.233067pt;}
.y4a{bottom:439.994667pt;}
.y3{bottom:442.265600pt;}
.y1f{bottom:446.899733pt;}
.y69{bottom:450.687333pt;}
.y49{bottom:458.666667pt;}
.y1e{bottom:461.566400pt;}
.y68{bottom:469.359333pt;}
.y1d{bottom:476.233067pt;}
.y1c{bottom:490.899733pt;}
.y48{bottom:496.000000pt;}
.y2{bottom:504.000000pt;}
.y1b{bottom:505.566400pt;}
.y67{bottom:506.692667pt;}
.y47{bottom:514.656000pt;}
.y1a{bottom:520.233067pt;}
.y66{bottom:525.359333pt;}
.y46{bottom:533.328000pt;}
.y19{bottom:534.899733pt;}
.y18{bottom:549.566400pt;}
.y45{bottom:552.000000pt;}
.y17{bottom:564.233067pt;}
.y65{bottom:572.026000pt;}
.y16{bottom:578.899733pt;}
.y1{bottom:584.239600pt;}
.y44{bottom:589.333333pt;}
.y64{bottom:590.687333pt;}
.y15{bottom:593.566400pt;}
.y43{bottom:608.000000pt;}
.y14{bottom:608.233067pt;}
.y63{bottom:609.359333pt;}
.y13{bottom:622.899733pt;}
.y42{bottom:626.656000pt;}
.y12{bottom:637.566400pt;}
.y41{bottom:645.328000pt;}
.y62{bottom:646.692667pt;}
.y11{bottom:652.233067pt;}
.y40{bottom:664.000000pt;}
.y61{bottom:665.359333pt;}
.y10{bottom:666.899733pt;}
.yf{bottom:681.566400pt;}
.y60{bottom:684.020667pt;}
.ye{bottom:696.233067pt;}
.y3f{bottom:701.333333pt;}
.y5f{bottom:702.692667pt;}
.yd{bottom:710.899733pt;}
.y3e{bottom:720.000000pt;}
.y5e{bottom:721.359333pt;}
.yc{bottom:725.566400pt;}
.yb{bottom:749.566400pt;}
.y5d{bottom:758.692667pt;}
.ya{bottom:764.233067pt;}
.y5c{bottom:777.359333pt;}
.y9{bottom:778.899733pt;}
.y5b{bottom:796.015333pt;}
.y8{bottom:802.899733pt;}
.y5a{bottom:814.687333pt;}
.y7{bottom:817.566400pt;}
.y3d{bottom:824.000000pt;}
.y6{bottom:832.233067pt;}
.y59{bottom:833.359333pt;}
.h1{height:29.437500pt;}
.hd{height:36.796875pt;}
.h9{height:40.476562pt;}
.h7{height:43.022135pt;}
.h8{height:43.813802pt;}
.h5{height:45.286458pt;}
.h6{height:46.119792pt;}
.hc{height:49.815104pt;}
.h4{height:54.343750pt;}
.hb{height:55.343750pt;}
.h3{height:73.593750pt;}
.ha{height:76.986979pt;}
.h2{height:220.781250pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x3{left:60.000000pt;}
.x4{left:72.000000pt;}
.x9{left:73.333333pt;}
.x2{left:100.666667pt;}
.x8{left:113.333333pt;}
.x6{left:309.333333pt;}
.x5{left:332.000000pt;}
.x1{left:484.000000pt;}
.x7{left:572.847067pt;}
}




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