
    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_7f6a54a6911ef14ee6c096e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_255f6ced014d915d5d285659.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f3b2ef8919e14d513830f0e0.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_dd066e4b912b3429e720c27b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bc2239c8ed7bff5e34c52755.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aa8b953991b1f308d58061af.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918457;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;}
.m1{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);}
.m2{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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.021282px;}
.ls3{letter-spacing:0.378514px;}
.lsb{letter-spacing:0.451140px;}
.ls6{letter-spacing:0.731040px;}
.lsa{letter-spacing:1.451476px;}
.ls8{letter-spacing:5.053600px;}
.lsd{letter-spacing:11.537395px;}
.ls7{letter-spacing:11.537422px;}
.ls9{letter-spacing:13.698697px;}
.ls2{letter-spacing:18.741653px;}
.ls4{letter-spacing:198.127121px;}
.lsc{letter-spacing:2470.343012px;}
.ls0{letter-spacing:2509.966996px;}
.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:-19.367992px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.839994px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-2.065084px;}
._1{margin-left:-1.023294px;}
._0{width:1.222576px;}
._3{width:2.705947px;}
._14{width:3.726653px;}
._9{width:4.917902px;}
._11{width:5.922192px;}
._5{width:7.014393px;}
._4{width:8.353382px;}
._d{width:9.376124px;}
._a{width:10.636198px;}
._b{width:11.770631px;}
._17{width:13.085848px;}
._1a{width:14.200522px;}
._6{width:15.271907px;}
._7{width:16.334554px;}
._22{width:18.020717px;}
._8{width:19.995831px;}
._e{width:21.133370px;}
._10{width:22.433601px;}
._f{width:23.761089px;}
._18{width:24.837640px;}
._19{width:25.897882px;}
._1c{width:27.219492px;}
._21{width:29.193708px;}
._1e{width:30.218856px;}
._1f{width:31.350956px;}
._1b{width:32.526238px;}
._12{width:33.572927px;}
._13{width:35.204964px;}
._23{width:36.369631px;}
._16{width:37.414290px;}
._15{width:38.661018px;}
._1d{width:40.716982px;}
._2{width:198.127361px;}
._20{width:201.192716px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960037px;}
.y2{bottom:53.040240px;}
.y1{bottom:57.180277px;}
.y43{bottom:112.259955px;}
.y50{bottom:113.519955px;}
.y25{bottom:114.059954px;}
.y87{bottom:120.899952px;}
.y76{bottom:124.319950px;}
.y4f{bottom:130.799948px;}
.y42{bottom:143.399943px;}
.y24{bottom:145.019942px;}
.y78{bottom:145.020242px;}
.y4e{bottom:147.899941px;}
.y86{bottom:152.039939px;}
.y75{bottom:155.459938px;}
.y4d{bottom:165.179934px;}
.y41{bottom:174.359930px;}
.y23{bottom:176.159930px;}
.y4c{bottom:182.459927px;}
.y85{bottom:182.999927px;}
.y74{bottom:186.419925px;}
.y4b{bottom:199.739920px;}
.y40{bottom:205.499918px;}
.y22{bottom:207.119917px;}
.y84{bottom:214.139914px;}
.y4a{bottom:217.019913px;}
.y73{bottom:217.559913px;}
.y49{bottom:234.299906px;}
.y3f{bottom:236.459905px;}
.y21{bottom:238.259905px;}
.y83{bottom:245.099902px;}
.y72{bottom:248.519901px;}
.y48{bottom:251.399899px;}
.y3e{bottom:267.599893px;}
.y47{bottom:268.679893px;}
.y20{bottom:269.219892px;}
.y82{bottom:276.239890px;}
.y71{bottom:279.659888px;}
.y46{bottom:285.959886px;}
.y3d{bottom:298.559881px;}
.y1f{bottom:300.359880px;}
.y45{bottom:303.239879px;}
.y81{bottom:307.199877px;}
.y70{bottom:310.619876px;}
.y3c{bottom:329.699868px;}
.y44{bottom:330.959868px;}
.y1e{bottom:331.319867px;}
.y80{bottom:338.339865px;}
.y6f{bottom:341.759863px;}
.y3b{bottom:360.659856px;}
.y1d{bottom:362.459855px;}
.y7f{bottom:369.299852px;}
.y6e{bottom:372.719851px;}
.y3a{bottom:391.799843px;}
.y1c{bottom:393.419843px;}
.y7e{bottom:400.439840px;}
.y6d{bottom:403.859838px;}
.y7d{bottom:421.319831px;}
.y39{bottom:422.759831px;}
.y1b{bottom:424.559830px;}
.y6c{bottom:434.819826px;}
.y7c{bottom:442.019823px;}
.y38{bottom:453.899818px;}
.y1a{bottom:455.519818px;}
.y7b{bottom:461.819815px;}
.y6b{bottom:465.959814px;}
.y7a{bottom:479.099808px;}
.y37{bottom:484.859806px;}
.y19{bottom:486.659805px;}
.y79{bottom:496.379801px;}
.y6a{bottom:496.919801px;}
.y36{bottom:513.659795px;}
.y18{bottom:517.619793px;}
.y69{bottom:528.059789px;}
.y35{bottom:530.939788px;}
.y34{bottom:548.219781px;}
.y17{bottom:548.759780px;}
.y68{bottom:559.019776px;}
.y33{bottom:565.319774px;}
.y16{bottom:579.719768px;}
.y32{bottom:582.599767px;}
.y67{bottom:590.159764px;}
.y31{bottom:599.879760px;}
.y15{bottom:610.859756px;}
.y30{bottom:617.159753px;}
.y66{bottom:621.119752px;}
.y2f{bottom:634.439746px;}
.y14{bottom:641.819743px;}
.y2e{bottom:651.719739px;}
.y65{bottom:652.259739px;}
.y2d{bottom:668.819732px;}
.y13{bottom:672.959731px;}
.y64{bottom:683.219727px;}
.y2c{bottom:686.099726px;}
.y2b{bottom:703.379719px;}
.y77{bottom:703.559719px;}
.y12{bottom:703.919718px;}
.y63{bottom:714.359714px;}
.y2a{bottom:720.659712px;}
.y11{bottom:735.059706px;}
.y29{bottom:737.939705px;}
.y62{bottom:745.319702px;}
.y28{bottom:765.659694px;}
.y10{bottom:766.019694px;}
.y61{bottom:776.459689px;}
.y88{bottom:796.799681px;}
.yf{bottom:797.159681px;}
.y60{bottom:807.419677px;}
.ye{bottom:828.119669px;}
.y5f{bottom:838.559665px;}
.yd{bottom:859.259656px;}
.y5e{bottom:869.519652px;}
.y89{bottom:889.859644px;}
.yc{bottom:890.219644px;}
.y5d{bottom:900.659640px;}
.yb{bottom:921.359631px;}
.y8a{bottom:921.539631px;}
.y5c{bottom:931.619627px;}
.ya{bottom:952.319619px;}
.y5b{bottom:962.759615px;}
.y9{bottom:983.459607px;}
.y5a{bottom:983.639607px;}
.y59{bottom:1003.439599px;}
.y8{bottom:1014.419594px;}
.y58{bottom:1020.719592px;}
.y57{bottom:1037.999585px;}
.y7{bottom:1045.559582px;}
.y56{bottom:1055.279578px;}
.y55{bottom:1072.559571px;}
.y6{bottom:1076.519569px;}
.y54{bottom:1089.839564px;}
.y53{bottom:1106.939557px;}
.y5{bottom:1107.299557px;}
.y27{bottom:1107.659557px;}
.y52{bottom:1124.219550px;}
.y4{bottom:1138.259545px;}
.y26{bottom:1138.619545px;}
.y51{bottom:1141.499543px;}
.h2{height:21.060000px;}
.h1{height:50.308574px;}
.h5{height:58.651148px;}
.h6{height:65.010911px;}
.h4{height:70.664034px;}
.h3{height:72.562471px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:134.999946px;}
.x13{left:188.999924px;}
.x3{left:200.519920px;}
.x4{left:260.280167px;}
.x28{left:301.679879px;}
.x29{left:335.339866px;}
.x2c{left:405.539776px;}
.x1f{left:407.519719px;}
.x20{left:410.401098px;}
.xc{left:420.119948px;}
.x15{left:446.579849px;}
.x8{left:450.539846px;}
.x34{left:457.558846px;}
.x33{left:470.879656px;}
.xa{left:476.639700px;}
.x17{left:485.100318px;}
.x2a{left:488.699801px;}
.x2e{left:490.859373px;}
.x30{left:500.399358px;}
.x1d{left:506.698999px;}
.x11{left:507.960530px;}
.x24{left:509.761813px;}
.x19{left:518.400381px;}
.x22{left:520.920953px;}
.x2d{left:523.259404px;}
.x18{left:524.520383px;}
.x14{left:528.659789px;}
.x1e{left:531.539028px;}
.x1c{left:539.638998px;}
.xd{left:548.280657px;}
.x7{left:550.439780px;}
.x2b{left:564.119784px;}
.x32{left:568.259639px;}
.xf{left:569.520634px;}
.x10{left:576.180590px;}
.xe{left:579.060634px;}
.x25{left:589.861769px;}
.x6{left:599.220278px;}
.x12{left:604.980584px;}
.x5{left:615.600202px;}
.x2f{left:617.579319px;}
.x36{left:630.719235px;}
.x35{left:635.039235px;}
.xb{left:654.120090px;}
.x16{left:656.999638px;}
.x37{left:661.139284px;}
.x9{left:664.919450px;}
.x21{left:666.540979px;}
.x23{left:679.141182px;}
.x31{left:700.019636px;}
.x1a{left:729.179708px;}
.x1b{left:733.679707px;}
.x2{left:775.980000px;}
.x26{left:787.499685px;}
.x27{left:791.819683px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.018917pt;}
.ls3{letter-spacing:0.336457pt;}
.lsb{letter-spacing:0.401013pt;}
.ls6{letter-spacing:0.649813pt;}
.lsa{letter-spacing:1.290201pt;}
.ls8{letter-spacing:4.492089pt;}
.lsd{letter-spacing:10.255463pt;}
.ls7{letter-spacing:10.255487pt;}
.ls9{letter-spacing:12.176619pt;}
.ls2{letter-spacing:16.659247pt;}
.ls4{letter-spacing:176.112996pt;}
.lsc{letter-spacing:2195.860455pt;}
.ls0{letter-spacing:2231.081774pt;}
.ws2{word-spacing:-17.215993pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-14.079994pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-1.835630pt;}
._1{margin-left:-0.909595pt;}
._0{width:1.086734pt;}
._3{width:2.405286pt;}
._14{width:3.312580pt;}
._9{width:4.371469pt;}
._11{width:5.264171pt;}
._5{width:6.235016pt;}
._4{width:7.425228pt;}
._d{width:8.334333pt;}
._a{width:9.454398pt;}
._b{width:10.462783pt;}
._17{width:11.631865pt;}
._1a{width:12.622686pt;}
._6{width:13.575028pt;}
._7{width:14.519603pt;}
._22{width:16.018415pt;}
._8{width:17.774072pt;}
._e{width:18.785218pt;}
._10{width:19.940978pt;}
._f{width:21.120968pt;}
._18{width:22.077902pt;}
._19{width:23.020340pt;}
._1c{width:24.195104pt;}
._21{width:25.949963pt;}
._1e{width:26.861206pt;}
._1f{width:27.867517pt;}
._1b{width:28.912211pt;}
._12{width:29.842602pt;}
._13{width:31.293302pt;}
._23{width:32.328561pt;}
._16{width:33.257147pt;}
._15{width:34.365349pt;}
._1d{width:36.192872pt;}
._2{width:176.113210pt;}
._20{width:178.837970pt;}
.fs1{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520033pt;}
.y2{bottom:47.146880pt;}
.y1{bottom:50.826913pt;}
.y43{bottom:99.786627pt;}
.y50{bottom:100.906626pt;}
.y25{bottom:101.386626pt;}
.y87{bottom:107.466624pt;}
.y76{bottom:110.506622pt;}
.y4f{bottom:116.266620pt;}
.y42{bottom:127.466616pt;}
.y24{bottom:128.906615pt;}
.y78{bottom:128.906882pt;}
.y4e{bottom:131.466614pt;}
.y86{bottom:135.146613pt;}
.y75{bottom:138.186611pt;}
.y4d{bottom:146.826608pt;}
.y41{bottom:154.986605pt;}
.y23{bottom:156.586604pt;}
.y4c{bottom:162.186602pt;}
.y85{bottom:162.666602pt;}
.y74{bottom:165.706600pt;}
.y4b{bottom:177.546596pt;}
.y40{bottom:182.666594pt;}
.y22{bottom:184.106593pt;}
.y84{bottom:190.346591pt;}
.y4a{bottom:192.906590pt;}
.y73{bottom:193.386589pt;}
.y49{bottom:208.266583pt;}
.y3f{bottom:210.186583pt;}
.y21{bottom:211.786582pt;}
.y83{bottom:217.866580pt;}
.y72{bottom:220.906578pt;}
.y48{bottom:223.466577pt;}
.y3e{bottom:237.866572pt;}
.y47{bottom:238.826571pt;}
.y20{bottom:239.306571pt;}
.y82{bottom:245.546568pt;}
.y71{bottom:248.586567pt;}
.y46{bottom:254.186565pt;}
.y3d{bottom:265.386561pt;}
.y1f{bottom:266.986560pt;}
.y45{bottom:269.546559pt;}
.y81{bottom:273.066557pt;}
.y70{bottom:276.106556pt;}
.y3c{bottom:293.066549pt;}
.y44{bottom:294.186549pt;}
.y1e{bottom:294.506549pt;}
.y80{bottom:300.746546pt;}
.y6f{bottom:303.786545pt;}
.y3b{bottom:320.586538pt;}
.y1d{bottom:322.186538pt;}
.y7f{bottom:328.266535pt;}
.y6e{bottom:331.306534pt;}
.y3a{bottom:348.266527pt;}
.y1c{bottom:349.706527pt;}
.y7e{bottom:355.946524pt;}
.y6d{bottom:358.986523pt;}
.y7d{bottom:374.506517pt;}
.y39{bottom:375.786516pt;}
.y1b{bottom:377.386516pt;}
.y6c{bottom:386.506512pt;}
.y7c{bottom:392.906510pt;}
.y38{bottom:403.466505pt;}
.y1a{bottom:404.906505pt;}
.y7b{bottom:410.506502pt;}
.y6b{bottom:414.186501pt;}
.y7a{bottom:425.866496pt;}
.y37{bottom:430.986494pt;}
.y19{bottom:432.586494pt;}
.y79{bottom:441.226490pt;}
.y6a{bottom:441.706490pt;}
.y36{bottom:456.586484pt;}
.y18{bottom:460.106483pt;}
.y69{bottom:469.386479pt;}
.y35{bottom:471.946478pt;}
.y34{bottom:487.306472pt;}
.y17{bottom:487.786472pt;}
.y68{bottom:496.906468pt;}
.y33{bottom:502.506466pt;}
.y16{bottom:515.306461pt;}
.y32{bottom:517.866460pt;}
.y67{bottom:524.586457pt;}
.y31{bottom:533.226453pt;}
.y15{bottom:542.986449pt;}
.y30{bottom:548.586447pt;}
.y66{bottom:552.106446pt;}
.y2f{bottom:563.946441pt;}
.y14{bottom:570.506438pt;}
.y2e{bottom:579.306435pt;}
.y65{bottom:579.786435pt;}
.y2d{bottom:594.506429pt;}
.y13{bottom:598.186427pt;}
.y64{bottom:607.306424pt;}
.y2c{bottom:609.866423pt;}
.y2b{bottom:625.226417pt;}
.y77{bottom:625.386417pt;}
.y12{bottom:625.706416pt;}
.y63{bottom:634.986413pt;}
.y2a{bottom:640.586410pt;}
.y11{bottom:653.386405pt;}
.y29{bottom:655.946404pt;}
.y62{bottom:662.506402pt;}
.y28{bottom:680.586394pt;}
.y10{bottom:680.906394pt;}
.y61{bottom:690.186391pt;}
.y88{bottom:708.266383pt;}
.yf{bottom:708.586383pt;}
.y60{bottom:717.706380pt;}
.ye{bottom:736.106372pt;}
.y5f{bottom:745.386369pt;}
.yd{bottom:763.786361pt;}
.y5e{bottom:772.906358pt;}
.y89{bottom:790.986350pt;}
.yc{bottom:791.306350pt;}
.y5d{bottom:800.586346pt;}
.yb{bottom:818.986339pt;}
.y8a{bottom:819.146339pt;}
.y5c{bottom:828.106335pt;}
.ya{bottom:846.506328pt;}
.y5b{bottom:855.786324pt;}
.y9{bottom:874.186317pt;}
.y5a{bottom:874.346317pt;}
.y59{bottom:891.946310pt;}
.y8{bottom:901.706306pt;}
.y58{bottom:907.306304pt;}
.y57{bottom:922.666298pt;}
.y7{bottom:929.386295pt;}
.y56{bottom:938.026291pt;}
.y55{bottom:953.386285pt;}
.y6{bottom:956.906284pt;}
.y54{bottom:968.746279pt;}
.y53{bottom:983.946273pt;}
.y5{bottom:984.266273pt;}
.y27{bottom:984.586273pt;}
.y52{bottom:999.306267pt;}
.y4{bottom:1011.786262pt;}
.y26{bottom:1012.106262pt;}
.y51{bottom:1014.666261pt;}
.h2{height:18.720000pt;}
.h1{height:44.718732pt;}
.h5{height:52.134354pt;}
.h6{height:57.787477pt;}
.h4{height:62.812475pt;}
.h3{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:119.999952pt;}
.x13{left:167.999933pt;}
.x3{left:178.239929pt;}
.x4{left:231.360148pt;}
.x28{left:268.159893pt;}
.x29{left:298.079881pt;}
.x2c{left:360.479801pt;}
.x1f{left:362.239750pt;}
.x20{left:364.800976pt;}
.xc{left:373.439953pt;}
.x15{left:396.959866pt;}
.x8{left:400.479863pt;}
.x34{left:406.718974pt;}
.x33{left:418.559694pt;}
.xa{left:423.679734pt;}
.x17{left:431.200283pt;}
.x2a{left:434.399823pt;}
.x2e{left:436.319443pt;}
.x30{left:444.799429pt;}
.x1d{left:450.399110pt;}
.x11{left:451.520471pt;}
.x24{left:453.121612pt;}
.x19{left:460.800338pt;}
.x22{left:463.040847pt;}
.x2d{left:465.119470pt;}
.x18{left:466.240341pt;}
.x14{left:469.919812pt;}
.x1e{left:472.479136pt;}
.x1c{left:479.679110pt;}
.xd{left:487.360584pt;}
.x7{left:489.279804pt;}
.x2b{left:501.439808pt;}
.x32{left:505.119679pt;}
.xf{left:506.240564pt;}
.x10{left:512.160524pt;}
.xe{left:514.720564pt;}
.x25{left:524.321573pt;}
.x6{left:532.640247pt;}
.x12{left:537.760519pt;}
.x5{left:547.200179pt;}
.x2f{left:548.959394pt;}
.x36{left:560.639320pt;}
.x35{left:564.479320pt;}
.xb{left:581.440080pt;}
.x16{left:583.999678pt;}
.x37{left:587.679363pt;}
.x9{left:591.039511pt;}
.x21{left:592.480870pt;}
.x23{left:603.681051pt;}
.x31{left:622.239677pt;}
.x1a{left:648.159741pt;}
.x1b{left:652.159739pt;}
.x2{left:689.760000pt;}
.x26{left:699.999720pt;}
.x27{left:703.839718pt;}
}




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