
    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_98e7a20cbfd33684efd78394.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_6f7af6c36d7595eb0be16260.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fa424471c78ea3356e9409aa.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ccd94b6392e7cebb02b42ea7.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.677336px;}
.ls2{letter-spacing:195.917135px;}
.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;}
}
.ws1{word-spacing:-16.613273px;}
.ws0{word-spacing:-10.808636px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-2.081476px;}
._1{margin-left:-1.069997px;}
._0{width:1.020440px;}
._2{width:2.601667px;}
._6{width:4.232070px;}
._4{width:179.303767px;}
._5{width:195.917106px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs1{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y75{bottom:111.359955px;}
.y82{bottom:111.360255px;}
.y63{bottom:111.539955px;}
.ya7{bottom:113.159955px;}
.y34{bottom:125.399950px;}
.y74{bottom:133.859946px;}
.y81{bottom:133.860246px;}
.y62{bottom:134.039946px;}
.ya6{bottom:135.479946px;}
.y33{bottom:147.719941px;}
.y73{bottom:156.179938px;}
.y61{bottom:156.359937px;}
.ya5{bottom:157.979937px;}
.y32{bottom:170.219932px;}
.y72{bottom:178.679929px;}
.y60{bottom:178.859928px;}
.ya4{bottom:180.479928px;}
.y31{bottom:192.719923px;}
.y71{bottom:201.179920px;}
.y5f{bottom:201.359919px;}
.ya3{bottom:202.799919px;}
.y30{bottom:215.039914px;}
.y70{bottom:223.499911px;}
.y5e{bottom:223.679911px;}
.ya2{bottom:225.299910px;}
.y2f{bottom:237.539905px;}
.y6f{bottom:245.999902px;}
.y5d{bottom:246.179902px;}
.ya1{bottom:247.619901px;}
.y2e{bottom:259.859896px;}
.y6e{bottom:268.319893px;}
.y5c{bottom:268.499893px;}
.ya0{bottom:270.119892px;}
.y2d{bottom:282.359887px;}
.y6d{bottom:290.819884px;}
.y5b{bottom:290.999884px;}
.y9f{bottom:292.439883px;}
.y2c{bottom:304.679878px;}
.ya9{bottom:310.799876px;}
.y7c{bottom:313.139875px;}
.y5a{bottom:313.319875px;}
.y9e{bottom:314.939874px;}
.y2b{bottom:327.179869px;}
.y59{bottom:335.639866px;}
.ya8{bottom:335.819866px;}
.y9d{bottom:337.439865px;}
.y2a{bottom:349.679860px;}
.y6c{bottom:358.139857px;}
.y58{bottom:358.319857px;}
.y9c{bottom:359.759856px;}
.y29{bottom:371.999851px;}
.y6b{bottom:380.459848px;}
.y57{bottom:380.639848px;}
.y9b{bottom:382.259847px;}
.y28{bottom:394.499842px;}
.y6a{bottom:402.959839px;}
.y56{bottom:403.139839px;}
.y9a{bottom:404.579838px;}
.y27{bottom:416.819833px;}
.y69{bottom:425.279830px;}
.y55{bottom:425.459830px;}
.y99{bottom:427.079829px;}
.y26{bottom:439.319824px;}
.y54{bottom:447.779821px;}
.y98{bottom:449.399820px;}
.y25{bottom:461.639815px;}
.y53{bottom:470.099812px;}
.y97{bottom:471.899811px;}
.y24{bottom:484.139806px;}
.y52{bottom:492.599803px;}
.y96{bottom:494.399802px;}
.y23{bottom:506.639797px;}
.y68{bottom:515.099794px;}
.y51{bottom:515.279794px;}
.y95{bottom:516.719793px;}
.y22{bottom:528.959788px;}
.y50{bottom:537.419785px;}
.y94{bottom:539.219784px;}
.y21{bottom:551.459779px;}
.y67{bottom:559.919776px;}
.y4f{bottom:560.099776px;}
.y93{bottom:561.539775px;}
.y20{bottom:573.779770px;}
.y4e{bottom:582.239767px;}
.y7d{bottom:582.419767px;}
.y92{bottom:584.039766px;}
.y1f{bottom:596.279761px;}
.y91{bottom:601.319759px;}
.y4d{bottom:604.739758px;}
.y90{bottom:618.419753px;}
.y1e{bottom:618.599753px;}
.y4c{bottom:627.059749px;}
.y8f{bottom:640.919744px;}
.y1d{bottom:641.099744px;}
.y4b{bottom:649.559740px;}
.y8e{bottom:663.419735px;}
.y1c{bottom:663.599735px;}
.y4a{bottom:672.059731px;}
.y8d{bottom:685.739726px;}
.y1b{bottom:685.919726px;}
.y49{bottom:694.379722px;}
.y80{bottom:694.559722px;}
.y1a{bottom:708.239717px;}
.y48{bottom:716.879713px;}
.y7f{bottom:717.059713px;}
.y19{bottom:730.559708px;}
.y47{bottom:739.199704px;}
.y7e{bottom:739.379704px;}
.y18{bottom:753.059699px;}
.y66{bottom:761.699695px;}
.y46{bottom:761.879695px;}
.y17{bottom:775.559690px;}
.y45{bottom:784.019686px;}
.y16{bottom:797.879681px;}
.y44{bottom:806.519677px;}
.y8c{bottom:820.379672px;}
.y15{bottom:820.559672px;}
.y43{bottom:829.019668px;}
.y13{bottom:842.699663px;}
.y14{bottom:850.259660px;}
.y42{bottom:851.339659px;}
.y12{bottom:865.199654px;}
.y11{bottom:872.759651px;}
.y41{bottom:873.839650px;}
.y10{bottom:887.519645px;}
.yf{bottom:895.079642px;}
.y40{bottom:896.159642px;}
.ye{bottom:910.019636px;}
.yd{bottom:917.579633px;}
.y3f{bottom:918.659633px;}
.y8b{bottom:932.519627px;}
.yc{bottom:940.079624px;}
.y3e{bottom:940.979624px;}
.y8a{bottom:954.839618px;}
.yb{bottom:962.399615px;}
.y3d{bottom:963.479615px;}
.y9{bottom:977.339609px;}
.ya{bottom:984.899606px;}
.y3c{bottom:985.979606px;}
.y8{bottom:999.659600px;}
.y7{bottom:1007.219597px;}
.y65{bottom:1008.299597px;}
.y3b{bottom:1008.479597px;}
.y89{bottom:1022.159591px;}
.y6{bottom:1022.339591px;}
.y64{bottom:1030.799588px;}
.y3a{bottom:1030.979588px;}
.y88{bottom:1039.439584px;}
.y5{bottom:1044.659582px;}
.y7b{bottom:1053.119579px;}
.y39{bottom:1053.299579px;}
.y87{bottom:1056.539577px;}
.y4{bottom:1067.159573px;}
.y86{bottom:1073.819570px;}
.y7a{bottom:1075.619570px;}
.y38{bottom:1075.799570px;}
.y3{bottom:1089.659564px;}
.y85{bottom:1091.099564px;}
.y78{bottom:1097.939561px;}
.y37{bottom:1098.119561px;}
.y79{bottom:1105.499558px;}
.y84{bottom:1108.379557px;}
.y2{bottom:1111.979555px;}
.y77{bottom:1120.439552px;}
.y36{bottom:1120.619552px;}
.y83{bottom:1125.659550px;}
.y1{bottom:1140.059544px;}
.y76{bottom:1142.939543px;}
.y35{bottom:1143.119543px;}
.h3{height:40.550609px;}
.h2{height:62.327788px;}
.h4{height:70.664034px;}
.h1{height:72.562471px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.199958px;}
.xd{left:114.299954px;}
.x2{left:115.379954px;}
.xf{left:159.299936px;}
.xe{left:162.719935px;}
.xb{left:197.639921px;}
.xc{left:203.219919px;}
.x3{left:298.799880px;}
.x4{left:304.199878px;}
.x5{left:429.119828px;}
.x6{left:434.699826px;}
.x10{left:533.699787px;}
.x11{left:544.679782px;}
.x7{left:600.659760px;}
.x8{left:606.059758px;}
.x9{left:724.319710px;}
.xa{left:729.899708px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.602077pt;}
.ls2{letter-spacing:174.148565pt;}
.ws1{word-spacing:-14.767354pt;}
.ws0{word-spacing:-9.607676pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-1.850201pt;}
._1{margin-left:-0.951108pt;}
._0{width:0.907058pt;}
._2{width:2.312593pt;}
._6{width:3.761840pt;}
._4{width:159.381126pt;}
._5{width:174.148538pt;}
.fs2{font-size:34.559986pt;}
.fs1{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:98.986627pt;}
.y82{bottom:98.986894pt;}
.y63{bottom:99.146627pt;}
.ya7{bottom:100.586626pt;}
.y34{bottom:111.466622pt;}
.y74{bottom:118.986619pt;}
.y81{bottom:118.986886pt;}
.y62{bottom:119.146619pt;}
.ya6{bottom:120.426618pt;}
.y33{bottom:131.306614pt;}
.y73{bottom:138.826611pt;}
.y61{bottom:138.986611pt;}
.ya5{bottom:140.426610pt;}
.y32{bottom:151.306606pt;}
.y72{bottom:158.826603pt;}
.y60{bottom:158.986603pt;}
.ya4{bottom:160.426602pt;}
.y31{bottom:171.306598pt;}
.y71{bottom:178.826595pt;}
.y5f{bottom:178.986595pt;}
.ya3{bottom:180.266595pt;}
.y30{bottom:191.146590pt;}
.y70{bottom:198.666587pt;}
.y5e{bottom:198.826587pt;}
.ya2{bottom:200.266587pt;}
.y2f{bottom:211.146582pt;}
.y6f{bottom:218.666579pt;}
.y5d{bottom:218.826579pt;}
.ya1{bottom:220.106579pt;}
.y2e{bottom:230.986574pt;}
.y6e{bottom:238.506571pt;}
.y5c{bottom:238.666571pt;}
.ya0{bottom:240.106571pt;}
.y2d{bottom:250.986566pt;}
.y6d{bottom:258.506563pt;}
.y5b{bottom:258.666563pt;}
.y9f{bottom:259.946563pt;}
.y2c{bottom:270.826558pt;}
.ya9{bottom:276.266556pt;}
.y7c{bottom:278.346555pt;}
.y5a{bottom:278.506555pt;}
.y9e{bottom:279.946555pt;}
.y2b{bottom:290.826550pt;}
.y59{bottom:298.346547pt;}
.ya8{bottom:298.506547pt;}
.y9d{bottom:299.946547pt;}
.y2a{bottom:310.826542pt;}
.y6c{bottom:318.346539pt;}
.y58{bottom:318.506539pt;}
.y9c{bottom:319.786539pt;}
.y29{bottom:330.666534pt;}
.y6b{bottom:338.186531pt;}
.y57{bottom:338.346531pt;}
.y9b{bottom:339.786531pt;}
.y28{bottom:350.666526pt;}
.y6a{bottom:358.186523pt;}
.y56{bottom:358.346523pt;}
.y9a{bottom:359.626523pt;}
.y27{bottom:370.506518pt;}
.y69{bottom:378.026515pt;}
.y55{bottom:378.186515pt;}
.y99{bottom:379.626515pt;}
.y26{bottom:390.506510pt;}
.y54{bottom:398.026507pt;}
.y98{bottom:399.466507pt;}
.y25{bottom:410.346503pt;}
.y53{bottom:417.866500pt;}
.y97{bottom:419.466499pt;}
.y24{bottom:430.346495pt;}
.y52{bottom:437.866492pt;}
.y96{bottom:439.466491pt;}
.y23{bottom:450.346487pt;}
.y68{bottom:457.866484pt;}
.y51{bottom:458.026483pt;}
.y95{bottom:459.306483pt;}
.y22{bottom:470.186479pt;}
.y50{bottom:477.706476pt;}
.y94{bottom:479.306475pt;}
.y21{bottom:490.186471pt;}
.y67{bottom:497.706468pt;}
.y4f{bottom:497.866468pt;}
.y93{bottom:499.146467pt;}
.y20{bottom:510.026463pt;}
.y4e{bottom:517.546460pt;}
.y7d{bottom:517.706460pt;}
.y92{bottom:519.146459pt;}
.y1f{bottom:530.026455pt;}
.y91{bottom:534.506453pt;}
.y4d{bottom:537.546452pt;}
.y90{bottom:549.706447pt;}
.y1e{bottom:549.866447pt;}
.y4c{bottom:557.386444pt;}
.y8f{bottom:569.706439pt;}
.y1d{bottom:569.866439pt;}
.y4b{bottom:577.386436pt;}
.y8e{bottom:589.706431pt;}
.y1c{bottom:589.866431pt;}
.y4a{bottom:597.386428pt;}
.y8d{bottom:609.546423pt;}
.y1b{bottom:609.706423pt;}
.y49{bottom:617.226420pt;}
.y80{bottom:617.386420pt;}
.y1a{bottom:629.546415pt;}
.y48{bottom:637.226412pt;}
.y7f{bottom:637.386412pt;}
.y19{bottom:649.386407pt;}
.y47{bottom:657.066404pt;}
.y7e{bottom:657.226404pt;}
.y18{bottom:669.386399pt;}
.y66{bottom:677.066396pt;}
.y46{bottom:677.226396pt;}
.y17{bottom:689.386391pt;}
.y45{bottom:696.906388pt;}
.y16{bottom:709.226383pt;}
.y44{bottom:716.906380pt;}
.y8c{bottom:729.226375pt;}
.y15{bottom:729.386375pt;}
.y43{bottom:736.906372pt;}
.y13{bottom:749.066367pt;}
.y14{bottom:755.786364pt;}
.y42{bottom:756.746364pt;}
.y12{bottom:769.066359pt;}
.y11{bottom:775.786356pt;}
.y41{bottom:776.746356pt;}
.y10{bottom:788.906351pt;}
.yf{bottom:795.626348pt;}
.y40{bottom:796.586348pt;}
.ye{bottom:808.906343pt;}
.yd{bottom:815.626340pt;}
.y3f{bottom:816.586340pt;}
.y8b{bottom:828.906335pt;}
.yc{bottom:835.626332pt;}
.y3e{bottom:836.426332pt;}
.y8a{bottom:848.746327pt;}
.yb{bottom:855.466324pt;}
.y3d{bottom:856.426324pt;}
.y9{bottom:868.746319pt;}
.ya{bottom:875.466316pt;}
.y3c{bottom:876.426316pt;}
.y8{bottom:888.586311pt;}
.y7{bottom:895.306309pt;}
.y65{bottom:896.266308pt;}
.y3b{bottom:896.426308pt;}
.y89{bottom:908.586303pt;}
.y6{bottom:908.746303pt;}
.y64{bottom:916.266300pt;}
.y3a{bottom:916.426300pt;}
.y88{bottom:923.946297pt;}
.y5{bottom:928.586295pt;}
.y7b{bottom:936.106292pt;}
.y39{bottom:936.266292pt;}
.y87{bottom:939.146291pt;}
.y4{bottom:948.586287pt;}
.y86{bottom:954.506285pt;}
.y7a{bottom:956.106284pt;}
.y38{bottom:956.266284pt;}
.y3{bottom:968.586279pt;}
.y85{bottom:969.866279pt;}
.y78{bottom:975.946276pt;}
.y37{bottom:976.106276pt;}
.y79{bottom:982.666274pt;}
.y84{bottom:985.226273pt;}
.y2{bottom:988.426271pt;}
.y77{bottom:995.946268pt;}
.y36{bottom:996.106268pt;}
.y83{bottom:1000.586266pt;}
.y1{bottom:1013.386261pt;}
.y76{bottom:1015.946260pt;}
.y35{bottom:1016.106260pt;}
.h3{height:36.044986pt;}
.h2{height:55.402478pt;}
.h4{height:62.812475pt;}
.h1{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.399962pt;}
.xd{left:101.599959pt;}
.x2{left:102.559959pt;}
.xf{left:141.599943pt;}
.xe{left:144.639942pt;}
.xb{left:175.679930pt;}
.xc{left:180.639928pt;}
.x3{left:265.599894pt;}
.x4{left:270.399892pt;}
.x5{left:381.439847pt;}
.x6{left:386.399845pt;}
.x10{left:474.399810pt;}
.x11{left:484.159806pt;}
.x7{left:533.919786pt;}
.x8{left:538.719785pt;}
.x9{left:643.839742pt;}
.xa{left:648.799740pt;}
}




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