
    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_d42986e6cb1f623531237d09.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bd79b26a42daff53c63c4235.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_b914a1db7825d7d83ed2bb80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.057600px;}
.ls4{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:1011.077760px;}
.ls0{letter-spacing:1491.342240px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-11.700000px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-4.968000px;}
._8{margin-left:-3.960000px;}
._9{margin-left:-2.916000px;}
._0{margin-left:-1.296000px;}
._3{width:1.062000px;}
._4{width:2.100000px;}
._5{width:3.407280px;}
._d{width:5.328000px;}
._6{width:6.624000px;}
._a{width:8.424000px;}
._13{width:9.792000px;}
._e{width:11.376000px;}
._12{width:13.248000px;}
._7{width:15.146400px;}
._14{width:16.416000px;}
._10{width:19.152000px;}
._11{width:20.454000px;}
._2{width:1146.438000px;}
._c{width:1486.920000px;}
._b{width:1788.138000px;}
._1{width:2552.700480px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:55.980000px;}
.y26{bottom:57.600000px;}
.y25{bottom:76.176000px;}
.y23{bottom:144.576000px;}
.y22{bottom:166.890000px;}
.y4b{bottom:185.610000px;}
.y21{bottom:189.210000px;}
.y20{bottom:211.710000px;}
.y4a{bottom:222.870000px;}
.y49{bottom:245.190000px;}
.y1f{bottom:248.970000px;}
.y48{bottom:267.510000px;}
.y1e{bottom:286.230000px;}
.y47{bottom:289.830000px;}
.y1d{bottom:308.730000px;}
.y46{bottom:312.330000px;}
.y1c{bottom:331.050000px;}
.y45{bottom:349.635000px;}
.y67{bottom:353.955000px;}
.y1b{bottom:368.355000px;}
.y44{bottom:371.955000px;}
.y66{bottom:385.275000px;}
.y65{bottom:407.595000px;}
.y43{bottom:409.395000px;}
.y1a{bottom:424.875000px;}
.y64{bottom:429.915000px;}
.y42{bottom:446.655000px;}
.y63{bottom:452.235000px;}
.y19{bottom:461.955000px;}
.y62{bottom:483.555000px;}
.y41{bottom:483.915000px;}
.y18{bottom:500.475000px;}
.y61{bottom:505.875000px;}
.y40{bottom:506.235000px;}
.y60{bottom:528.195000px;}
.y3f{bottom:528.555000px;}
.y17{bottom:538.995000px;}
.y5f{bottom:550.695000px;}
.y3e{bottom:550.875000px;}
.y5e{bottom:573.015000px;}
.y3d{bottom:573.375000px;}
.y16{bottom:577.335000px;}
.y5d{bottom:595.335000px;}
.y15{bottom:597.855000px;}
.y3c{bottom:610.665000px;}
.y5c{bottom:617.685000px;}
.y14{bottom:618.405000px;}
.y3b{bottom:632.985000px;}
.y5b{bottom:640.005000px;}
.y3a{bottom:655.305000px;}
.y13{bottom:656.925000px;}
.y5a{bottom:677.265000px;}
.y39{bottom:677.625000px;}
.y12{bottom:695.265000px;}
.y59{bottom:699.585000px;}
.y38{bottom:700.125000px;}
.y11{bottom:715.785000px;}
.y58{bottom:722.085000px;}
.y10{bottom:736.305000px;}
.y37{bottom:737.385000px;}
.y57{bottom:744.405000px;}
.yf{bottom:756.825000px;}
.y36{bottom:759.705000px;}
.y56{bottom:781.665000px;}
.y35{bottom:782.025000px;}
.ye{bottom:791.385000px;}
.y34{bottom:804.345000px;}
.yd{bottom:808.125000px;}
.y55{bottom:819.105000px;}
.yc{bottom:824.865000px;}
.y33{bottom:826.665000px;}
.yb{bottom:841.605000px;}
.y32{bottom:848.985000px;}
.y54{bottom:856.365000px;}
.ya{bottom:858.345000px;}
.y9{bottom:875.130000px;}
.y31{bottom:886.470000px;}
.y8{bottom:891.870000px;}
.y53{bottom:893.850000px;}
.y30{bottom:908.790000px;}
.y7{bottom:913.110000px;}
.y2f{bottom:931.110000px;}
.y6{bottom:941.370000px;}
.y2e{bottom:953.430000px;}
.y52{bottom:968.370000px;}
.y2d{bottom:975.750000px;}
.y51{bottom:990.690000px;}
.y2c{bottom:998.070000px;}
.y5{bottom:1002.210000px;}
.y50{bottom:1013.190000px;}
.y2b{bottom:1035.330000px;}
.y4f{bottom:1050.450000px;}
.y2a{bottom:1057.830000px;}
.y4{bottom:1071.870000px;}
.y4e{bottom:1072.770000px;}
.y29{bottom:1080.150000px;}
.y4d{bottom:1095.090000px;}
.y28{bottom:1117.410000px;}
.y27{bottom:1139.760000px;}
.y4c{bottom:1139.940000px;}
.y2{bottom:1151.640000px;}
.y1{bottom:1172.880000px;}
.y24{bottom:1194.300000px;}
.h7{height:32.273438px;}
.h8{height:48.410156px;}
.ha{height:51.996094px;}
.h9{height:53.573906px;}
.h6{height:53.999297px;}
.h3{height:59.383125px;}
.h5{height:60.999961px;}
.hb{height:64.546875px;}
.h2{height:65.884219px;}
.h4{height:104.273438px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.039987px;}
.x7{left:122.075987px;}
.x4{left:126.395987px;}
.x5{left:128.735987px;}
.x2{left:160.589987px;}
.x6{left:261.929987px;}
.x3{left:446.114987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.051200pt;}
.ls4{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:898.735787pt;}
.ls0{letter-spacing:1325.637547pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-4.416000pt;}
._8{margin-left:-3.520000pt;}
._9{margin-left:-2.592000pt;}
._0{margin-left:-1.152000pt;}
._3{width:0.944000pt;}
._4{width:1.866667pt;}
._5{width:3.028693pt;}
._d{width:4.736000pt;}
._6{width:5.888000pt;}
._a{width:7.488000pt;}
._13{width:8.704000pt;}
._e{width:10.112000pt;}
._12{width:11.776000pt;}
._7{width:13.463467pt;}
._14{width:14.592000pt;}
._10{width:17.024000pt;}
._11{width:18.181333pt;}
._2{width:1019.056000pt;}
._c{width:1321.706667pt;}
._b{width:1589.456000pt;}
._1{width:2269.067093pt;}
.fs6{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:49.760000pt;}
.y26{bottom:51.200000pt;}
.y25{bottom:67.712000pt;}
.y23{bottom:128.512000pt;}
.y22{bottom:148.346667pt;}
.y4b{bottom:164.986667pt;}
.y21{bottom:168.186667pt;}
.y20{bottom:188.186667pt;}
.y4a{bottom:198.106667pt;}
.y49{bottom:217.946667pt;}
.y1f{bottom:221.306667pt;}
.y48{bottom:237.786667pt;}
.y1e{bottom:254.426667pt;}
.y47{bottom:257.626667pt;}
.y1d{bottom:274.426667pt;}
.y46{bottom:277.626667pt;}
.y1c{bottom:294.266667pt;}
.y45{bottom:310.786667pt;}
.y67{bottom:314.626667pt;}
.y1b{bottom:327.426667pt;}
.y44{bottom:330.626667pt;}
.y66{bottom:342.466667pt;}
.y65{bottom:362.306667pt;}
.y43{bottom:363.906667pt;}
.y1a{bottom:377.666667pt;}
.y64{bottom:382.146667pt;}
.y42{bottom:397.026667pt;}
.y63{bottom:401.986667pt;}
.y19{bottom:410.626667pt;}
.y62{bottom:429.826667pt;}
.y41{bottom:430.146667pt;}
.y18{bottom:444.866667pt;}
.y61{bottom:449.666667pt;}
.y40{bottom:449.986667pt;}
.y60{bottom:469.506667pt;}
.y3f{bottom:469.826667pt;}
.y17{bottom:479.106667pt;}
.y5f{bottom:489.506667pt;}
.y3e{bottom:489.666667pt;}
.y5e{bottom:509.346667pt;}
.y3d{bottom:509.666667pt;}
.y16{bottom:513.186667pt;}
.y5d{bottom:529.186667pt;}
.y15{bottom:531.426667pt;}
.y3c{bottom:542.813333pt;}
.y5c{bottom:549.053333pt;}
.y14{bottom:549.693333pt;}
.y3b{bottom:562.653333pt;}
.y5b{bottom:568.893333pt;}
.y3a{bottom:582.493333pt;}
.y13{bottom:583.933333pt;}
.y5a{bottom:602.013333pt;}
.y39{bottom:602.333333pt;}
.y12{bottom:618.013333pt;}
.y59{bottom:621.853333pt;}
.y38{bottom:622.333333pt;}
.y11{bottom:636.253333pt;}
.y58{bottom:641.853333pt;}
.y10{bottom:654.493333pt;}
.y37{bottom:655.453333pt;}
.y57{bottom:661.693333pt;}
.yf{bottom:672.733333pt;}
.y36{bottom:675.293333pt;}
.y56{bottom:694.813333pt;}
.y35{bottom:695.133333pt;}
.ye{bottom:703.453333pt;}
.y34{bottom:714.973333pt;}
.yd{bottom:718.333333pt;}
.y55{bottom:728.093333pt;}
.yc{bottom:733.213333pt;}
.y33{bottom:734.813333pt;}
.yb{bottom:748.093333pt;}
.y32{bottom:754.653333pt;}
.y54{bottom:761.213333pt;}
.ya{bottom:762.973333pt;}
.y9{bottom:777.893333pt;}
.y31{bottom:787.973333pt;}
.y8{bottom:792.773333pt;}
.y53{bottom:794.533333pt;}
.y30{bottom:807.813333pt;}
.y7{bottom:811.653333pt;}
.y2f{bottom:827.653333pt;}
.y6{bottom:836.773333pt;}
.y2e{bottom:847.493333pt;}
.y52{bottom:860.773333pt;}
.y2d{bottom:867.333333pt;}
.y51{bottom:880.613333pt;}
.y2c{bottom:887.173333pt;}
.y5{bottom:890.853333pt;}
.y50{bottom:900.613333pt;}
.y2b{bottom:920.293333pt;}
.y4f{bottom:933.733333pt;}
.y2a{bottom:940.293333pt;}
.y4{bottom:952.773333pt;}
.y4e{bottom:953.573333pt;}
.y29{bottom:960.133333pt;}
.y4d{bottom:973.413333pt;}
.y28{bottom:993.253333pt;}
.y27{bottom:1013.120000pt;}
.y4c{bottom:1013.280000pt;}
.y2{bottom:1023.680000pt;}
.y1{bottom:1042.560000pt;}
.y24{bottom:1061.600000pt;}
.h7{height:28.687500pt;}
.h8{height:43.031250pt;}
.ha{height:46.218750pt;}
.h9{height:47.621250pt;}
.h6{height:47.999375pt;}
.h3{height:52.785000pt;}
.h5{height:54.222187pt;}
.hb{height:57.375000pt;}
.h2{height:58.563750pt;}
.h4{height:92.687500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.479988pt;}
.x7{left:108.511988pt;}
.x4{left:112.351988pt;}
.x5{left:114.431988pt;}
.x2{left:142.746655pt;}
.x6{left:232.826655pt;}
.x3{left:396.546655pt;}
}




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