
    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_34ecabab1e214f03dbd6bb07.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_c37c194cd805e75b0b6615b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_91ca08196f969ff37a62847f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_bd9f2628cc34f477d3fb2a29.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_a64d2488eb4b10b849f3d6c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_07cee1aa11984d1a95d09ce1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3a2a071735052475bbe6a9b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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:ff8;src:url('chunks/assets/font_5cc2e7df26471ea57705a630.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-49.500001px;}
.ws0{word-spacing:-18.336914px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-7.786509px;}
._7{margin-left:-5.104398px;}
._11{margin-left:-4.033953px;}
._2{margin-left:-2.701774px;}
._1{margin-left:-1.016128px;}
._8{width:1.990335px;}
._3{width:4.031144px;}
._4{width:5.234535px;}
._5{width:8.906203px;}
._6{width:13.372349px;}
._f{width:17.214966px;}
._a{width:22.101069px;}
._15{width:23.404055px;}
._9{width:26.900985px;}
._10{width:31.322862px;}
._14{width:35.843649px;}
._b{width:40.437466px;}
._13{width:44.478872px;}
._12{width:49.372305px;}
._e{width:62.801945px;}
._d{width:67.291619px;}
._c{width:80.908809px;}
._17{width:112.171864px;}
._16{width:131.319090px;}
._18{width:196.989257px;}
._19{width:198.336914px;}
.fc4{color:transparent;}
.fc3{color:rgb(17,85,204);}
.fc5{color:rgb(102,102,102);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(244,125,32);}
.fc0{color:rgb(2,52,82);}
.fs3{font-size:59.999999px;}
.fs2{font-size:66.000002px;}
.fs5{font-size:78.000003px;}
.fs1{font-size:83.999997px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:167.999994px;}
.y0{bottom:0.000000px;}
.y72{bottom:8.648804px;}
.y2a{bottom:8.648987px;}
.y71{bottom:36.095948px;}
.y29{bottom:36.096314px;}
.y70{bottom:57.915528px;}
.y28{bottom:57.915711px;}
.y26{bottom:59.967584px;}
.y6e{bottom:59.967779px;}
.y96{bottom:111.787357px;}
.y95{bottom:133.606934px;}
.y6d{bottom:140.563470px;}
.y25{bottom:150.064826px;}
.y52{bottom:151.083794px;}
.y6c{bottom:162.383047px;}
.y51{bottom:172.903191px;}
.y94{bottom:173.426144px;}
.y24{bottom:173.781562px;}
.y6b{bottom:184.202264px;}
.y50{bottom:194.722588px;}
.y23{bottom:197.498298px;}
.y6a{bottom:206.021851px;}
.y93{bottom:213.245369px;}
.y22{bottom:221.215034px;}
.y69{bottom:227.841059px;}
.y4f{bottom:236.439337px;}
.y21{bottom:247.179020px;}
.y68{bottom:249.660645px;}
.y92{bottom:253.064939px;}
.y4e{bottom:260.156073px;}
.y67{bottom:271.479862px;}
.y91{bottom:274.884528px;}
.y20{bottom:275.116694px;}
.y4d{bottom:283.872809px;}
.y66{bottom:293.299439px;}
.y90{bottom:296.703736px;}
.y4c{bottom:309.836795px;}
.y1f{bottom:314.359505px;}
.y8f{bottom:318.522944px;}
.yb4{bottom:331.478759px;}
.y65{bottom:333.118649px;}
.y8e{bottom:340.342538px;}
.yb3{bottom:353.298344px;}
.y4b{bottom:353.300535px;}
.y8d{bottom:362.162116px;}
.y1e{bottom:366.564144px;}
.y64{bottom:372.938234px;}
.y4a{bottom:373.136350px;}
.yb2{bottom:375.117554px;}
.y8c{bottom:383.981324px;}
.y1d{bottom:388.383542px;}
.y63{bottom:394.757444px;}
.yb1{bottom:396.936764px;}
.y8b{bottom:405.800545px;}
.y1c{bottom:410.202939px;}
.y49{bottom:411.548763px;}
.y62{bottom:416.577029px;}
.yb0{bottom:418.756349px;}
.y8a{bottom:427.620127px;}
.y1b{bottom:432.022337px;}
.y48{bottom:433.368160px;}
.yaf{bottom:442.472895px;}
.y89{bottom:449.439704px;}
.y1a{bottom:453.841734px;}
.y47{bottom:455.187558px;}
.y61{bottom:456.396238px;}
.yae{bottom:466.189820px;}
.y19{bottom:475.661131px;}
.y46{bottom:477.006955px;}
.y88{bottom:488.682130px;}
.yad{bottom:489.906732px;}
.y60{bottom:496.215448px;}
.y18{bottom:497.480528px;}
.y45{bottom:498.826352px;}
.yac{bottom:513.623283px;}
.y17{bottom:519.299925px;}
.y44{bottom:520.645749px;}
.y87{bottom:527.094720px;}
.yab{bottom:537.339839px;}
.y5f{bottom:539.035036px;}
.y16{bottom:541.119322px;}
.y43{bottom:542.465146px;}
.y5e{bottom:560.854244px;}
.y15{bottom:562.938719px;}
.yaa{bottom:563.304200px;}
.y42{bottom:564.284543px;}
.y5d{bottom:582.673821px;}
.y14{bottom:584.758116px;}
.y41{bottom:586.103940px;}
.ya9{bottom:589.344359px;}
.y5c{bottom:604.493038px;}
.y13{bottom:606.577513px;}
.y40{bottom:607.923337px;}
.ya8{bottom:629.163569px;}
.y3f{bottom:629.742734px;}
.y5b{bottom:646.209963px;}
.y12{bottom:648.294248px;}
.y3e{bottom:651.562139px;}
.ya7{bottom:668.983156px;}
.y5a{bottom:669.926519px;}
.y11{bottom:672.010984px;}
.y3d{bottom:673.381530px;}
.ya6{bottom:690.802728px;}
.y3c{bottom:695.200927px;}
.y10{bottom:695.727720px;}
.y59{bottom:695.890505px;}
.y86{bottom:705.562127px;}
.ya5{bottom:712.621941px;}
.y3b{bottom:717.020324px;}
.yf{bottom:719.444456px;}
.y58{bottom:721.931024px;}
.y85{bottom:727.381343px;}
.ya4{bottom:734.441158px;}
.ye{bottom:743.161192px;}
.y57{bottom:743.173835px;}
.y84{bottom:749.200921px;}
.y3a{bottom:756.839729px;}
.y56{bottom:763.009650px;}
.yd{bottom:766.877928px;}
.y83{bottom:771.020507px;}
.ya3{bottom:776.158087px;}
.y55{bottom:782.845465px;}
.yc{bottom:790.594664px;}
.y82{bottom:792.839715px;}
.y39{bottom:796.659119px;}
.ya2{bottom:799.875003px;}
.y54{bottom:802.681270px;}
.y81{bottom:814.658932px;}
.yb{bottom:816.558650px;}
.y38{bottom:818.478509px;}
.ya1{bottom:823.591559px;}
.y80{bottom:836.478509px;}
.y37{bottom:840.297915px;}
.y53{bottom:841.093685px;}
.ya{bottom:846.743585px;}
.ya0{bottom:849.555545px;}
.y7f{bottom:858.298096px;}
.y36{bottom:862.117312px;}
.y9{bottom:872.783932px;}
.y9f{bottom:875.595704px;}
.y7e{bottom:880.117304px;}
.y35{bottom:883.936709px;}
.y8{bottom:894.603329px;}
.y7d{bottom:901.936525px;}
.y9e{bottom:915.415289px;}
.y7{bottom:916.422734px;}
.y34{bottom:923.756103px;}
.y7c{bottom:923.756107px;}
.y9d{bottom:937.234867px;}
.y6{bottom:938.242124px;}
.y33{bottom:945.575500px;}
.y7b{bottom:945.575684px;}
.y9c{bottom:959.054084px;}
.y5{bottom:960.061529px;}
.y7a{bottom:967.394895px;}
.y32{bottom:967.394898px;}
.y9b{bottom:980.873294px;}
.y4{bottom:986.025512px;}
.y79{bottom:989.214112px;}
.y31{bottom:989.214294px;}
.y9a{bottom:1002.692870px;}
.y30{bottom:1011.033692px;}
.y78{bottom:1011.033698px;}
.y2f{bottom:1032.853088px;}
.y77{bottom:1032.853270px;}
.y3{bottom:1038.710448px;}
.y99{bottom:1044.409428px;}
.y76{bottom:1054.672483px;}
.y2e{bottom:1054.672486px;}
.y2{bottom:1067.308592px;}
.y98{bottom:1068.126344px;}
.y75{bottom:1076.491700px;}
.y2d{bottom:1076.491882px;}
.y97{bottom:1094.090331px;}
.y2c{bottom:1098.311280px;}
.y74{bottom:1098.311283px;}
.y1{bottom:1115.604491px;}
.y2b{bottom:1120.130676px;}
.y73{bottom:1120.130859px;}
.y27{bottom:1135.607483px;}
.y6f{bottom:1135.607665px;}
.h9{height:43.989259px;}
.h5{height:48.049806px;}
.hb{height:48.114259px;}
.h4{height:53.789061px;}
.h3{height:59.167970px;}
.h2{height:61.154295px;}
.h8{height:80.683594px;}
.h6{height:107.625000px;}
.h1{height:122.308589px;}
.ha{height:127.392335px;}
.h7{height:127.392517px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x4{left:108.000000px;}
.x7{left:135.000000px;}
.x9{left:153.000000px;}
.xf{left:154.305613px;}
.x8{left:162.000000px;}
.x3{left:193.690896px;}
.x2{left:208.404387px;}
.x1{left:297.119081px;}
.x5{left:432.000000px;}
.xa{left:487.092904px;}
.xb{left:509.185294px;}
.xd{left:772.875000px;}
.x6{left:775.743390px;}
.xe{left:780.750000px;}
.xc{left:785.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-44.000001pt;}
.ws0{word-spacing:-16.299479pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-6.921342pt;}
._7{margin-left:-4.537243pt;}
._11{margin-left:-3.585736pt;}
._2{margin-left:-2.401577pt;}
._1{margin-left:-0.903225pt;}
._8{width:1.769186pt;}
._3{width:3.583239pt;}
._4{width:4.652920pt;}
._5{width:7.916625pt;}
._6{width:11.886533pt;}
._f{width:15.302192pt;}
._a{width:19.645394pt;}
._15{width:20.803604pt;}
._9{width:23.911987pt;}
._10{width:27.842544pt;}
._14{width:31.861021pt;}
._b{width:35.944414pt;}
._13{width:39.536775pt;}
._12{width:43.886493pt;}
._e{width:55.823951pt;}
._d{width:59.814773pt;}
._c{width:71.918941pt;}
._17{width:99.708324pt;}
._16{width:116.728080pt;}
._18{width:175.101562pt;}
._19{width:176.299479pt;}
.fs3{font-size:53.333332pt;}
.fs2{font-size:58.666668pt;}
.fs5{font-size:69.333336pt;}
.fs1{font-size:74.666664pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:149.333328pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:7.687826pt;}
.y2a{bottom:7.687989pt;}
.y71{bottom:32.085287pt;}
.y29{bottom:32.085612pt;}
.y70{bottom:51.480469pt;}
.y28{bottom:51.480632pt;}
.y26{bottom:53.304519pt;}
.y6e{bottom:53.304692pt;}
.y96{bottom:99.366540pt;}
.y95{bottom:118.761719pt;}
.y6d{bottom:124.945306pt;}
.y25{bottom:133.390956pt;}
.y52{bottom:134.296705pt;}
.y6c{bottom:144.340486pt;}
.y51{bottom:153.691725pt;}
.y94{bottom:154.156572pt;}
.y24{bottom:154.472499pt;}
.y6b{bottom:163.735345pt;}
.y50{bottom:173.086745pt;}
.y23{bottom:175.554042pt;}
.y6a{bottom:183.130534pt;}
.y93{bottom:189.551439pt;}
.y22{bottom:196.635585pt;}
.y69{bottom:202.525386pt;}
.y4f{bottom:210.168299pt;}
.y21{bottom:219.714684pt;}
.y68{bottom:221.920573pt;}
.y92{bottom:224.946613pt;}
.y4e{bottom:231.249842pt;}
.y67{bottom:241.315433pt;}
.y91{bottom:244.341803pt;}
.y20{bottom:244.548172pt;}
.y4d{bottom:252.331385pt;}
.y66{bottom:260.710612pt;}
.y90{bottom:263.736655pt;}
.y4c{bottom:275.410484pt;}
.y1f{bottom:279.430671pt;}
.y8f{bottom:283.131506pt;}
.yb4{bottom:294.647785pt;}
.y65{bottom:296.105465pt;}
.y8e{bottom:302.526701pt;}
.yb3{bottom:314.042972pt;}
.y4b{bottom:314.044920pt;}
.y8d{bottom:321.921881pt;}
.y1e{bottom:325.834795pt;}
.y64{bottom:331.500652pt;}
.y4a{bottom:331.676756pt;}
.yb2{bottom:333.437825pt;}
.y8c{bottom:341.316733pt;}
.y1d{bottom:345.229815pt;}
.y63{bottom:350.895505pt;}
.yb1{bottom:352.832679pt;}
.y8b{bottom:360.711596pt;}
.y1c{bottom:364.624835pt;}
.y49{bottom:365.821123pt;}
.y62{bottom:370.290692pt;}
.yb0{bottom:372.227865pt;}
.y8a{bottom:380.106780pt;}
.y1b{bottom:384.019855pt;}
.y48{bottom:385.216143pt;}
.yaf{bottom:393.309240pt;}
.y89{bottom:399.501959pt;}
.y1a{bottom:403.414875pt;}
.y47{bottom:404.611163pt;}
.y61{bottom:405.685545pt;}
.yae{bottom:414.390951pt;}
.y19{bottom:422.809894pt;}
.y46{bottom:424.006183pt;}
.y88{bottom:434.384116pt;}
.yad{bottom:435.472651pt;}
.y60{bottom:441.080398pt;}
.y18{bottom:442.204914pt;}
.y45{bottom:443.401202pt;}
.yac{bottom:456.554029pt;}
.y17{bottom:461.599933pt;}
.y44{bottom:462.796222pt;}
.y87{bottom:468.528640pt;}
.yab{bottom:477.635412pt;}
.y5f{bottom:479.142254pt;}
.y16{bottom:480.994953pt;}
.y43{bottom:482.191241pt;}
.y5e{bottom:498.537105pt;}
.y15{bottom:500.389972pt;}
.yaa{bottom:500.714844pt;}
.y42{bottom:501.586261pt;}
.y5d{bottom:517.932285pt;}
.y14{bottom:519.784992pt;}
.y41{bottom:520.981280pt;}
.ya9{bottom:523.861652pt;}
.y5c{bottom:537.327145pt;}
.y13{bottom:539.180011pt;}
.y40{bottom:540.376300pt;}
.ya8{bottom:559.256505pt;}
.y3f{bottom:559.771319pt;}
.y5b{bottom:574.408856pt;}
.y12{bottom:576.261554pt;}
.y3e{bottom:579.166345pt;}
.ya7{bottom:594.651694pt;}
.y5a{bottom:595.490239pt;}
.y11{bottom:597.343097pt;}
.y3d{bottom:598.561360pt;}
.ya6{bottom:614.046869pt;}
.y3c{bottom:617.956380pt;}
.y10{bottom:618.424640pt;}
.y59{bottom:618.569338pt;}
.y86{bottom:627.166335pt;}
.ya5{bottom:633.441725pt;}
.y3b{bottom:637.351399pt;}
.yf{bottom:639.506183pt;}
.y58{bottom:641.716465pt;}
.y85{bottom:646.561194pt;}
.ya4{bottom:652.836585pt;}
.ye{bottom:660.587726pt;}
.y57{bottom:660.598964pt;}
.y84{bottom:665.956374pt;}
.y3a{bottom:672.746425pt;}
.y56{bottom:678.230800pt;}
.yd{bottom:681.669269pt;}
.y83{bottom:685.351562pt;}
.ya3{bottom:689.918299pt;}
.y55{bottom:695.862636pt;}
.yc{bottom:702.750812pt;}
.y82{bottom:704.746413pt;}
.y39{bottom:708.141439pt;}
.ya2{bottom:711.000002pt;}
.y54{bottom:713.494463pt;}
.y81{bottom:724.141273pt;}
.yb{bottom:725.829911pt;}
.y38{bottom:727.536452pt;}
.ya1{bottom:732.081385pt;}
.y80{bottom:743.536452pt;}
.y37{bottom:746.931480pt;}
.y53{bottom:747.638831pt;}
.ya{bottom:752.660964pt;}
.ya0{bottom:755.160484pt;}
.y7f{bottom:762.931641pt;}
.y36{bottom:766.326500pt;}
.y9{bottom:775.807940pt;}
.y9f{bottom:778.307292pt;}
.y7e{bottom:782.326493pt;}
.y35{bottom:785.721519pt;}
.y8{bottom:795.202959pt;}
.y7d{bottom:801.721356pt;}
.y9e{bottom:813.702479pt;}
.y7{bottom:814.597985pt;}
.y34{bottom:821.116536pt;}
.y7c{bottom:821.116540pt;}
.y9d{bottom:833.097660pt;}
.y6{bottom:833.992999pt;}
.y33{bottom:840.511556pt;}
.y7b{bottom:840.511719pt;}
.y9c{bottom:852.492519pt;}
.y5{bottom:853.388025pt;}
.y7a{bottom:859.906574pt;}
.y32{bottom:859.906576pt;}
.y9b{bottom:871.887372pt;}
.y4{bottom:876.467122pt;}
.y79{bottom:879.301433pt;}
.y31{bottom:879.301595pt;}
.y9a{bottom:891.282551pt;}
.y30{bottom:898.696615pt;}
.y78{bottom:898.696621pt;}
.y2f{bottom:918.091634pt;}
.y77{bottom:918.091796pt;}
.y3{bottom:923.298176pt;}
.y99{bottom:928.363936pt;}
.y76{bottom:937.486652pt;}
.y2e{bottom:937.486654pt;}
.y2{bottom:948.718748pt;}
.y98{bottom:949.445639pt;}
.y75{bottom:956.881511pt;}
.y2d{bottom:956.881673pt;}
.y97{bottom:972.524739pt;}
.y2c{bottom:976.276693pt;}
.y74{bottom:976.276696pt;}
.y1{bottom:991.648436pt;}
.y2b{bottom:995.671712pt;}
.y73{bottom:995.671875pt;}
.y27{bottom:1009.428873pt;}
.y6f{bottom:1009.429036pt;}
.h9{height:39.101563pt;}
.h5{height:42.710938pt;}
.hb{height:42.768230pt;}
.h4{height:47.812499pt;}
.h3{height:52.593751pt;}
.h2{height:54.359373pt;}
.h8{height:71.718750pt;}
.h6{height:95.666667pt;}
.h1{height:108.718746pt;}
.ha{height:113.237631pt;}
.h7{height:113.237793pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x4{left:96.000000pt;}
.x7{left:120.000000pt;}
.x9{left:136.000000pt;}
.xf{left:137.160545pt;}
.x8{left:144.000000pt;}
.x3{left:172.169685pt;}
.x2{left:185.248344pt;}
.x1{left:264.105850pt;}
.x5{left:384.000000pt;}
.xa{left:432.971470pt;}
.xb{left:452.609150pt;}
.xd{left:687.000000pt;}
.x6{left:689.549680pt;}
.xe{left:694.000000pt;}
.xc{left:698.000000pt;}
}




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