
    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_eb56dd5ed3eec7700da78bb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_689a573192e482164fd7c782.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.951660;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_c9b7bcc4af0bd54f1ae4925b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_9faea58fc112b930cdcab433.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ced2fbbe635a166f0ea9159.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8115a4c9ac13f5a66443a6fb.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3701628039649fba0779b899.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.180000px;}
.ls2{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.720000px;}
.ls5{letter-spacing:33.960000px;}
.ls3{letter-spacing:64.002720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(128,128,128),0 0.015em rgb(128,128,128),0.015em 0 rgb(128,128,128),0 -0.015em  rgb(128,128,128);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(128,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-59.760000px;}
.ws2{word-spacing:-36.000000px;}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.576000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.432080px;}
._1{width:1.284960px;}
.fc3{color:transparent;}
.fc2{color:rgb(15,17,21);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.fs4{font-size:156.240000px;}
.y4{bottom:-15.150000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.040000px;}
.y3{bottom:6.990000px;}
.y54{bottom:144.396000px;}
.y73{bottom:148.896000px;}
.y9b{bottom:149.256000px;}
.y46{bottom:151.950000px;}
.y36{bottom:159.690000px;}
.y72{bottom:169.590000px;}
.y9a{bottom:169.950000px;}
.y53{bottom:178.050000px;}
.y45{bottom:185.790000px;}
.y71{bottom:190.290000px;}
.y99{bottom:190.650000px;}
.y35{bottom:193.350000px;}
.y1e{bottom:201.630000px;}
.y70{bottom:210.990000px;}
.y98{bottom:211.350000px;}
.y9c{bottom:212.610000px;}
.y52{bottom:215.670000px;}
.y44{bottom:219.450000px;}
.y34{bottom:227.190000px;}
.y6f{bottom:231.690000px;}
.y97{bottom:232.050000px;}
.y6e{bottom:252.390000px;}
.y96{bottom:252.750000px;}
.y43{bottom:253.290000px;}
.y1d{bottom:260.130000px;}
.y33{bottom:260.850000px;}
.y6d{bottom:273.090000px;}
.y95{bottom:273.450000px;}
.y1c{bottom:280.830000px;}
.y42{bottom:286.950000px;}
.y6c{bottom:293.790000px;}
.y94{bottom:294.150000px;}
.y32{bottom:294.690000px;}
.y6b{bottom:314.490000px;}
.y93{bottom:314.850000px;}
.y41{bottom:320.835000px;}
.y1b{bottom:323.175000px;}
.y31{bottom:328.395000px;}
.y6a{bottom:335.235000px;}
.y92{bottom:335.595000px;}
.y51{bottom:354.495000px;}
.y69{bottom:355.935000px;}
.y91{bottom:356.295000px;}
.y40{bottom:358.275000px;}
.y30{bottom:362.235000px;}
.y1a{bottom:367.815000px;}
.y68{bottom:376.635000px;}
.y90{bottom:376.995000px;}
.y50{bottom:388.335000px;}
.y19{bottom:388.515000px;}
.y3f{bottom:395.895000px;}
.y67{bottom:397.335000px;}
.y8f{bottom:397.695000px;}
.y2f{bottom:399.675000px;}
.y18{bottom:409.215000px;}
.y66{bottom:418.035000px;}
.y8e{bottom:418.395000px;}
.y4f{bottom:421.995000px;}
.y56{bottom:425.775000px;}
.y3e{bottom:429.735000px;}
.y17{bottom:429.915000px;}
.y2e{bottom:437.295000px;}
.y65{bottom:438.735000px;}
.y8d{bottom:439.095000px;}
.y16{bottom:450.615000px;}
.y4e{bottom:455.835000px;}
.y64{bottom:459.435000px;}
.y8c{bottom:459.795000px;}
.y3d{bottom:463.395000px;}
.y2d{bottom:471.135000px;}
.y15{bottom:471.315000px;}
.y63{bottom:480.135000px;}
.y8b{bottom:480.495000px;}
.y4d{bottom:489.495000px;}
.y14{bottom:492.015000px;}
.y3c{bottom:497.235000px;}
.y62{bottom:500.835000px;}
.y8a{bottom:501.195000px;}
.y2c{bottom:504.795000px;}
.y13{bottom:512.715000px;}
.y61{bottom:521.535000px;}
.y89{bottom:521.895000px;}
.y4c{bottom:527.115000px;}
.y3b{bottom:530.895000px;}
.y12{bottom:533.415000px;}
.y2b{bottom:538.635000px;}
.y60{bottom:542.235000px;}
.y88{bottom:542.595000px;}
.y11{bottom:554.115000px;}
.y5f{bottom:562.935000px;}
.y87{bottom:563.295000px;}
.y3a{bottom:564.735000px;}
.y2a{bottom:572.325000px;}
.y10{bottom:574.845000px;}
.y5e{bottom:583.665000px;}
.y86{bottom:584.025000px;}
.yf{bottom:595.545000px;}
.y39{bottom:598.425000px;}
.y5d{bottom:604.365000px;}
.y85{bottom:604.725000px;}
.y29{bottom:606.165000px;}
.ye{bottom:616.245000px;}
.y5c{bottom:625.065000px;}
.y84{bottom:625.425000px;}
.y38{bottom:632.265000px;}
.y28{bottom:639.825000px;}
.y83{bottom:646.125000px;}
.yd{bottom:659.265000px;}
.y5b{bottom:664.845000px;}
.y37{bottom:665.925000px;}
.y82{bottom:666.825000px;}
.y27{bottom:673.665000px;}
.y81{bottom:687.525000px;}
.y4b{bottom:699.765000px;}
.yc{bottom:703.545000px;}
.y26{bottom:707.325000px;}
.y80{bottom:708.225000px;}
.y7f{bottom:728.925000px;}
.y4a{bottom:733.425000px;}
.y55{bottom:737.205000px;}
.y25{bottom:741.165000px;}
.yb{bottom:745.665000px;}
.y7e{bottom:749.625000px;}
.y49{bottom:767.265000px;}
.y7d{bottom:770.325000px;}
.y24{bottom:774.825000px;}
.y7c{bottom:791.025000px;}
.ya{bottom:794.805000px;}
.y48{bottom:800.925000px;}
.y23{bottom:808.665000px;}
.y7b{bottom:811.725000px;}
.y7a{bottom:832.470000px;}
.y5a{bottom:834.810000px;}
.y47{bottom:838.590000px;}
.y9{bottom:839.670000px;}
.y22{bottom:842.370000px;}
.y79{bottom:853.170000px;}
.y59{bottom:868.470000px;}
.y78{bottom:873.870000px;}
.y21{bottom:876.210000px;}
.y8{bottom:884.490000px;}
.y77{bottom:894.570000px;}
.y58{bottom:902.310000px;}
.y20{bottom:909.870000px;}
.y76{bottom:915.270000px;}
.y75{bottom:935.970000px;}
.y57{bottom:939.750000px;}
.y1f{bottom:943.710000px;}
.y7{bottom:945.330000px;}
.y74{bottom:956.670000px;}
.y1{bottom:977.910000px;}
.y2{bottom:1015.560000px;}
.y5{bottom:1131.660000px;}
.h4{height:22.140000px;}
.h2{height:30.240000px;}
.hf{height:47.901094px;}
.h9{height:50.800781px;}
.hb{height:52.066406px;}
.h5{height:52.417969px;}
.he{height:59.343750px;}
.h8{height:59.436914px;}
.hc{height:60.917695px;}
.h3{height:63.550195px;}
.h1{height:65.884219px;}
.ha{height:67.565039px;}
.h6{height:84.837305px;}
.hd{height:101.601562px;}
.h7{height:110.237695px;}
.h0{height:1188.000000px;}
.w2{width:386.280000px;}
.w3{width:417.780000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:10.830000px;}
.x5{left:71.175000px;}
.x1{left:108.035986px;}
.x6{left:128.015986px;}
.xb{left:135.035986px;}
.x7{left:147.995986px;}
.xc{left:162.029986px;}
.x4{left:217.080000px;}
.x2{left:232.920000px;}
.x9{left:250.409986px;}
.x8{left:278.669986px;}
.xa{left:459.074986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls5{letter-spacing:30.186667pt;}
.ls3{letter-spacing:56.891307pt;}
.ws6{word-spacing:-53.120000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.512000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.142187pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.fs4{font-size:138.880000pt;}
.y4{bottom:-13.466667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.480000pt;}
.y3{bottom:6.213333pt;}
.y54{bottom:128.352000pt;}
.y73{bottom:132.352000pt;}
.y9b{bottom:132.672000pt;}
.y46{bottom:135.066667pt;}
.y36{bottom:141.946667pt;}
.y72{bottom:150.746667pt;}
.y9a{bottom:151.066667pt;}
.y53{bottom:158.266667pt;}
.y45{bottom:165.146667pt;}
.y71{bottom:169.146667pt;}
.y99{bottom:169.466667pt;}
.y35{bottom:171.866667pt;}
.y1e{bottom:179.226667pt;}
.y70{bottom:187.546667pt;}
.y98{bottom:187.866667pt;}
.y9c{bottom:188.986667pt;}
.y52{bottom:191.706667pt;}
.y44{bottom:195.066667pt;}
.y34{bottom:201.946667pt;}
.y6f{bottom:205.946667pt;}
.y97{bottom:206.266667pt;}
.y6e{bottom:224.346667pt;}
.y96{bottom:224.666667pt;}
.y43{bottom:225.146667pt;}
.y1d{bottom:231.226667pt;}
.y33{bottom:231.866667pt;}
.y6d{bottom:242.746667pt;}
.y95{bottom:243.066667pt;}
.y1c{bottom:249.626667pt;}
.y42{bottom:255.066667pt;}
.y6c{bottom:261.146667pt;}
.y94{bottom:261.466667pt;}
.y32{bottom:261.946667pt;}
.y6b{bottom:279.546667pt;}
.y93{bottom:279.866667pt;}
.y41{bottom:285.186667pt;}
.y1b{bottom:287.266667pt;}
.y31{bottom:291.906667pt;}
.y6a{bottom:297.986667pt;}
.y92{bottom:298.306667pt;}
.y51{bottom:315.106667pt;}
.y69{bottom:316.386667pt;}
.y91{bottom:316.706667pt;}
.y40{bottom:318.466667pt;}
.y30{bottom:321.986667pt;}
.y1a{bottom:326.946667pt;}
.y68{bottom:334.786667pt;}
.y90{bottom:335.106667pt;}
.y50{bottom:345.186667pt;}
.y19{bottom:345.346667pt;}
.y3f{bottom:351.906667pt;}
.y67{bottom:353.186667pt;}
.y8f{bottom:353.506667pt;}
.y2f{bottom:355.266667pt;}
.y18{bottom:363.746667pt;}
.y66{bottom:371.586667pt;}
.y8e{bottom:371.906667pt;}
.y4f{bottom:375.106667pt;}
.y56{bottom:378.466667pt;}
.y3e{bottom:381.986667pt;}
.y17{bottom:382.146667pt;}
.y2e{bottom:388.706667pt;}
.y65{bottom:389.986667pt;}
.y8d{bottom:390.306667pt;}
.y16{bottom:400.546667pt;}
.y4e{bottom:405.186667pt;}
.y64{bottom:408.386667pt;}
.y8c{bottom:408.706667pt;}
.y3d{bottom:411.906667pt;}
.y2d{bottom:418.786667pt;}
.y15{bottom:418.946667pt;}
.y63{bottom:426.786667pt;}
.y8b{bottom:427.106667pt;}
.y4d{bottom:435.106667pt;}
.y14{bottom:437.346667pt;}
.y3c{bottom:441.986667pt;}
.y62{bottom:445.186667pt;}
.y8a{bottom:445.506667pt;}
.y2c{bottom:448.706667pt;}
.y13{bottom:455.746667pt;}
.y61{bottom:463.586667pt;}
.y89{bottom:463.906667pt;}
.y4c{bottom:468.546667pt;}
.y3b{bottom:471.906667pt;}
.y12{bottom:474.146667pt;}
.y2b{bottom:478.786667pt;}
.y60{bottom:481.986667pt;}
.y88{bottom:482.306667pt;}
.y11{bottom:492.546667pt;}
.y5f{bottom:500.386667pt;}
.y87{bottom:500.706667pt;}
.y3a{bottom:501.986667pt;}
.y2a{bottom:508.733333pt;}
.y10{bottom:510.973333pt;}
.y5e{bottom:518.813333pt;}
.y86{bottom:519.133333pt;}
.yf{bottom:529.373333pt;}
.y39{bottom:531.933333pt;}
.y5d{bottom:537.213333pt;}
.y85{bottom:537.533333pt;}
.y29{bottom:538.813333pt;}
.ye{bottom:547.773333pt;}
.y5c{bottom:555.613333pt;}
.y84{bottom:555.933333pt;}
.y38{bottom:562.013333pt;}
.y28{bottom:568.733333pt;}
.y83{bottom:574.333333pt;}
.yd{bottom:586.013333pt;}
.y5b{bottom:590.973333pt;}
.y37{bottom:591.933333pt;}
.y82{bottom:592.733333pt;}
.y27{bottom:598.813333pt;}
.y81{bottom:611.133333pt;}
.y4b{bottom:622.013333pt;}
.yc{bottom:625.373333pt;}
.y26{bottom:628.733333pt;}
.y80{bottom:629.533333pt;}
.y7f{bottom:647.933333pt;}
.y4a{bottom:651.933333pt;}
.y55{bottom:655.293333pt;}
.y25{bottom:658.813333pt;}
.yb{bottom:662.813333pt;}
.y7e{bottom:666.333333pt;}
.y49{bottom:682.013333pt;}
.y7d{bottom:684.733333pt;}
.y24{bottom:688.733333pt;}
.y7c{bottom:703.133333pt;}
.ya{bottom:706.493333pt;}
.y48{bottom:711.933333pt;}
.y23{bottom:718.813333pt;}
.y7b{bottom:721.533333pt;}
.y7a{bottom:739.973333pt;}
.y5a{bottom:742.053333pt;}
.y47{bottom:745.413333pt;}
.y9{bottom:746.373333pt;}
.y22{bottom:748.773333pt;}
.y79{bottom:758.373333pt;}
.y59{bottom:771.973333pt;}
.y78{bottom:776.773333pt;}
.y21{bottom:778.853333pt;}
.y8{bottom:786.213333pt;}
.y77{bottom:795.173333pt;}
.y58{bottom:802.053333pt;}
.y20{bottom:808.773333pt;}
.y76{bottom:813.573333pt;}
.y75{bottom:831.973333pt;}
.y57{bottom:835.333333pt;}
.y1f{bottom:838.853333pt;}
.y7{bottom:840.293333pt;}
.y74{bottom:850.373333pt;}
.y1{bottom:869.253333pt;}
.y2{bottom:902.720000pt;}
.y5{bottom:1005.920000pt;}
.h4{height:19.680000pt;}
.h2{height:26.880000pt;}
.hf{height:42.578750pt;}
.h9{height:45.156250pt;}
.hb{height:46.281250pt;}
.h5{height:46.593750pt;}
.he{height:52.750000pt;}
.h8{height:52.832812pt;}
.hc{height:54.149062pt;}
.h3{height:56.489062pt;}
.h1{height:58.563750pt;}
.ha{height:60.057813pt;}
.h6{height:75.410937pt;}
.hd{height:90.312500pt;}
.h7{height:97.989063pt;}
.h0{height:1056.000000pt;}
.w2{width:343.360000pt;}
.w3{width:371.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:9.626667pt;}
.x5{left:63.266667pt;}
.x1{left:96.031988pt;}
.x6{left:113.791988pt;}
.xb{left:120.031988pt;}
.x7{left:131.551988pt;}
.xc{left:144.026655pt;}
.x4{left:192.960000pt;}
.x2{left:207.040000pt;}
.x9{left:222.586655pt;}
.x8{left:247.706655pt;}
.xa{left:408.066655pt;}
}




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