
    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_a29a80f30ad8f2b5923f4352.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9e6e2ae6dc01c22092f9972.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d4abe07e766e855a54eb8495.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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;}
.m2{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);}
.m0{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);}
.m1{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);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-82.799967px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.010641px;}
.ls6{letter-spacing:0.021238px;}
.ls1{letter-spacing:10.995956px;}
.ls8{letter-spacing:28.252489px;}
.ls4{letter-spacing:34.015846px;}
.ls7{letter-spacing:90.063564px;}
.ls3{letter-spacing:1239.143504px;}
.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:-18.021231px;}
.ws1{word-spacing:-17.999993px;}
.ws0{word-spacing:-12.059995px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-6.466355px;}
._6{margin-left:-2.139990px;}
._1{margin-left:-1.027253px;}
._0{width:1.101393px;}
._e{width:2.327508px;}
._7{width:3.718880px;}
._2{width:4.738253px;}
._3{width:6.031805px;}
._d{width:7.141087px;}
._b{width:8.177439px;}
._4{width:9.419794px;}
._f{width:10.447314px;}
._5{width:11.532101px;}
._8{width:13.500336px;}
._9{width:15.160195px;}
._a{width:16.253882px;}
._10{width:19.366922px;}
._11{width:20.750642px;}
._12{width:22.354639px;}
._15{width:25.680172px;}
._c{width:27.273415px;}
._13{width:28.355252px;}
._14{width:29.940182px;}
._18{width:32.706301px;}
._19{width:33.978272px;}
._16{width:40.305995px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs1{font-size:48.239981px;}
.fs2{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y40{bottom:4.320041px;}
.y3f{bottom:42.600240px;}
.y6d{bottom:47.099981px;}
.y3e{bottom:47.100281px;}
.y3c{bottom:131.339947px;}
.y7e{bottom:131.340247px;}
.y75{bottom:146.459941px;}
.y3b{bottom:148.619941px;}
.y7d{bottom:148.620241px;}
.y7c{bottom:155.459938px;}
.y3a{bottom:165.899934px;}
.y74{bottom:167.159933px;}
.y39{bottom:172.739931px;}
.y38{bottom:182.999927px;}
.y73{bottom:187.859925px;}
.y37{bottom:189.839924px;}
.y36{bottom:200.279920px;}
.y72{bottom:208.559917px;}
.y35{bottom:217.559913px;}
.y6b{bottom:224.399910px;}
.y71{bottom:229.259908px;}
.y34{bottom:234.839906px;}
.y7b{bottom:241.679903px;}
.y70{bottom:249.959900px;}
.y33{bottom:252.119899px;}
.y7a{bottom:258.959896px;}
.y32{bottom:269.399892px;}
.y79{bottom:270.119892px;}
.y6f{bottom:270.659892px;}
.y31{bottom:286.499885px;}
.y6a{bottom:287.399885px;}
.y6e{bottom:291.359883px;}
.y30{bottom:293.339883px;}
.y2f{bottom:303.779878px;}
.y69{bottom:312.059875px;}
.y2e{bottom:321.059872px;}
.y2d{bottom:327.899869px;}
.y68{bottom:332.759867px;}
.y2c{bottom:339.059864px;}
.y67{bottom:353.459859px;}
.y2a{bottom:360.299856px;}
.y2b{bottom:368.579853px;}
.y66{bottom:374.159850px;}
.y29{bottom:380.999848px;}
.y65{bottom:394.859842px;}
.y28{bottom:401.699839px;}
.y64{bottom:415.559834px;}
.y26{bottom:422.399831px;}
.y27{bottom:430.679828px;}
.y63{bottom:436.259825px;}
.y25{bottom:443.099823px;}
.y78{bottom:444.539822px;}
.y62{bottom:456.959817px;}
.y23{bottom:463.799814px;}
.y24{bottom:472.079811px;}
.y61{bottom:477.659809px;}
.y22{bottom:484.499806px;}
.y77{bottom:485.939806px;}
.y60{bottom:498.359801px;}
.y21{bottom:505.199798px;}
.y5f{bottom:519.059792px;}
.y20{bottom:525.899790px;}
.y5e{bottom:539.759784px;}
.y1f{bottom:546.599781px;}
.y5d{bottom:560.459776px;}
.y1e{bottom:567.299773px;}
.y5c{bottom:581.159768px;}
.y1d{bottom:587.999765px;}
.y5b{bottom:601.679759px;}
.y1c{bottom:608.339757px;}
.y5a{bottom:622.379751px;}
.y1b{bottom:629.399748px;}
.y59{bottom:643.079743px;}
.y1a{bottom:650.099740px;}
.y58{bottom:663.779734px;}
.y19{bottom:670.799732px;}
.y57{bottom:684.479726px;}
.y18{bottom:691.499723px;}
.y56{bottom:705.179718px;}
.y17{bottom:712.199715px;}
.y55{bottom:725.879710px;}
.y16{bottom:732.899707px;}
.y54{bottom:746.579701px;}
.y15{bottom:753.599699px;}
.y53{bottom:767.279693px;}
.y14{bottom:774.299690px;}
.y52{bottom:787.979685px;}
.y13{bottom:794.999682px;}
.y51{bottom:808.679677px;}
.y12{bottom:815.699674px;}
.y50{bottom:829.379668px;}
.y11{bottom:836.399665px;}
.y4f{bottom:850.079660px;}
.y10{bottom:857.099657px;}
.y4e{bottom:870.779652px;}
.yf{bottom:877.799649px;}
.y4d{bottom:891.479643px;}
.ye{bottom:898.499641px;}
.y4b{bottom:912.179635px;}
.yd{bottom:918.479633px;}
.y4c{bottom:920.459632px;}
.y4a{bottom:932.879627px;}
.yc{bottom:935.579626px;}
.yb{bottom:952.139619px;}
.y49{bottom:953.579619px;}
.ya{bottom:966.719613px;}
.y48{bottom:974.279610px;}
.y9{bottom:983.999606px;}
.y47{bottom:994.979602px;}
.y8{bottom:1001.099600px;}
.y46{bottom:1015.679594px;}
.y7{bottom:1018.019593px;}
.y6{bottom:1036.019586px;}
.y45{bottom:1036.379585px;}
.y4{bottom:1056.719577px;}
.y44{bottom:1057.079577px;}
.y5{bottom:1064.999574px;}
.y3{bottom:1077.419569px;}
.y43{bottom:1077.779569px;}
.y2{bottom:1098.119561px;}
.y42{bottom:1098.479561px;}
.y76{bottom:1106.759557px;}
.y1{bottom:1118.819552px;}
.y41{bottom:1119.179552px;}
.y6c{bottom:1190.459524px;}
.y3d{bottom:1209.719516px;}
.h8{height:20.520000px;}
.h7{height:38.158578px;}
.h5{height:47.344903px;}
.h2{height:48.616856px;}
.h4{height:58.651148px;}
.h3{height:60.226851px;}
.h6{height:70.664034px;}
.h1{height:72.562471px;}
.h9{height:75.093720px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:127.620534px;}
.x18{left:132.479947px;}
.x1d{left:154.620289px;}
.x22{left:163.619935px;}
.x23{left:169.739932px;}
.x1e{left:181.618589px;}
.x19{left:196.559921px;}
.x16{left:198.719921px;}
.x17{left:204.839918px;}
.x1{left:223.739911px;}
.x20{left:248.939900px;}
.x21{left:255.059898px;}
.x4{left:270.719607px;}
.x10{left:284.399847px;}
.xe{left:288.719504px;}
.x2{left:295.559933px;}
.x12{left:318.599873px;}
.x13{left:324.719870px;}
.x14{left:347.399861px;}
.x15{left:353.519859px;}
.xf{left:363.059552px;}
.x7{left:377.279754px;}
.x8{left:390.599844px;}
.x1f{left:396.899841px;}
.x9{left:424.979830px;}
.xa{left:433.979826px;}
.x26{left:437.399825px;}
.x27{left:443.519823px;}
.x3{left:446.219431px;}
.x1a{left:450.720000px;}
.xb{left:466.919813px;}
.xc{left:477.899809px;}
.xd{left:515.159794px;}
.x24{left:601.559759px;}
.x25{left:607.679757px;}
.x5{left:615.779754px;}
.x6{left:621.899751px;}
.x1b{left:690.299724px;}
.x1c{left:696.419721px;}
@media print{
.v1{vertical-align:-73.599971pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.009459pt;}
.ls6{letter-spacing:0.018878pt;}
.ls1{letter-spacing:9.774183pt;}
.ls8{letter-spacing:25.113323pt;}
.ls4{letter-spacing:30.236308pt;}
.ls7{letter-spacing:80.056501pt;}
.ls3{letter-spacing:1101.460893pt;}
.ws3{word-spacing:-16.018872pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:-10.719996pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-5.747871pt;}
._6{margin-left:-1.902214pt;}
._1{margin-left:-0.913114pt;}
._0{width:0.979016pt;}
._e{width:2.068896pt;}
._7{width:3.305671pt;}
._2{width:4.211781pt;}
._3{width:5.361604pt;}
._d{width:6.347633pt;}
._b{width:7.268834pt;}
._4{width:8.373150pt;}
._f{width:9.286501pt;}
._5{width:10.250756pt;}
._8{width:12.000298pt;}
._9{width:13.475729pt;}
._a{width:14.447895pt;}
._10{width:17.215042pt;}
._11{width:18.445015pt;}
._12{width:19.870790pt;}
._15{width:22.826820pt;}
._c{width:24.243035pt;}
._13{width:25.204668pt;}
._14{width:26.613496pt;}
._18{width:29.072267pt;}
._19{width:30.202908pt;}
._16{width:35.827551pt;}
.fs3{font-size:34.559986pt;}
.fs1{font-size:42.879983pt;}
.fs2{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:3.840037pt;}
.y3f{bottom:37.866880pt;}
.y6d{bottom:41.866650pt;}
.y3e{bottom:41.866917pt;}
.y3c{bottom:116.746620pt;}
.y7e{bottom:116.746887pt;}
.y75{bottom:130.186615pt;}
.y3b{bottom:132.106614pt;}
.y7d{bottom:132.106880pt;}
.y7c{bottom:138.186611pt;}
.y3a{bottom:147.466608pt;}
.y74{bottom:148.586607pt;}
.y39{bottom:153.546605pt;}
.y38{bottom:162.666602pt;}
.y73{bottom:166.986600pt;}
.y37{bottom:168.746599pt;}
.y36{bottom:178.026595pt;}
.y72{bottom:185.386593pt;}
.y35{bottom:193.386589pt;}
.y6b{bottom:199.466587pt;}
.y71{bottom:203.786585pt;}
.y34{bottom:208.746583pt;}
.y7b{bottom:214.826581pt;}
.y70{bottom:222.186578pt;}
.y33{bottom:224.106577pt;}
.y7a{bottom:230.186575pt;}
.y32{bottom:239.466571pt;}
.y79{bottom:240.106571pt;}
.y6f{bottom:240.586570pt;}
.y31{bottom:254.666565pt;}
.y6a{bottom:255.466564pt;}
.y6e{bottom:258.986563pt;}
.y30{bottom:260.746562pt;}
.y2f{bottom:270.026559pt;}
.y69{bottom:277.386556pt;}
.y2e{bottom:285.386553pt;}
.y2d{bottom:291.466550pt;}
.y68{bottom:295.786548pt;}
.y2c{bottom:301.386546pt;}
.y67{bottom:314.186541pt;}
.y2a{bottom:320.266539pt;}
.y2b{bottom:327.626536pt;}
.y66{bottom:332.586534pt;}
.y29{bottom:338.666531pt;}
.y65{bottom:350.986526pt;}
.y28{bottom:357.066524pt;}
.y64{bottom:369.386519pt;}
.y26{bottom:375.466516pt;}
.y27{bottom:382.826514pt;}
.y63{bottom:387.786512pt;}
.y25{bottom:393.866509pt;}
.y78{bottom:395.146509pt;}
.y62{bottom:406.186504pt;}
.y23{bottom:412.266502pt;}
.y24{bottom:419.626499pt;}
.y61{bottom:424.586497pt;}
.y22{bottom:430.666494pt;}
.y77{bottom:431.946494pt;}
.y60{bottom:442.986489pt;}
.y21{bottom:449.066487pt;}
.y5f{bottom:461.386482pt;}
.y20{bottom:467.466480pt;}
.y5e{bottom:479.786475pt;}
.y1f{bottom:485.866472pt;}
.y5d{bottom:498.186467pt;}
.y1e{bottom:504.266465pt;}
.y5c{bottom:516.586460pt;}
.y1d{bottom:522.666458pt;}
.y5b{bottom:534.826453pt;}
.y1c{bottom:540.746450pt;}
.y5a{bottom:553.226445pt;}
.y1b{bottom:559.466443pt;}
.y59{bottom:571.626438pt;}
.y1a{bottom:577.866436pt;}
.y58{bottom:590.026431pt;}
.y19{bottom:596.266428pt;}
.y57{bottom:608.426423pt;}
.y18{bottom:614.666421pt;}
.y56{bottom:626.826416pt;}
.y17{bottom:633.066413pt;}
.y55{bottom:645.226409pt;}
.y16{bottom:651.466406pt;}
.y54{bottom:663.626401pt;}
.y15{bottom:669.866399pt;}
.y53{bottom:682.026394pt;}
.y14{bottom:688.266391pt;}
.y52{bottom:700.426386pt;}
.y13{bottom:706.666384pt;}
.y51{bottom:718.826379pt;}
.y12{bottom:725.066377pt;}
.y50{bottom:737.226372pt;}
.y11{bottom:743.466369pt;}
.y4f{bottom:755.626364pt;}
.y10{bottom:761.866362pt;}
.y4e{bottom:774.026357pt;}
.yf{bottom:780.266355pt;}
.y4d{bottom:792.426350pt;}
.ye{bottom:798.666347pt;}
.y4b{bottom:810.826342pt;}
.yd{bottom:816.426340pt;}
.y4c{bottom:818.186339pt;}
.y4a{bottom:829.226335pt;}
.yc{bottom:831.626334pt;}
.yb{bottom:846.346328pt;}
.y49{bottom:847.626328pt;}
.ya{bottom:859.306323pt;}
.y48{bottom:866.026320pt;}
.y9{bottom:874.666317pt;}
.y47{bottom:884.426313pt;}
.y8{bottom:889.866311pt;}
.y46{bottom:902.826306pt;}
.y7{bottom:904.906305pt;}
.y6{bottom:920.906298pt;}
.y45{bottom:921.226298pt;}
.y4{bottom:939.306291pt;}
.y44{bottom:939.626291pt;}
.y5{bottom:946.666288pt;}
.y3{bottom:957.706284pt;}
.y43{bottom:958.026283pt;}
.y2{bottom:976.106276pt;}
.y42{bottom:976.426276pt;}
.y76{bottom:983.786273pt;}
.y1{bottom:994.506269pt;}
.y41{bottom:994.826269pt;}
.y6c{bottom:1058.186243pt;}
.y3d{bottom:1075.306237pt;}
.h8{height:18.240000pt;}
.h7{height:33.918736pt;}
.h5{height:42.084358pt;}
.h2{height:43.214983pt;}
.h4{height:52.134354pt;}
.h3{height:53.534979pt;}
.h6{height:62.812475pt;}
.h1{height:64.499974pt;}
.h9{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:113.440474pt;}
.x18{left:117.759953pt;}
.x1d{left:137.440257pt;}
.x22{left:145.439942pt;}
.x23{left:150.879940pt;}
.x1e{left:161.438746pt;}
.x19{left:174.719930pt;}
.x16{left:176.639929pt;}
.x17{left:182.079927pt;}
.x1{left:198.879920pt;}
.x20{left:221.279911pt;}
.x21{left:226.719909pt;}
.x4{left:240.639651pt;}
.x10{left:252.799864pt;}
.xe{left:256.639559pt;}
.x2{left:262.719940pt;}
.x12{left:283.199887pt;}
.x13{left:288.639885pt;}
.x14{left:308.799876pt;}
.x15{left:314.239874pt;}
.xf{left:322.719602pt;}
.x7{left:335.359782pt;}
.x8{left:347.199861pt;}
.x1f{left:352.799859pt;}
.x9{left:377.759849pt;}
.xa{left:385.759846pt;}
.x26{left:388.799844pt;}
.x27{left:394.239842pt;}
.x3{left:396.639494pt;}
.x1a{left:400.640000pt;}
.xb{left:415.039834pt;}
.xc{left:424.799830pt;}
.xd{left:457.919817pt;}
.x24{left:534.719786pt;}
.x25{left:540.159784pt;}
.x5{left:547.359781pt;}
.x6{left:552.799779pt;}
.x1b{left:613.599755pt;}
.x1c{left:619.039752pt;}
}




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