
    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_6fe034ffd5d89ab00c32bc8e.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_0bb4baea13faf1a62e648c76.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_1bf968f142c8f533485fb7a4.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_4c14515ca84ebfe99a96366d.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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3701628039649fba0779b899.woff2')format("woff");}.ff8{font-family:ff8;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;}
.ls3{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.ls5{letter-spacing:33.960000px;}
.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;}
}
.ws2{word-spacing:-36.000000px;}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.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);}
.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;}
.y39{bottom:125.856000px;}
.y20{bottom:130.716000px;}
.y7d{bottom:141.156000px;}
.y5e{bottom:144.396000px;}
.y50{bottom:153.750000px;}
.y38{bottom:159.690000px;}
.y7c{bottom:161.850000px;}
.y1f{bottom:164.550000px;}
.ya4{bottom:169.950000px;}
.y5d{bottom:178.050000px;}
.y7b{bottom:182.550000px;}
.y4f{bottom:185.790000px;}
.ya3{bottom:190.650000px;}
.y37{bottom:193.350000px;}
.y7a{bottom:203.250000px;}
.ya2{bottom:211.350000px;}
.y5c{bottom:211.890000px;}
.y4e{bottom:219.450000px;}
.y1e{bottom:223.050000px;}
.y79{bottom:223.950000px;}
.y36{bottom:227.190000px;}
.ya1{bottom:232.050000px;}
.y78{bottom:244.650000px;}
.y5b{bottom:245.550000px;}
.ya0{bottom:252.750000px;}
.y4d{bottom:253.290000px;}
.y35{bottom:260.850000px;}
.y77{bottom:265.350000px;}
.y9f{bottom:273.450000px;}
.ya5{bottom:274.710000px;}
.y5a{bottom:279.390000px;}
.y1d{bottom:281.550000px;}
.y60{bottom:283.170000px;}
.y76{bottom:286.050000px;}
.y4c{bottom:286.950000px;}
.y9e{bottom:294.150000px;}
.y34{bottom:294.690000px;}
.y1c{bottom:302.250000px;}
.y75{bottom:306.750000px;}
.y59{bottom:313.050000px;}
.y9d{bottom:314.850000px;}
.y4b{bottom:320.835000px;}
.y1b{bottom:322.995000px;}
.y74{bottom:327.495000px;}
.y33{bottom:328.395000px;}
.y9c{bottom:335.595000px;}
.y73{bottom:348.195000px;}
.y58{bottom:350.715000px;}
.y4a{bottom:354.495000px;}
.y9b{bottom:356.295000px;}
.y32{bottom:362.235000px;}
.y1a{bottom:364.755000px;}
.y72{bottom:368.895000px;}
.y9a{bottom:376.995000px;}
.y49{bottom:388.335000px;}
.y71{bottom:389.595000px;}
.y31{bottom:395.895000px;}
.y99{bottom:397.695000px;}
.y19{bottom:406.515000px;}
.y70{bottom:410.295000px;}
.y98{bottom:418.395000px;}
.y48{bottom:421.995000px;}
.y18{bottom:427.215000px;}
.y30{bottom:429.735000px;}
.y6f{bottom:430.995000px;}
.y97{bottom:439.095000px;}
.y17{bottom:447.915000px;}
.y6e{bottom:451.695000px;}
.y47{bottom:455.835000px;}
.y96{bottom:459.795000px;}
.y2f{bottom:463.395000px;}
.y16{bottom:468.615000px;}
.y6d{bottom:472.395000px;}
.y95{bottom:480.495000px;}
.y15{bottom:489.315000px;}
.y57{bottom:489.495000px;}
.y6c{bottom:493.095000px;}
.y46{bottom:493.275000px;}
.y2e{bottom:497.235000px;}
.y94{bottom:501.195000px;}
.y14{bottom:510.015000px;}
.y6b{bottom:513.795000px;}
.y93{bottom:521.895000px;}
.y56{bottom:523.335000px;}
.y13{bottom:530.715000px;}
.y45{bottom:530.895000px;}
.y6a{bottom:534.495000px;}
.y2d{bottom:534.675000px;}
.y92{bottom:542.595000px;}
.y12{bottom:551.415000px;}
.y69{bottom:555.195000px;}
.y55{bottom:556.995000px;}
.y91{bottom:563.295000px;}
.y44{bottom:564.735000px;}
.y11{bottom:572.145000px;}
.y2c{bottom:572.325000px;}
.y68{bottom:575.925000px;}
.y90{bottom:584.025000px;}
.y54{bottom:590.865000px;}
.y10{bottom:592.845000px;}
.y5f{bottom:594.645000px;}
.y67{bottom:596.625000px;}
.y43{bottom:598.425000px;}
.y8f{bottom:604.725000px;}
.y2b{bottom:606.165000px;}
.yf{bottom:613.545000px;}
.y66{bottom:617.325000px;}
.y8e{bottom:625.425000px;}
.y53{bottom:628.305000px;}
.y42{bottom:632.265000px;}
.ye{bottom:634.245000px;}
.y65{bottom:638.025000px;}
.y2a{bottom:639.825000px;}
.y8d{bottom:646.125000px;}
.yd{bottom:654.945000px;}
.y64{bottom:658.725000px;}
.y41{bottom:665.925000px;}
.y8c{bottom:666.825000px;}
.y29{bottom:673.665000px;}
.y63{bottom:679.425000px;}
.y8b{bottom:687.525000px;}
.yc{bottom:697.965000px;}
.y40{bottom:699.765000px;}
.y62{bottom:700.125000px;}
.y28{bottom:707.325000px;}
.y8a{bottom:708.225000px;}
.y89{bottom:728.925000px;}
.y3f{bottom:733.425000px;}
.y61{bottom:740.085000px;}
.y27{bottom:741.165000px;}
.yb{bottom:745.665000px;}
.y88{bottom:749.625000px;}
.y3e{bottom:767.265000px;}
.y87{bottom:770.325000px;}
.y26{bottom:774.825000px;}
.y86{bottom:791.025000px;}
.ya{bottom:794.805000px;}
.y3d{bottom:800.925000px;}
.y25{bottom:808.665000px;}
.y85{bottom:811.725000px;}
.y84{bottom:832.470000px;}
.y3c{bottom:834.810000px;}
.y9{bottom:839.670000px;}
.y24{bottom:842.370000px;}
.y83{bottom:853.170000px;}
.y3b{bottom:868.470000px;}
.y82{bottom:873.870000px;}
.y23{bottom:876.210000px;}
.y8{bottom:884.490000px;}
.y81{bottom:894.570000px;}
.y52{bottom:902.310000px;}
.y3a{bottom:906.090000px;}
.y22{bottom:909.870000px;}
.y80{bottom:915.270000px;}
.y7f{bottom:935.970000px;}
.y51{bottom:939.750000px;}
.y21{bottom:943.710000px;}
.y7{bottom:945.330000px;}
.y7e{bottom:956.670000px;}
.y1{bottom:977.910000px;}
.y2{bottom:1015.560000px;}
.y5{bottom:1131.660000px;}
.h4{height:22.140000px;}
.h2{height:30.240000px;}
.he{height:47.901094px;}
.hb{height:50.800781px;}
.ha{height:52.066406px;}
.h5{height:52.417969px;}
.hd{height:59.343750px;}
.h8{height:59.436914px;}
.h3{height:63.550195px;}
.h1{height:65.884219px;}
.h9{height:67.565039px;}
.h6{height:84.837305px;}
.hc{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;}
.x7{left:114.335986px;}
.xa{left:135.035986px;}
.x6{left:144.215986px;}
.xb{left:162.029986px;}
.x8{left:194.069986px;}
.x4{left:217.080000px;}
.x2{left:232.920000px;}
.x9{left:342.974986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls5{letter-spacing:30.186667pt;}
.ws2{word-spacing:-32.000000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.142187pt;}
.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;}
.y39{bottom:111.872000pt;}
.y20{bottom:116.192000pt;}
.y7d{bottom:125.472000pt;}
.y5e{bottom:128.352000pt;}
.y50{bottom:136.666667pt;}
.y38{bottom:141.946667pt;}
.y7c{bottom:143.866667pt;}
.y1f{bottom:146.266667pt;}
.ya4{bottom:151.066667pt;}
.y5d{bottom:158.266667pt;}
.y7b{bottom:162.266667pt;}
.y4f{bottom:165.146667pt;}
.ya3{bottom:169.466667pt;}
.y37{bottom:171.866667pt;}
.y7a{bottom:180.666667pt;}
.ya2{bottom:187.866667pt;}
.y5c{bottom:188.346667pt;}
.y4e{bottom:195.066667pt;}
.y1e{bottom:198.266667pt;}
.y79{bottom:199.066667pt;}
.y36{bottom:201.946667pt;}
.ya1{bottom:206.266667pt;}
.y78{bottom:217.466667pt;}
.y5b{bottom:218.266667pt;}
.ya0{bottom:224.666667pt;}
.y4d{bottom:225.146667pt;}
.y35{bottom:231.866667pt;}
.y77{bottom:235.866667pt;}
.y9f{bottom:243.066667pt;}
.ya5{bottom:244.186667pt;}
.y5a{bottom:248.346667pt;}
.y1d{bottom:250.266667pt;}
.y60{bottom:251.706667pt;}
.y76{bottom:254.266667pt;}
.y4c{bottom:255.066667pt;}
.y9e{bottom:261.466667pt;}
.y34{bottom:261.946667pt;}
.y1c{bottom:268.666667pt;}
.y75{bottom:272.666667pt;}
.y59{bottom:278.266667pt;}
.y9d{bottom:279.866667pt;}
.y4b{bottom:285.186667pt;}
.y1b{bottom:287.106667pt;}
.y74{bottom:291.106667pt;}
.y33{bottom:291.906667pt;}
.y9c{bottom:298.306667pt;}
.y73{bottom:309.506667pt;}
.y58{bottom:311.746667pt;}
.y4a{bottom:315.106667pt;}
.y9b{bottom:316.706667pt;}
.y32{bottom:321.986667pt;}
.y1a{bottom:324.226667pt;}
.y72{bottom:327.906667pt;}
.y9a{bottom:335.106667pt;}
.y49{bottom:345.186667pt;}
.y71{bottom:346.306667pt;}
.y31{bottom:351.906667pt;}
.y99{bottom:353.506667pt;}
.y19{bottom:361.346667pt;}
.y70{bottom:364.706667pt;}
.y98{bottom:371.906667pt;}
.y48{bottom:375.106667pt;}
.y18{bottom:379.746667pt;}
.y30{bottom:381.986667pt;}
.y6f{bottom:383.106667pt;}
.y97{bottom:390.306667pt;}
.y17{bottom:398.146667pt;}
.y6e{bottom:401.506667pt;}
.y47{bottom:405.186667pt;}
.y96{bottom:408.706667pt;}
.y2f{bottom:411.906667pt;}
.y16{bottom:416.546667pt;}
.y6d{bottom:419.906667pt;}
.y95{bottom:427.106667pt;}
.y15{bottom:434.946667pt;}
.y57{bottom:435.106667pt;}
.y6c{bottom:438.306667pt;}
.y46{bottom:438.466667pt;}
.y2e{bottom:441.986667pt;}
.y94{bottom:445.506667pt;}
.y14{bottom:453.346667pt;}
.y6b{bottom:456.706667pt;}
.y93{bottom:463.906667pt;}
.y56{bottom:465.186667pt;}
.y13{bottom:471.746667pt;}
.y45{bottom:471.906667pt;}
.y6a{bottom:475.106667pt;}
.y2d{bottom:475.266667pt;}
.y92{bottom:482.306667pt;}
.y12{bottom:490.146667pt;}
.y69{bottom:493.506667pt;}
.y55{bottom:495.106667pt;}
.y91{bottom:500.706667pt;}
.y44{bottom:501.986667pt;}
.y11{bottom:508.573333pt;}
.y2c{bottom:508.733333pt;}
.y68{bottom:511.933333pt;}
.y90{bottom:519.133333pt;}
.y54{bottom:525.213333pt;}
.y10{bottom:526.973333pt;}
.y5f{bottom:528.573333pt;}
.y67{bottom:530.333333pt;}
.y43{bottom:531.933333pt;}
.y8f{bottom:537.533333pt;}
.y2b{bottom:538.813333pt;}
.yf{bottom:545.373333pt;}
.y66{bottom:548.733333pt;}
.y8e{bottom:555.933333pt;}
.y53{bottom:558.493333pt;}
.y42{bottom:562.013333pt;}
.ye{bottom:563.773333pt;}
.y65{bottom:567.133333pt;}
.y2a{bottom:568.733333pt;}
.y8d{bottom:574.333333pt;}
.yd{bottom:582.173333pt;}
.y64{bottom:585.533333pt;}
.y41{bottom:591.933333pt;}
.y8c{bottom:592.733333pt;}
.y29{bottom:598.813333pt;}
.y63{bottom:603.933333pt;}
.y8b{bottom:611.133333pt;}
.yc{bottom:620.413333pt;}
.y40{bottom:622.013333pt;}
.y62{bottom:622.333333pt;}
.y28{bottom:628.733333pt;}
.y8a{bottom:629.533333pt;}
.y89{bottom:647.933333pt;}
.y3f{bottom:651.933333pt;}
.y61{bottom:657.853333pt;}
.y27{bottom:658.813333pt;}
.yb{bottom:662.813333pt;}
.y88{bottom:666.333333pt;}
.y3e{bottom:682.013333pt;}
.y87{bottom:684.733333pt;}
.y26{bottom:688.733333pt;}
.y86{bottom:703.133333pt;}
.ya{bottom:706.493333pt;}
.y3d{bottom:711.933333pt;}
.y25{bottom:718.813333pt;}
.y85{bottom:721.533333pt;}
.y84{bottom:739.973333pt;}
.y3c{bottom:742.053333pt;}
.y9{bottom:746.373333pt;}
.y24{bottom:748.773333pt;}
.y83{bottom:758.373333pt;}
.y3b{bottom:771.973333pt;}
.y82{bottom:776.773333pt;}
.y23{bottom:778.853333pt;}
.y8{bottom:786.213333pt;}
.y81{bottom:795.173333pt;}
.y52{bottom:802.053333pt;}
.y3a{bottom:805.413333pt;}
.y22{bottom:808.773333pt;}
.y80{bottom:813.573333pt;}
.y7f{bottom:831.973333pt;}
.y51{bottom:835.333333pt;}
.y21{bottom:838.853333pt;}
.y7{bottom:840.293333pt;}
.y7e{bottom:850.373333pt;}
.y1{bottom:869.253333pt;}
.y2{bottom:902.720000pt;}
.y5{bottom:1005.920000pt;}
.h4{height:19.680000pt;}
.h2{height:26.880000pt;}
.he{height:42.578750pt;}
.hb{height:45.156250pt;}
.ha{height:46.281250pt;}
.h5{height:46.593750pt;}
.hd{height:52.750000pt;}
.h8{height:52.832812pt;}
.h3{height:56.489062pt;}
.h1{height:58.563750pt;}
.h9{height:60.057813pt;}
.h6{height:75.410937pt;}
.hc{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;}
.x7{left:101.631988pt;}
.xa{left:120.031988pt;}
.x6{left:128.191988pt;}
.xb{left:144.026655pt;}
.x8{left:172.506655pt;}
.x4{left:192.960000pt;}
.x2{left:207.040000pt;}
.x9{left:304.866655pt;}
}




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