
    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_5c6b27475faa1995e9329c01.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4c00affc53e6a6001fda96d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968000;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_b41feae98f01ce5941f46ef3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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_bc2e57bc929ba5c5d0421de2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_6d2c26fe03c74fe1129d8c2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943848;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-20.629027px;}
.ws1{word-spacing:-0.048020px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-9.376801px;}
._3{margin-left:-3.724344px;}
._4{margin-left:-2.504852px;}
._1{margin-left:-1.219483px;}
._0{width:2.929231px;}
.fc1{color:rgb(0,149,221);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.020172px;}
.fs8{font-size:53.999998px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:67.499997px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:74.249997px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:107.999996px;}
.y0{bottom:0.000000px;}
.y25{bottom:4.500000px;}
.y88{bottom:12.374999px;}
.y23{bottom:26.360536px;}
.y87{bottom:38.249998px;}
.y46{bottom:40.499998px;}
.y6d{bottom:55.124998px;}
.y86{bottom:62.999997px;}
.y26{bottom:63.630020px;}
.y45{bottom:66.374997px;}
.y5{bottom:66.525004px;}
.y6c{bottom:79.874997px;}
.y85{bottom:88.874996px;}
.y44{bottom:91.124996px;}
.y4{bottom:97.125005px;}
.y6b{bottom:105.749996px;}
.y43{bottom:116.999995px;}
.y6a{bottom:130.499995px;}
.y22{bottom:139.264499px;}
.y69{bottom:156.374993px;}
.y42{bottom:158.624993px;}
.y68{bottom:181.124992px;}
.y41{bottom:184.499992px;}
.y19{bottom:196.933500px;}
.y84{bottom:206.999991px;}
.y40{bottom:209.249991px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y67{bottom:223.874991px;}
.y83{bottom:231.749990px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y3f{bottom:235.124990px;}
.y66{bottom:248.624990px;}
.y82{bottom:257.624989px;}
.y3e{bottom:259.874989px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y65{bottom:274.499989px;}
.y81{bottom:282.374988px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y64{bottom:299.249988px;}
.y3d{bottom:302.624987px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y63{bottom:325.124986px;}
.y3c{bottom:327.374986px;}
.y10{bottom:348.133500px;}
.y62{bottom:349.874985px;}
.y3b{bottom:353.249985px;}
.y61{bottom:375.749984px;}
.y3a{bottom:377.999984px;}
.yf{bottom:386.785499px;}
.y80{bottom:400.499983px;}
.y39{bottom:403.874983px;}
.ye{bottom:408.044999px;}
.y60{bottom:417.374983px;}
.y7f{bottom:426.374982px;}
.y5f{bottom:443.249982px;}
.y38{bottom:445.499981px;}
.y7e{bottom:451.124981px;}
.y5e{bottom:467.999981px;}
.y37{bottom:471.374980px;}
.yd{bottom:484.864502px;}
.y5d{bottom:493.874979px;}
.y36{bottom:496.124979px;}
.yc{bottom:502.864502px;}
.y7d{bottom:518.624978px;}
.yb{bottom:520.864502px;}
.y35{bottom:521.999978px;}
.y5c{bottom:535.499978px;}
.ya{bottom:538.864499px;}
.y7c{bottom:544.499977px;}
.y9{bottom:556.864499px;}
.y5b{bottom:561.374977px;}
.y34{bottom:563.624977px;}
.y7b{bottom:569.249976px;}
.y5a{bottom:586.124976px;}
.y33{bottom:589.499975px;}
.y59{bottom:611.999975px;}
.y32{bottom:614.249974px;}
.y58{bottom:636.749973px;}
.y31{bottom:640.124973px;}
.y8{bottom:645.510000px;}
.y57{bottom:662.624972px;}
.y30{bottom:664.874972px;}
.y7{bottom:666.771000px;}
.y7a{bottom:687.374971px;}
.y2f{bottom:690.749971px;}
.y56{bottom:704.249971px;}
.y79{bottom:713.249970px;}
.y6{bottom:726.298500px;}
.y55{bottom:730.124970px;}
.y2e{bottom:732.374969px;}
.y78{bottom:737.999969px;}
.y3{bottom:752.599495px;}
.y54{bottom:754.874969px;}
.y2d{bottom:758.249968px;}
.y77{bottom:763.874968px;}
.y53{bottom:780.749967px;}
.y76{bottom:788.624967px;}
.y2c{bottom:799.874967px;}
.y52{bottom:822.374966px;}
.y75{bottom:831.374965px;}
.y2b{bottom:842.624965px;}
.y51{bottom:848.249965px;}
.y74{bottom:856.124964px;}
.y50{bottom:872.999964px;}
.y2{bottom:879.369000px;}
.y73{bottom:881.999963px;}
.y2a{bottom:884.249963px;}
.y4f{bottom:898.874963px;}
.y72{bottom:906.749962px;}
.y4e{bottom:923.624962px;}
.y29{bottom:926.999961px;}
.y4d{bottom:949.499960px;}
.y1{bottom:966.726000px;}
.y71{bottom:974.249959px;}
.y4c{bottom:991.124959px;}
.y28{bottom:993.374959px;}
.y70{bottom:1000.124958px;}
.y4b{bottom:1016.999958px;}
.y6f{bottom:1024.874957px;}
.y27{bottom:1027.124957px;}
.y4a{bottom:1041.749957px;}
.y89{bottom:1043.999957px;}
.y6e{bottom:1050.749956px;}
.y49{bottom:1067.624956px;}
.y48{bottom:1092.374954px;}
.y47{bottom:1118.249953px;}
.y24{bottom:1139.129975px;}
.hd{height:21.374999px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hc{height:37.599795px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h11{height:49.702146px;}
.h12{height:50.394285px;}
.he{height:54.672361px;}
.h2{height:55.152000px;}
.h5{height:78.132000px;}
.h10{height:80.630856px;}
.h4{height:119.055004px;}
.hf{height:1136.249953px;}
.h0{height:1262.833500px;}
.hb{height:1262.879970px;}
.ha{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w5{width:787.499967px;}
.w6{width:809.999966px;}
.w3{width:892.439940px;}
.w4{width:892.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:11.250000px;}
.x7{left:41.999997px;}
.x6{left:53.249994px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x5{left:816.671190px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-18.336913pt;}
.ws1{word-spacing:-0.042685pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-8.334934pt;}
._3{margin-left:-3.310528pt;}
._4{margin-left:-2.226535pt;}
._1{margin-left:-1.083985pt;}
._0{width:2.603760pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.684598pt;}
.fs8{font-size:47.999998pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:59.999998pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:65.999997pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:95.999996pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:4.000000pt;}
.y88{bottom:11.000000pt;}
.y23{bottom:23.431587pt;}
.y87{bottom:33.999999pt;}
.y46{bottom:35.999999pt;}
.y6d{bottom:48.999998pt;}
.y86{bottom:55.999998pt;}
.y26{bottom:56.560018pt;}
.y45{bottom:58.999998pt;}
.y5{bottom:59.133337pt;}
.y6c{bottom:70.999997pt;}
.y85{bottom:78.999997pt;}
.y44{bottom:80.999997pt;}
.y4{bottom:86.333337pt;}
.y6b{bottom:93.999996pt;}
.y43{bottom:103.999996pt;}
.y6a{bottom:115.999995pt;}
.y22{bottom:123.790666pt;}
.y69{bottom:138.999994pt;}
.y42{bottom:140.999994pt;}
.y68{bottom:160.999993pt;}
.y41{bottom:163.999993pt;}
.y19{bottom:175.052000pt;}
.y84{bottom:183.999992pt;}
.y40{bottom:185.999992pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y67{bottom:198.999992pt;}
.y83{bottom:205.999991pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y3f{bottom:208.999991pt;}
.y66{bottom:220.999991pt;}
.y82{bottom:228.999990pt;}
.y3e{bottom:230.999990pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y65{bottom:243.999990pt;}
.y81{bottom:250.999990pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y64{bottom:265.999989pt;}
.y3d{bottom:268.999989pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y63{bottom:288.999988pt;}
.y3c{bottom:290.999988pt;}
.y10{bottom:309.452000pt;}
.y62{bottom:310.999987pt;}
.y3b{bottom:313.999987pt;}
.y61{bottom:333.999986pt;}
.y3a{bottom:335.999986pt;}
.yf{bottom:343.809333pt;}
.y80{bottom:355.999985pt;}
.y39{bottom:358.999985pt;}
.ye{bottom:362.706666pt;}
.y60{bottom:370.999985pt;}
.y7f{bottom:378.999984pt;}
.y5f{bottom:393.999984pt;}
.y38{bottom:395.999984pt;}
.y7e{bottom:400.999983pt;}
.y5e{bottom:415.999983pt;}
.y37{bottom:418.999983pt;}
.yd{bottom:430.990669pt;}
.y5d{bottom:438.999982pt;}
.y36{bottom:440.999982pt;}
.yc{bottom:446.990669pt;}
.y7d{bottom:460.999981pt;}
.yb{bottom:462.990669pt;}
.y35{bottom:463.999981pt;}
.y5c{bottom:475.999980pt;}
.ya{bottom:478.990666pt;}
.y7c{bottom:483.999980pt;}
.y9{bottom:494.990666pt;}
.y5b{bottom:498.999979pt;}
.y34{bottom:500.999979pt;}
.y7b{bottom:505.999979pt;}
.y5a{bottom:520.999978pt;}
.y33{bottom:523.999978pt;}
.y59{bottom:543.999977pt;}
.y32{bottom:545.999977pt;}
.y58{bottom:565.999976pt;}
.y31{bottom:568.999976pt;}
.y8{bottom:573.786667pt;}
.y57{bottom:588.999975pt;}
.y30{bottom:590.999975pt;}
.y7{bottom:592.685334pt;}
.y7a{bottom:610.999975pt;}
.y2f{bottom:613.999974pt;}
.y56{bottom:625.999974pt;}
.y79{bottom:633.999974pt;}
.y6{bottom:645.598667pt;}
.y55{bottom:648.999973pt;}
.y2e{bottom:650.999973pt;}
.y78{bottom:655.999973pt;}
.y3{bottom:668.977329pt;}
.y54{bottom:670.999972pt;}
.y2d{bottom:673.999972pt;}
.y77{bottom:678.999972pt;}
.y53{bottom:693.999971pt;}
.y76{bottom:700.999971pt;}
.y2c{bottom:710.999970pt;}
.y52{bottom:730.999970pt;}
.y75{bottom:738.999969pt;}
.y2b{bottom:748.999969pt;}
.y51{bottom:753.999969pt;}
.y74{bottom:760.999968pt;}
.y50{bottom:775.999968pt;}
.y2{bottom:781.661334pt;}
.y73{bottom:783.999967pt;}
.y2a{bottom:785.999967pt;}
.y4f{bottom:798.999967pt;}
.y72{bottom:805.999966pt;}
.y4e{bottom:820.999966pt;}
.y29{bottom:823.999966pt;}
.y4d{bottom:843.999965pt;}
.y1{bottom:859.312000pt;}
.y71{bottom:865.999964pt;}
.y4c{bottom:880.999963pt;}
.y28{bottom:882.999963pt;}
.y70{bottom:888.999963pt;}
.y4b{bottom:903.999962pt;}
.y6f{bottom:910.999962pt;}
.y27{bottom:912.999962pt;}
.y4a{bottom:925.999961pt;}
.y89{bottom:927.999961pt;}
.y6e{bottom:933.999961pt;}
.y49{bottom:948.999960pt;}
.y48{bottom:970.999960pt;}
.y47{bottom:993.999959pt;}
.y24{bottom:1012.559978pt;}
.hd{height:18.999999pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hc{height:33.422040pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h11{height:44.179686pt;}
.h12{height:44.794920pt;}
.he{height:48.597654pt;}
.h2{height:49.024000pt;}
.h5{height:69.450667pt;}
.h10{height:71.671872pt;}
.h4{height:105.826671pt;}
.hf{height:1009.999958pt;}
.h0{height:1122.518667pt;}
.hb{height:1122.559973pt;}
.ha{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w5{width:699.999971pt;}
.w6{width:719.999970pt;}
.w3{width:793.279947pt;}
.w4{width:793.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:10.000000pt;}
.x7{left:37.333331pt;}
.x6{left:47.333328pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x5{left:725.929947pt;}
}




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