
    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_b1fbea37b46b1c6c1a8b7712.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_d81bdd8fa894ffddcbb6adfd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.896484;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_ba973573bee5c4cfbe4e7bf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_34ee91378535f92909362132.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.063477;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_57c21c0240126f38ac39a2dd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cd507d1779bdc867b152b6a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.191543px;}
.ls1{letter-spacing:0.378514px;}
.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:-17.999993px;}
.ws1{word-spacing:-12.059995px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-13.128031px;}
._5{margin-left:-11.745519px;}
._11{margin-left:-2.139990px;}
._7{margin-left:-1.019756px;}
._0{width:1.197406px;}
._a{width:2.416618px;}
._14{width:3.980201px;}
._16{width:5.546286px;}
._8{width:7.131895px;}
._18{width:8.148535px;}
._9{width:9.153075px;}
._13{width:10.168570px;}
._2{width:11.189804px;}
._10{width:12.756368px;}
._12{width:13.811217px;}
._e{width:14.967563px;}
._f{width:15.990183px;}
._15{width:19.263477px;}
._17{width:21.489292px;}
._b{width:23.295994px;}
._d{width:24.335812px;}
._c{width:25.983806px;}
._19{width:30.199244px;}
._1a{width:31.517979px;}
._3{width:48.074668px;}
._4{width:54.564390px;}
._1{width:397.323201px;}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.239981px;}
.fs3{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.fs1{font-size:107.999957px;}
.fs0{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y4{bottom:38.460285px;}
.y3{bottom:57.720277px;}
.y5b{bottom:121.979951px;}
.y5a{bottom:139.259944px;}
.y38{bottom:147.539941px;}
.y59{bottom:156.539937px;}
.y37{bottom:168.239933px;}
.y58{bottom:173.819930px;}
.y36{bottom:188.939924px;}
.y57{bottom:191.099924px;}
.y35{bottom:207.299917px;}
.y56{bottom:208.199917px;}
.y34{bottom:209.639916px;}
.y55{bottom:225.479910px;}
.y33{bottom:230.339908px;}
.y31{bottom:251.039900px;}
.y54{bottom:252.119899px;}
.y32{bottom:259.319896px;}
.y30{bottom:271.739891px;}
.y53{bottom:282.179887px;}
.y2f{bottom:292.439883px;}
.y52{bottom:302.879879px;}
.y2e{bottom:313.139875px;}
.y51{bottom:323.579871px;}
.y2d{bottom:331.499867px;}
.y2c{bottom:333.839866px;}
.y50{bottom:352.919859px;}
.y2b{bottom:354.539858px;}
.y4f{bottom:382.979847px;}
.y2a{bottom:383.879846px;}
.y4e{bottom:403.679839px;}
.y29{bottom:413.939834px;}
.y4d{bottom:424.379830px;}
.y28{bottom:432.299827px;}
.y27{bottom:434.639826px;}
.y4c{bottom:445.079822px;}
.y25{bottom:455.339818px;}
.y26{bottom:463.619815px;}
.y4b{bottom:465.779814px;}
.y23{bottom:476.039810px;}
.y24{bottom:484.319806px;}
.y4a{bottom:486.479805px;}
.y22{bottom:494.399802px;}
.y21{bottom:496.739801px;}
.y49{bottom:507.179797px;}
.y20{bottom:517.439793px;}
.y48{bottom:527.879789px;}
.y1f{bottom:547.139781px;}
.y1e{bottom:567.839773px;}
.y47{bottom:575.579770px;}
.y1d{bottom:588.539765px;}
.y46{bottom:596.279761px;}
.y1c{bottom:609.239756px;}
.y1b{bottom:629.939748px;}
.y1a{bottom:650.639740px;}
.y19{bottom:679.979728px;}
.y18{bottom:710.039716px;}
.y17{bottom:730.739708px;}
.y16{bottom:751.439699px;}
.y15{bottom:772.139691px;}
.y14{bottom:792.839683px;}
.y13{bottom:813.539675px;}
.y12{bottom:834.239666px;}
.y11{bottom:854.939658px;}
.y10{bottom:875.639650px;}
.y45{bottom:891.479643px;}
.yf{bottom:904.979638px;}
.y44{bottom:912.179635px;}
.ye{bottom:926.039630px;}
.y43{bottom:932.879627px;}
.yd{bottom:946.379621px;}
.y42{bottom:953.579619px;}
.yc{bottom:967.439613px;}
.y41{bottom:974.279610px;}
.yb{bottom:988.139605px;}
.y40{bottom:994.979602px;}
.ya{bottom:1008.839596px;}
.y3e{bottom:1015.679594px;}
.y3f{bottom:1023.959590px;}
.y9{bottom:1029.179588px;}
.y3d{bottom:1036.379585px;}
.y8{bottom:1049.879580px;}
.y3c{bottom:1057.079577px;}
.y7{bottom:1070.939572px;}
.y3b{bottom:1077.779569px;}
.y6{bottom:1091.819563px;}
.y3a{bottom:1098.479561px;}
.y5{bottom:1115.939554px;}
.y39{bottom:1119.179552px;}
.y2{bottom:1175.879530px;}
.y1{bottom:1208.639517px;}
.ha{height:33.518307px;}
.hb{height:41.522679px;}
.h5{height:44.149201px;}
.h4{height:44.819982px;}
.h9{height:48.761699px;}
.h8{height:49.992168px;}
.h3{height:50.027324px;}
.h7{height:63.949193px;}
.h6{height:74.820556px;}
.h2{height:75.040986px;}
.h1{height:100.054647px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.379957px;}
.x4{left:120.599952px;}
.x1f{left:125.271100px;}
.xc{left:127.620010px;}
.x1c{left:132.299947px;}
.xf{left:134.459946px;}
.x9{left:138.779944px;}
.x10{left:147.239941px;}
.x7{left:153.540328px;}
.xa{left:211.491863px;}
.x5{left:223.919955px;}
.xb{left:242.641961px;}
.x19{left:244.979902px;}
.x1a{left:251.099900px;}
.x13{left:260.459896px;}
.x14{left:266.579893px;}
.x1b{left:275.939890px;}
.x15{left:297.899881px;}
.x16{left:304.019878px;}
.x3{left:310.319876px;}
.x8{left:318.959877px;}
.x20{left:333.899853px;}
.x1d{left:335.159866px;}
.x1e{left:341.279863px;}
.x2{left:376.559849px;}
.x6{left:446.399821px;}
.x17{left:509.579796px;}
.x18{left:515.699794px;}
.x11{left:675.899730px;}
.x12{left:688.859724px;}
.xd{left:705.239718px;}
.xe{left:711.359715px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.170261pt;}
.ls1{letter-spacing:0.336457pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:-10.719996pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-11.669361pt;}
._5{margin-left:-10.440461pt;}
._11{margin-left:-1.902214pt;}
._7{margin-left:-0.906449pt;}
._0{width:1.064361pt;}
._a{width:2.148105pt;}
._14{width:3.537957pt;}
._16{width:4.930032pt;}
._8{width:6.339462pt;}
._18{width:7.243142pt;}
._9{width:8.136067pt;}
._13{width:9.038729pt;}
._2{width:9.946492pt;}
._10{width:11.338994pt;}
._12{width:12.276637pt;}
._e{width:13.304501pt;}
._f{width:14.213496pt;}
._15{width:17.123091pt;}
._17{width:19.101593pt;}
._b{width:20.707550pt;}
._d{width:21.631833pt;}
._c{width:23.096716pt;}
._19{width:26.843772pt;}
._1a{width:28.015981pt;}
._3{width:42.733038pt;}
._4{width:48.501680pt;}
._1{width:353.176179pt;}
.fs6{font-size:42.879983pt;}
.fs3{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.fs1{font-size:95.999962pt;}
.fs0{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:34.186920pt;}
.y3{bottom:51.306913pt;}
.y5b{bottom:108.426623pt;}
.y5a{bottom:123.786617pt;}
.y38{bottom:131.146614pt;}
.y59{bottom:139.146611pt;}
.y37{bottom:149.546607pt;}
.y58{bottom:154.506605pt;}
.y36{bottom:167.946599pt;}
.y57{bottom:169.866599pt;}
.y35{bottom:184.266593pt;}
.y56{bottom:185.066593pt;}
.y34{bottom:186.346592pt;}
.y55{bottom:200.426586pt;}
.y33{bottom:204.746585pt;}
.y31{bottom:223.146577pt;}
.y54{bottom:224.106577pt;}
.y32{bottom:230.506574pt;}
.y30{bottom:241.546570pt;}
.y53{bottom:250.826566pt;}
.y2f{bottom:259.946563pt;}
.y52{bottom:269.226559pt;}
.y2e{bottom:278.346555pt;}
.y51{bottom:287.626552pt;}
.y2d{bottom:294.666549pt;}
.y2c{bottom:296.746548pt;}
.y50{bottom:313.706541pt;}
.y2b{bottom:315.146541pt;}
.y4f{bottom:340.426530pt;}
.y2a{bottom:341.226530pt;}
.y4e{bottom:358.826523pt;}
.y29{bottom:367.946519pt;}
.y4d{bottom:377.226516pt;}
.y28{bottom:384.266513pt;}
.y27{bottom:386.346512pt;}
.y4c{bottom:395.626508pt;}
.y25{bottom:404.746505pt;}
.y26{bottom:412.106502pt;}
.y4b{bottom:414.026501pt;}
.y23{bottom:423.146497pt;}
.y24{bottom:430.506494pt;}
.y4a{bottom:432.426494pt;}
.y22{bottom:439.466491pt;}
.y21{bottom:441.546490pt;}
.y49{bottom:450.826486pt;}
.y20{bottom:459.946483pt;}
.y48{bottom:469.226479pt;}
.y1f{bottom:486.346472pt;}
.y1e{bottom:504.746465pt;}
.y47{bottom:511.626462pt;}
.y1d{bottom:523.146457pt;}
.y46{bottom:530.026455pt;}
.y1c{bottom:541.546450pt;}
.y1b{bottom:559.946443pt;}
.y1a{bottom:578.346435pt;}
.y19{bottom:604.426425pt;}
.y18{bottom:631.146414pt;}
.y17{bottom:649.546407pt;}
.y16{bottom:667.946399pt;}
.y15{bottom:686.346392pt;}
.y14{bottom:704.746385pt;}
.y13{bottom:723.146377pt;}
.y12{bottom:741.546370pt;}
.y11{bottom:759.946363pt;}
.y10{bottom:778.346355pt;}
.y45{bottom:792.426350pt;}
.yf{bottom:804.426345pt;}
.y44{bottom:810.826342pt;}
.ye{bottom:823.146337pt;}
.y43{bottom:829.226335pt;}
.yd{bottom:841.226330pt;}
.y42{bottom:847.626328pt;}
.yc{bottom:859.946323pt;}
.y41{bottom:866.026320pt;}
.yb{bottom:878.346315pt;}
.y40{bottom:884.426313pt;}
.ya{bottom:896.746308pt;}
.y3e{bottom:902.826306pt;}
.y3f{bottom:910.186303pt;}
.y9{bottom:914.826301pt;}
.y3d{bottom:921.226298pt;}
.y8{bottom:933.226293pt;}
.y3c{bottom:939.626291pt;}
.y7{bottom:951.946286pt;}
.y3b{bottom:958.026283pt;}
.y6{bottom:970.506278pt;}
.y3a{bottom:976.426276pt;}
.y5{bottom:991.946270pt;}
.y39{bottom:994.826269pt;}
.y2{bottom:1045.226249pt;}
.y1{bottom:1074.346237pt;}
.ha{height:29.794051pt;}
.hb{height:36.909048pt;}
.h5{height:39.243734pt;}
.h4{height:39.839984pt;}
.h9{height:43.343733pt;}
.h8{height:44.437482pt;}
.h3{height:44.468732pt;}
.h7{height:56.843727pt;}
.h6{height:66.507161pt;}
.h2{height:66.703098pt;}
.h1{height:88.937464pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.559962pt;}
.x4{left:107.199957pt;}
.x1f{left:111.352089pt;}
.xc{left:113.440009pt;}
.x1c{left:117.599953pt;}
.xf{left:119.519952pt;}
.x9{left:123.359951pt;}
.x10{left:130.879948pt;}
.x7{left:136.480291pt;}
.xa{left:187.992767pt;}
.x5{left:199.039960pt;}
.xb{left:215.681743pt;}
.x19{left:217.759913pt;}
.x1a{left:223.199911pt;}
.x13{left:231.519907pt;}
.x14{left:236.959905pt;}
.x1b{left:245.279902pt;}
.x15{left:264.799894pt;}
.x16{left:270.239892pt;}
.x3{left:275.839890pt;}
.x8{left:283.519891pt;}
.x20{left:296.799869pt;}
.x1d{left:297.919881pt;}
.x1e{left:303.359879pt;}
.x2{left:334.719866pt;}
.x6{left:396.799841pt;}
.x17{left:452.959819pt;}
.x18{left:458.399817pt;}
.x11{left:600.799760pt;}
.x12{left:612.319755pt;}
.xd{left:626.879749pt;}
.xe{left:632.319747pt;}
}




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