
    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_19da7c6744d9f905ec902985.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_307eccb1227813c77e431a05.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_3a3f829a92ea2be025ef7a30.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6880871912d073c682a89f5e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_c160d34a2eaee9c18eafcb7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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);}
.v3{vertical-align:-27.360009px;}
.v5{vertical-align:-5.759996px;}
.v4{vertical-align:-2.880067px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759995px;}
.v2{vertical-align:27.360009px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.359109px;}
.ls0{letter-spacing:0.359114px;}
.ls4{letter-spacing:34.055251px;}
.ls3{letter-spacing:64.085852px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-59.762250px;}
.ws0{word-spacing:-18.000676px;}
.ws1{word-spacing:-12.060450px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.313040px;}
._0{width:1.206771px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs1{font-size:72.002705px;}
.fs0{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y46{bottom:127.260064px;}
.y24{bottom:135.540047px;}
.y67{bottom:143.280052px;}
.y45{bottom:169.020058px;}
.y23{bottom:177.300041px;}
.y66{bottom:185.040047px;}
.y22{bottom:198.000068px;}
.y44{bottom:210.600083px;}
.y21{bottom:218.700096px;}
.y65{bottom:226.800041px;}
.y43{bottom:231.300041px;}
.y20{bottom:239.400055px;}
.y64{bottom:247.500068px;}
.y8a{bottom:248.580093px;}
.y42{bottom:252.000068px;}
.y63{bottom:268.200096px;}
.y89{bottom:269.280052px;}
.y41{bottom:272.700096px;}
.y1f{bottom:280.980079px;}
.y88{bottom:289.980079px;}
.y40{bottom:293.400055px;}
.y62{bottom:309.780052px;}
.y87{bottom:310.680039px;}
.y1e{bottom:322.740074px;}
.y61{bottom:330.480079px;}
.y86{bottom:331.380066px;}
.y3f{bottom:335.160049px;}
.y1d{bottom:343.440033px;}
.y60{bottom:351.180039px;}
.y85{bottom:352.080093px;}
.y3e{bottom:355.860077px;}
.y1c{bottom:364.140060px;}
.y5f{bottom:371.880066px;}
.y84{bottom:372.780052px;}
.y1b{bottom:384.840088px;}
.y5e{bottom:392.580093px;}
.y83{bottom:393.480079px;}
.y3d{bottom:397.620072px;}
.y1a{bottom:405.540047px;}
.y5d{bottom:413.280052px;}
.y82{bottom:414.180039px;}
.y5c{bottom:433.980079px;}
.y81{bottom:434.880066px;}
.y3c{bottom:439.200096px;}
.y19{bottom:447.120072px;}
.y5b{bottom:454.680039px;}
.y80{bottom:455.580093px;}
.y3b{bottom:459.900055px;}
.y5a{bottom:475.380066px;}
.y7f{bottom:476.280052px;}
.y3a{bottom:480.600083px;}
.y18{bottom:488.880066px;}
.y59{bottom:496.080093px;}
.y7e{bottom:496.980079px;}
.y39{bottom:501.300041px;}
.y17{bottom:509.580093px;}
.y58{bottom:516.780052px;}
.y7d{bottom:517.680039px;}
.y38{bottom:522.000068px;}
.y37{bottom:542.700096px;}
.y16{bottom:551.340088px;}
.y57{bottom:558.540047px;}
.y7c{bottom:559.440033px;}
.y15{bottom:572.040047px;}
.y56{bottom:579.240074px;}
.y36{bottom:584.460091px;}
.y14{bottom:592.740074px;}
.y7b{bottom:601.020058px;}
.y35{bottom:605.160049px;}
.y13{bottom:613.440033px;}
.y55{bottom:620.820099px;}
.y7a{bottom:621.720085px;}
.y34{bottom:625.860077px;}
.y12{bottom:634.140060px;}
.y54{bottom:641.520058px;}
.y79{bottom:642.420043px;}
.y11{bottom:654.840088px;}
.y53{bottom:662.220085px;}
.y78{bottom:663.120072px;}
.y33{bottom:667.620072px;}
.y10{bottom:675.540047px;}
.y77{bottom:683.820099px;}
.yf{bottom:696.240074px;}
.y52{bottom:703.980079px;}
.y76{bottom:704.520058px;}
.y32{bottom:709.200061px;}
.ye{bottom:716.940067px;}
.y75{bottom:725.220051px;}
.y31{bottom:729.900055px;}
.yd{bottom:737.640060px;}
.y51{bottom:745.740074px;}
.y74{bottom:745.920078px;}
.y30{bottom:750.600083px;}
.y50{bottom:766.440067px;}
.y73{bottom:766.620072px;}
.y2f{bottom:771.300076px;}
.yc{bottom:779.220051px;}
.y4f{bottom:787.140060px;}
.y72{bottom:787.320065px;}
.y2e{bottom:792.000068px;}
.yb{bottom:799.920078px;}
.y4e{bottom:807.840054px;}
.y71{bottom:808.020058px;}
.ya{bottom:820.620072px;}
.y4d{bottom:828.540081px;}
.y70{bottom:828.720051px;}
.y2d{bottom:833.760064px;}
.y9{bottom:841.320065px;}
.y4c{bottom:849.240074px;}
.y6f{bottom:849.420078px;}
.y8{bottom:862.020058px;}
.y4b{bottom:869.940067px;}
.y6e{bottom:870.120072px;}
.y2c{bottom:875.340054px;}
.y7{bottom:882.720051px;}
.y4a{bottom:890.640060px;}
.y6d{bottom:890.820065px;}
.y49{bottom:911.340054px;}
.y2b{bottom:913.140060px;}
.y6{bottom:924.480079px;}
.y48{bottom:932.040081px;}
.y6c{bottom:932.580059px;}
.y5{bottom:966.240074px;}
.y47{bottom:973.620072px;}
.y6b{bottom:974.340054px;}
.y6a{bottom:995.040064px;}
.y4{bottom:1014.660067px;}
.y2a{bottom:1015.380066px;}
.y69{bottom:1015.740074px;}
.y68{bottom:1036.440067px;}
.y3{bottom:1049.580059px;}
.y29{bottom:1057.140060px;}
.y28{bottom:1077.840070px;}
.y2{bottom:1091.340070px;}
.y27{bottom:1098.540064px;}
.y26{bottom:1119.240066px;}
.y1{bottom:1134.360068px;}
.y25{bottom:1139.940067px;}
.h5{height:43.248020px;}
.h6{height:50.802689px;}
.h3{height:64.549300px;}
.h2{height:67.567579px;}
.h4{height:70.608029px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.959997px;}
.x3{left:111.959997px;}
.x4{left:138.959997px;}
.x1{left:300.600013px;}
.x5{left:328.860008px;}
@media print{
.v3{vertical-align:-24.320008pt;}
.v5{vertical-align:-5.119996pt;}
.v4{vertical-align:-2.560060pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.v2{vertical-align:24.320008pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.319208pt;}
.ls0{letter-spacing:0.319212pt;}
.ls4{letter-spacing:30.271334pt;}
.ls3{letter-spacing:56.965202pt;}
.ws3{word-spacing:-53.122000pt;}
.ws0{word-spacing:-16.000601pt;}
.ws1{word-spacing:-10.720400pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.167147pt;}
._0{width:1.072685pt;}
.fs2{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs1{font-size:64.002404pt;}
.fs0{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:113.120057pt;}
.y24{bottom:120.480042pt;}
.y67{bottom:127.360047pt;}
.y45{bottom:150.240052pt;}
.y23{bottom:157.600037pt;}
.y66{bottom:164.480042pt;}
.y22{bottom:176.000061pt;}
.y44{bottom:187.200074pt;}
.y21{bottom:194.400086pt;}
.y65{bottom:201.600037pt;}
.y43{bottom:205.600037pt;}
.y20{bottom:212.800049pt;}
.y64{bottom:220.000061pt;}
.y8a{bottom:220.960083pt;}
.y42{bottom:224.000061pt;}
.y63{bottom:238.400086pt;}
.y89{bottom:239.360047pt;}
.y41{bottom:242.400086pt;}
.y1f{bottom:249.760071pt;}
.y88{bottom:257.760071pt;}
.y40{bottom:260.800049pt;}
.y62{bottom:275.360047pt;}
.y87{bottom:276.160035pt;}
.y1e{bottom:286.880066pt;}
.y61{bottom:293.760071pt;}
.y86{bottom:294.560059pt;}
.y3f{bottom:297.920044pt;}
.y1d{bottom:305.280030pt;}
.y60{bottom:312.160035pt;}
.y85{bottom:312.960083pt;}
.y3e{bottom:316.320069pt;}
.y1c{bottom:323.680054pt;}
.y5f{bottom:330.560059pt;}
.y84{bottom:331.360047pt;}
.y1b{bottom:342.080079pt;}
.y5e{bottom:348.960083pt;}
.y83{bottom:349.760071pt;}
.y3d{bottom:353.440064pt;}
.y1a{bottom:360.480042pt;}
.y5d{bottom:367.360047pt;}
.y82{bottom:368.160035pt;}
.y5c{bottom:385.760071pt;}
.y81{bottom:386.560059pt;}
.y3c{bottom:390.400086pt;}
.y19{bottom:397.440064pt;}
.y5b{bottom:404.160035pt;}
.y80{bottom:404.960083pt;}
.y3b{bottom:408.800049pt;}
.y5a{bottom:422.560059pt;}
.y7f{bottom:423.360047pt;}
.y3a{bottom:427.200074pt;}
.y18{bottom:434.560059pt;}
.y59{bottom:440.960083pt;}
.y7e{bottom:441.760071pt;}
.y39{bottom:445.600037pt;}
.y17{bottom:452.960083pt;}
.y58{bottom:459.360047pt;}
.y7d{bottom:460.160035pt;}
.y38{bottom:464.000061pt;}
.y37{bottom:482.400086pt;}
.y16{bottom:490.080079pt;}
.y57{bottom:496.480042pt;}
.y7c{bottom:497.280030pt;}
.y15{bottom:508.480042pt;}
.y56{bottom:514.880066pt;}
.y36{bottom:519.520081pt;}
.y14{bottom:526.880066pt;}
.y7b{bottom:534.240052pt;}
.y35{bottom:537.920044pt;}
.y13{bottom:545.280030pt;}
.y55{bottom:551.840088pt;}
.y7a{bottom:552.640076pt;}
.y34{bottom:556.320069pt;}
.y12{bottom:563.680054pt;}
.y54{bottom:570.240052pt;}
.y79{bottom:571.040039pt;}
.y11{bottom:582.080079pt;}
.y53{bottom:588.640076pt;}
.y78{bottom:589.440064pt;}
.y33{bottom:593.440064pt;}
.y10{bottom:600.480042pt;}
.y77{bottom:607.840088pt;}
.yf{bottom:618.880066pt;}
.y52{bottom:625.760071pt;}
.y76{bottom:626.240052pt;}
.y32{bottom:630.400055pt;}
.ye{bottom:637.280060pt;}
.y75{bottom:644.640046pt;}
.y31{bottom:648.800049pt;}
.yd{bottom:655.680054pt;}
.y51{bottom:662.880066pt;}
.y74{bottom:663.040070pt;}
.y30{bottom:667.200074pt;}
.y50{bottom:681.280060pt;}
.y73{bottom:681.440064pt;}
.y2f{bottom:685.600068pt;}
.yc{bottom:692.640046pt;}
.y4f{bottom:699.680054pt;}
.y72{bottom:699.840058pt;}
.y2e{bottom:704.000061pt;}
.yb{bottom:711.040070pt;}
.y4e{bottom:718.080048pt;}
.y71{bottom:718.240052pt;}
.ya{bottom:729.440064pt;}
.y4d{bottom:736.480072pt;}
.y70{bottom:736.640046pt;}
.y2d{bottom:741.120057pt;}
.y9{bottom:747.840058pt;}
.y4c{bottom:754.880066pt;}
.y6f{bottom:755.040070pt;}
.y8{bottom:766.240052pt;}
.y4b{bottom:773.280060pt;}
.y6e{bottom:773.440064pt;}
.y2c{bottom:778.080048pt;}
.y7{bottom:784.640046pt;}
.y4a{bottom:791.680054pt;}
.y6d{bottom:791.840058pt;}
.y49{bottom:810.080048pt;}
.y2b{bottom:811.680054pt;}
.y6{bottom:821.760071pt;}
.y48{bottom:828.480072pt;}
.y6c{bottom:828.960053pt;}
.y5{bottom:858.880066pt;}
.y47{bottom:865.440064pt;}
.y6b{bottom:866.080048pt;}
.y6a{bottom:884.480057pt;}
.y4{bottom:901.920060pt;}
.y2a{bottom:902.560059pt;}
.y69{bottom:902.880066pt;}
.y68{bottom:921.280060pt;}
.y3{bottom:932.960053pt;}
.y29{bottom:939.680054pt;}
.y28{bottom:958.080063pt;}
.y2{bottom:970.080063pt;}
.y27{bottom:976.480057pt;}
.y26{bottom:994.880059pt;}
.y1{bottom:1008.320061pt;}
.y25{bottom:1013.280060pt;}
.h5{height:38.442684pt;}
.h6{height:45.157946pt;}
.h3{height:57.377155pt;}
.h2{height:60.060070pt;}
.h4{height:62.762692pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.519997pt;}
.x3{left:99.519997pt;}
.x4{left:123.519997pt;}
.x1{left:267.200012pt;}
.x5{left:292.320007pt;}
}




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