
    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_b6642a6252c90ef146b0f0e7.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_01d2c61138bf0e227e84898e.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_4326f029f398ff2e9d328d77.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_d6fc1ef9c54d14379b698459.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;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.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);}
.m3{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.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);}
.v1{vertical-align:-74.879970px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009900px;}
.ls0{letter-spacing:0.009938px;}
.ls6{letter-spacing:0.189257px;}
.ls7{letter-spacing:0.275460px;}
.ls5{letter-spacing:2.171219px;}
.ls4{letter-spacing:8.655057px;}
.ls8{letter-spacing:67.316253px;}
.ls2{letter-spacing:195.967122px;}
.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:-16.559993px;}
.ws1{word-spacing:-13.499995px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-4.757638px;}
._c{margin-left:-2.786921px;}
._0{margin-left:-1.495120px;}
._2{width:1.118104px;}
._11{width:2.500921px;}
._9{width:4.095247px;}
._b{width:5.199821px;}
._a{width:6.663716px;}
._e{width:8.592003px;}
._6{width:10.075315px;}
._5{width:11.146085px;}
._12{width:12.715569px;}
._f{width:13.973529px;}
._d{width:15.162401px;}
._14{width:20.010291px;}
._13{width:21.232115px;}
._7{width:36.306932px;}
._8{width:37.699862px;}
._4{width:51.065996px;}
._15{width:148.141861px;}
._3{width:162.817118px;}
._10{width:179.406951px;}
._1{width:195.966987px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:53.999978px;}
.fs2{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y37{bottom:117.299953px;}
.y62{bottom:120.719952px;}
.y7d{bottom:124.139950px;}
.y36{bottom:136.199946px;}
.y61{bottom:139.259944px;}
.y7c{bottom:142.679943px;}
.y35{bottom:155.099938px;}
.y60{bottom:158.699937px;}
.y7b{bottom:162.119935px;}
.y34{bottom:174.179930px;}
.y5f{bottom:177.599929px;}
.y7a{bottom:180.659928px;}
.y33{bottom:193.079923px;}
.y5e{bottom:196.499921px;}
.y79{bottom:200.099920px;}
.y32{bottom:211.799915px;}
.y5d{bottom:215.219914px;}
.y78{bottom:218.639913px;}
.y31{bottom:230.699908px;}
.y5c{bottom:234.479906px;}
.y77{bottom:237.899905px;}
.y30{bottom:249.959900px;}
.y5b{bottom:253.559899px;}
.y76{bottom:256.979897px;}
.y2f{bottom:269.039892px;}
.y5a{bottom:272.459891px;}
.y75{bottom:275.879890px;}
.y2e{bottom:287.579885px;}
.y59{bottom:290.999884px;}
.y74{bottom:294.959882px;}
.y2d{bottom:306.659877px;}
.y58{bottom:310.079876px;}
.y73{bottom:313.499875px;}
.y2c{bottom:325.559870px;}
.y57{bottom:327.719869px;}
.y72{bottom:332.759867px;}
.y2b{bottom:344.819862px;}
.y56{bottom:346.259861px;}
.y71{bottom:351.479859px;}
.y2a{bottom:363.899854px;}
.y55{bottom:365.519854px;}
.y70{bottom:369.119852px;}
.y29{bottom:382.439847px;}
.y54{bottom:384.599846px;}
.y28{bottom:401.879839px;}
.y53{bottom:403.499839px;}
.y6f{bottom:406.919837px;}
.y27{bottom:420.779832px;}
.y52{bottom:422.579831px;}
.y6e{bottom:425.999830px;}
.y26{bottom:439.679824px;}
.y51{bottom:441.119824px;}
.y6d{bottom:444.899822px;}
.y25{bottom:458.399817px;}
.y50{bottom:460.379816px;}
.y6c{bottom:463.979814px;}
.y24{bottom:477.659809px;}
.y4f{bottom:479.459808px;}
.y6b{bottom:482.519807px;}
.y23{bottom:496.739801px;}
.y4e{bottom:498.359801px;}
.y6a{bottom:501.779799px;}
.y22{bottom:515.639794px;}
.y4d{bottom:517.439793px;}
.y69{bottom:520.499792px;}
.y21{bottom:534.719786px;}
.y4c{bottom:535.979786px;}
.y68{bottom:539.579784px;}
.y20{bottom:553.259779px;}
.y4b{bottom:555.419778px;}
.y67{bottom:556.859777px;}
.y1f{bottom:572.519771px;}
.y66{bottom:573.959770px;}
.y4a{bottom:574.319770px;}
.y1e{bottom:591.599763px;}
.y49{bottom:593.219763px;}
.y1d{bottom:610.499756px;}
.y48{bottom:612.299755px;}
.y1c{bottom:629.219748px;}
.y65{bottom:629.579748px;}
.y47{bottom:630.839748px;}
.y1b{bottom:648.479741px;}
.y46{bottom:650.279740px;}
.y1a{bottom:667.379733px;}
.y45{bottom:669.179732px;}
.y19{bottom:686.459725px;}
.y44{bottom:688.079725px;}
.y18{bottom:705.359718px;}
.y43{bottom:707.159717px;}
.y17{bottom:724.079710px;}
.y42{bottom:725.699710px;}
.y16{bottom:743.339703px;}
.y41{bottom:745.139702px;}
.y15{bottom:762.239695px;}
.y40{bottom:764.039694px;}
.y14{bottom:781.319687px;}
.y3f{bottom:782.759687px;}
.y13{bottom:800.219680px;}
.y12{bottom:819.299672px;}
.y3e{bottom:837.839665px;}
.y11{bottom:838.199665px;}
.y10{bottom:857.099657px;}
.y3d{bottom:875.819650px;}
.yf{bottom:876.179650px;}
.ye{bottom:895.079642px;}
.y64{bottom:913.799634px;}
.yd{bottom:914.159634px;}
.y7f{bottom:931.799627px;}
.yc{bottom:932.699627px;}
.y3c{bottom:933.059627px;}
.y63{bottom:951.779619px;}
.yb{bottom:952.139619px;}
.ya{bottom:971.039612px;}
.y9{bottom:989.939604px;}
.y8{bottom:1009.019596px;}
.y7{bottom:1027.919589px;}
.y6{bottom:1046.999581px;}
.y5{bottom:1065.539574px;}
.y3b{bottom:1065.899574px;}
.y4{bottom:1084.439566px;}
.y7e{bottom:1084.799566px;}
.y3{bottom:1103.519559px;}
.y3a{bottom:1103.879558px;}
.y2{bottom:1122.419551px;}
.y39{bottom:1122.779551px;}
.y1{bottom:1141.499543px;}
.y38{bottom:1141.859543px;}
.h3{height:52.971658px;}
.h5{height:58.621969px;}
.h4{height:58.651148px;}
.h2{height:65.010911px;}
.h1{height:66.757473px;}
.h6{height:69.086222px;}
.h7{height:70.664034px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x2{left:180.719655px;}
.x14{left:207.720408px;}
.x3{left:233.820231px;}
.x8{left:242.459903px;}
.xc{left:268.739893px;}
.x4{left:270.899892px;}
.x5{left:322.379871px;}
.x12{left:370.079852px;}
.x10{left:405.359838px;}
.x6{left:419.579832px;}
.x13{left:446.039822px;}
.x9{left:467.999813px;}
.x11{left:482.399807px;}
.xb{left:530.279788px;}
.xa{left:547.919781px;}
.x7{left:599.939760px;}
.xd{left:632.339747px;}
.xe{left:640.619744px;}
.xf{left:757.799697px;}
@media print{
.v1{vertical-align:-66.559973pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008800pt;}
.ls0{letter-spacing:0.008833pt;}
.ls6{letter-spacing:0.168228pt;}
.ls7{letter-spacing:0.244853pt;}
.ls5{letter-spacing:1.929973pt;}
.ls4{letter-spacing:7.693384pt;}
.ls8{letter-spacing:59.836669pt;}
.ls2{letter-spacing:174.192997pt;}
.ws0{word-spacing:-14.719994pt;}
.ws1{word-spacing:-11.999995pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-4.229012pt;}
._c{margin-left:-2.477263pt;}
._0{margin-left:-1.328996pt;}
._2{width:0.993870pt;}
._11{width:2.223041pt;}
._9{width:3.640220pt;}
._b{width:4.622063pt;}
._a{width:5.923303pt;}
._e{width:7.637336pt;}
._6{width:8.955836pt;}
._5{width:9.907632pt;}
._12{width:11.302728pt;}
._f{width:12.420915pt;}
._d{width:13.477690pt;}
._14{width:17.786925pt;}
._13{width:18.872991pt;}
._7{width:32.272829pt;}
._8{width:33.510989pt;}
._4{width:45.391996pt;}
._15{width:131.681654pt;}
._3{width:144.726327pt;}
._10{width:159.472846pt;}
._1{width:174.192878pt;}
.fs1{font-size:47.999981pt;}
.fs2{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:104.266625pt;}
.y62{bottom:107.306624pt;}
.y7d{bottom:110.346623pt;}
.y36{bottom:121.066618pt;}
.y61{bottom:123.786617pt;}
.y7c{bottom:126.826616pt;}
.y35{bottom:137.866612pt;}
.y60{bottom:141.066610pt;}
.y7b{bottom:144.106609pt;}
.y34{bottom:154.826605pt;}
.y5f{bottom:157.866604pt;}
.y7a{bottom:160.586602pt;}
.y33{bottom:171.626598pt;}
.y5e{bottom:174.666597pt;}
.y79{bottom:177.866596pt;}
.y32{bottom:188.266591pt;}
.y5d{bottom:191.306590pt;}
.y78{bottom:194.346589pt;}
.y31{bottom:205.066585pt;}
.y5c{bottom:208.426583pt;}
.y77{bottom:211.466582pt;}
.y30{bottom:222.186578pt;}
.y5b{bottom:225.386577pt;}
.y76{bottom:228.426575pt;}
.y2f{bottom:239.146571pt;}
.y5a{bottom:242.186570pt;}
.y75{bottom:245.226569pt;}
.y2e{bottom:255.626564pt;}
.y59{bottom:258.666563pt;}
.y74{bottom:262.186562pt;}
.y2d{bottom:272.586558pt;}
.y58{bottom:275.626556pt;}
.y73{bottom:278.666555pt;}
.y2c{bottom:289.386551pt;}
.y57{bottom:291.306550pt;}
.y72{bottom:295.786548pt;}
.y2b{bottom:306.506544pt;}
.y56{bottom:307.786544pt;}
.y71{bottom:312.426542pt;}
.y2a{bottom:323.466537pt;}
.y55{bottom:324.906537pt;}
.y70{bottom:328.106535pt;}
.y29{bottom:339.946531pt;}
.y54{bottom:341.866530pt;}
.y28{bottom:357.226524pt;}
.y53{bottom:358.666523pt;}
.y6f{bottom:361.706522pt;}
.y27{bottom:374.026517pt;}
.y52{bottom:375.626516pt;}
.y6e{bottom:378.666515pt;}
.y26{bottom:390.826510pt;}
.y51{bottom:392.106510pt;}
.y6d{bottom:395.466508pt;}
.y25{bottom:407.466504pt;}
.y50{bottom:409.226503pt;}
.y6c{bottom:412.426502pt;}
.y24{bottom:424.586497pt;}
.y4f{bottom:426.186496pt;}
.y6b{bottom:428.906495pt;}
.y23{bottom:441.546490pt;}
.y4e{bottom:442.986489pt;}
.y6a{bottom:446.026488pt;}
.y22{bottom:458.346483pt;}
.y4d{bottom:459.946483pt;}
.y69{bottom:462.666482pt;}
.y21{bottom:475.306477pt;}
.y4c{bottom:476.426476pt;}
.y68{bottom:479.626475pt;}
.y20{bottom:491.786470pt;}
.y4b{bottom:493.706469pt;}
.y67{bottom:494.986469pt;}
.y1f{bottom:508.906463pt;}
.y66{bottom:510.186463pt;}
.y4a{bottom:510.506462pt;}
.y1e{bottom:525.866456pt;}
.y49{bottom:527.306456pt;}
.y1d{bottom:542.666450pt;}
.y48{bottom:544.266449pt;}
.y1c{bottom:559.306443pt;}
.y65{bottom:559.626443pt;}
.y47{bottom:560.746442pt;}
.y1b{bottom:576.426436pt;}
.y46{bottom:578.026435pt;}
.y1a{bottom:593.226429pt;}
.y45{bottom:594.826429pt;}
.y19{bottom:610.186423pt;}
.y44{bottom:611.626422pt;}
.y18{bottom:626.986416pt;}
.y43{bottom:628.586415pt;}
.y17{bottom:643.626409pt;}
.y42{bottom:645.066409pt;}
.y16{bottom:660.746402pt;}
.y41{bottom:662.346402pt;}
.y15{bottom:677.546396pt;}
.y40{bottom:679.146395pt;}
.y14{bottom:694.506389pt;}
.y3f{bottom:695.786388pt;}
.y13{bottom:711.306382pt;}
.y12{bottom:728.266375pt;}
.y3e{bottom:744.746369pt;}
.y11{bottom:745.066369pt;}
.y10{bottom:761.866362pt;}
.y3d{bottom:778.506355pt;}
.yf{bottom:778.826355pt;}
.ye{bottom:795.626348pt;}
.y64{bottom:812.266342pt;}
.yd{bottom:812.586342pt;}
.y7f{bottom:828.266335pt;}
.yc{bottom:829.066335pt;}
.y3c{bottom:829.386335pt;}
.y63{bottom:846.026328pt;}
.yb{bottom:846.346328pt;}
.ya{bottom:863.146321pt;}
.y9{bottom:879.946315pt;}
.y8{bottom:896.906308pt;}
.y7{bottom:913.706301pt;}
.y6{bottom:930.666294pt;}
.y5{bottom:947.146288pt;}
.y3b{bottom:947.466288pt;}
.y4{bottom:963.946281pt;}
.y7e{bottom:964.266281pt;}
.y3{bottom:980.906274pt;}
.y3a{bottom:981.226274pt;}
.y2{bottom:997.706268pt;}
.y39{bottom:998.026267pt;}
.y1{bottom:1014.666261pt;}
.y38{bottom:1014.986261pt;}
.h3{height:47.085919pt;}
.h5{height:52.108417pt;}
.h4{height:52.134354pt;}
.h2{height:57.787477pt;}
.h1{height:59.339976pt;}
.h6{height:61.409975pt;}
.h7{height:62.812475pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x2{left:160.639693pt;}
.x14{left:184.640363pt;}
.x3{left:207.840205pt;}
.x8{left:215.519914pt;}
.xc{left:238.879904pt;}
.x4{left:240.799904pt;}
.x5{left:286.559885pt;}
.x12{left:328.959868pt;}
.x10{left:360.319856pt;}
.x6{left:372.959851pt;}
.x13{left:396.479841pt;}
.x9{left:415.999834pt;}
.x11{left:428.799828pt;}
.xb{left:471.359811pt;}
.xa{left:487.039805pt;}
.x7{left:533.279787pt;}
.xd{left:562.079775pt;}
.xe{left:569.439772pt;}
.xf{left:673.599731pt;}
}




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