
    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_7ff0a11023470c44cd3be796.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_056f1962d55b40f730b3f834.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_1aaa5e411cd14652208f5c6d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_fa41fdae3e48a16cba7a35b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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:-12.000000px;}
.v1{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.318000px;}
.ls9{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.750000px;}
.lsb{letter-spacing:0.780000px;}
.ls3{letter-spacing:0.840000px;}
.ls4{letter-spacing:0.988500px;}
.lsa{letter-spacing:1.320000px;}
.ls1{letter-spacing:1.500000px;}
.ls0{letter-spacing:1.512000px;}
.lsd{letter-spacing:1.740000px;}
.ls8{letter-spacing:1.818000px;}
.ls6{letter-spacing:1.860000px;}
.lsc{letter-spacing:2.250000px;}
.lse{letter-spacing:13.500000px;}
.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;}
}
.ws1{word-spacing:-16.500000px;}
.ws8{word-spacing:-15.012000px;}
.ws0{word-spacing:-15.000000px;}
.ws7{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.000000px;}
.ws4{word-spacing:-8.625000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:43.632000px;}
.ws6{word-spacing:55.536000px;}
._24{margin-left:-9.258000px;}
._d{margin-left:-7.440000px;}
._9{margin-left:-5.748000px;}
._5{margin-left:-4.440000px;}
._3{margin-left:-3.120000px;}
._1{margin-left:-1.620000px;}
._0{width:1.512000px;}
._2{width:2.676000px;}
._6{width:3.828000px;}
._a{width:4.908000px;}
._7{width:6.432000px;}
._10{width:7.524000px;}
._c{width:8.988000px;}
._b{width:10.668000px;}
._8{width:11.976000px;}
._4{width:13.608000px;}
._23{width:15.012000px;}
._11{width:16.488000px;}
._1b{width:39.312000px;}
._1e{width:49.464000px;}
._18{width:54.144000px;}
._1a{width:57.216000px;}
._15{width:63.168000px;}
._1d{width:65.856000px;}
._1c{width:71.952000px;}
._19{width:73.680000px;}
._1f{width:77.928000px;}
._14{width:79.680000px;}
._16{width:81.168000px;}
._20{width:82.968000px;}
._22{width:84.528000px;}
._21{width:94.368000px;}
._17{width:97.680000px;}
._13{width:225.864000px;}
._e{width:1627.740000px;}
._12{width:1820.796000px;}
._f{width:1831.500000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.500000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:88.875000px;}
.y73{bottom:130.125000px;}
.y23{bottom:131.625000px;}
.y3b{bottom:134.625000px;}
.y72{bottom:145.125000px;}
.y22{bottom:146.625000px;}
.y3a{bottom:149.625000px;}
.y7e{bottom:154.500000px;}
.y71{bottom:160.125000px;}
.y21{bottom:161.625000px;}
.y39{bottom:164.625000px;}
.y7d{bottom:169.500000px;}
.y70{bottom:175.125000px;}
.y20{bottom:176.625000px;}
.y38{bottom:179.625000px;}
.y6f{bottom:190.125000px;}
.y1f{bottom:191.625000px;}
.y37{bottom:194.625000px;}
.y7b{bottom:205.125000px;}
.y1e{bottom:206.625000px;}
.y36{bottom:209.625000px;}
.y6e{bottom:220.125000px;}
.y1d{bottom:221.625000px;}
.y35{bottom:224.625000px;}
.y7f{bottom:231.000000px;}
.y7a{bottom:235.125000px;}
.y1c{bottom:236.625000px;}
.y34{bottom:239.625000px;}
.y6d{bottom:250.125000px;}
.y1b{bottom:251.625000px;}
.y33{bottom:254.625000px;}
.y6c{bottom:265.125000px;}
.y1a{bottom:266.625000px;}
.y32{bottom:269.625000px;}
.y6b{bottom:280.125000px;}
.y19{bottom:281.625000px;}
.y31{bottom:284.625000px;}
.y6a{bottom:295.125000px;}
.y18{bottom:296.625000px;}
.y30{bottom:299.625000px;}
.y79{bottom:310.125000px;}
.y17{bottom:311.625000px;}
.y2f{bottom:314.625000px;}
.y69{bottom:325.125000px;}
.y16{bottom:326.625000px;}
.y2e{bottom:329.625000px;}
.y68{bottom:340.125000px;}
.y15{bottom:341.625000px;}
.y67{bottom:355.125000px;}
.y14{bottom:356.625000px;}
.y2d{bottom:357.375000px;}
.y78{bottom:370.125000px;}
.y13{bottom:371.625000px;}
.y66{bottom:385.125000px;}
.y65{bottom:400.125000px;}
.y12{bottom:403.875000px;}
.y64{bottom:415.125000px;}
.y2c{bottom:417.375000px;}
.y11{bottom:418.875000px;}
.y63{bottom:430.125000px;}
.y2b{bottom:432.375000px;}
.y10{bottom:433.875000px;}
.y62{bottom:445.125000px;}
.y2a{bottom:447.375000px;}
.yf{bottom:448.875000px;}
.y61{bottom:460.125000px;}
.y29{bottom:462.375000px;}
.ye{bottom:463.875000px;}
.y60{bottom:475.125000px;}
.y28{bottom:477.375000px;}
.yd{bottom:478.875000px;}
.y5f{bottom:490.125000px;}
.y27{bottom:492.375000px;}
.yc{bottom:493.875000px;}
.y5e{bottom:505.125000px;}
.y26{bottom:507.375000px;}
.yb{bottom:508.875000px;}
.y5d{bottom:520.125000px;}
.y25{bottom:522.375000px;}
.ya{bottom:523.875000px;}
.y77{bottom:535.125000px;}
.y24{bottom:537.375000px;}
.y9{bottom:538.875000px;}
.y5c{bottom:550.125000px;}
.y5b{bottom:565.125000px;}
.y8{bottom:566.625000px;}
.y5a{bottom:580.125000px;}
.y76{bottom:595.125000px;}
.y59{bottom:610.125000px;}
.y58{bottom:625.125000px;}
.y75{bottom:640.125000px;}
.y82{bottom:642.375000px;}
.y57{bottom:655.125000px;}
.y81{bottom:657.375000px;}
.y56{bottom:670.125000px;}
.y80{bottom:672.375000px;}
.y55{bottom:685.125000px;}
.y54{bottom:700.125000px;}
.y9d{bottom:712.500000px;}
.y53{bottom:715.125000px;}
.y7{bottom:723.750000px;}
.y52{bottom:730.125000px;}
.y6{bottom:738.750000px;}
.y51{bottom:745.125000px;}
.y74{bottom:760.125000px;}
.y5{bottom:766.875000px;}
.y50{bottom:775.125000px;}
.y4f{bottom:790.125000px;}
.y4e{bottom:805.125000px;}
.y4d{bottom:820.125000px;}
.y9c{bottom:827.250000px;}
.y8f{bottom:830.250000px;}
.y4c{bottom:835.125000px;}
.y9b{bottom:840.750000px;}
.y8e{bottom:843.750000px;}
.y4b{bottom:850.125000px;}
.y8d{bottom:857.250000px;}
.y9a{bottom:862.500000px;}
.y7c{bottom:865.125000px;}
.y4a{bottom:880.125000px;}
.y99{bottom:884.625000px;}
.y8c{bottom:893.625000px;}
.y49{bottom:895.125000px;}
.y4{bottom:897.375000px;}
.y98{bottom:898.125000px;}
.y48{bottom:910.125000px;}
.y3{bottom:912.375000px;}
.y8b{bottom:916.500000px;}
.y97{bottom:920.250000px;}
.y47{bottom:925.125000px;}
.y8a{bottom:930.000000px;}
.y96{bottom:933.750000px;}
.y46{bottom:940.125000px;}
.y89{bottom:943.500000px;}
.y45{bottom:955.125000px;}
.y95{bottom:955.500000px;}
.y2{bottom:961.500000px;}
.y88{bottom:966.375000px;}
.y94{bottom:969.000000px;}
.y44{bottom:970.125000px;}
.y93{bottom:982.500000px;}
.y43{bottom:985.125000px;}
.y1{bottom:988.500000px;}
.y87{bottom:989.250000px;}
.y42{bottom:1000.125000px;}
.y86{bottom:1002.750000px;}
.y92{bottom:1004.625000px;}
.y41{bottom:1015.125000px;}
.y85{bottom:1025.625000px;}
.y91{bottom:1026.375000px;}
.y40{bottom:1030.125000px;}
.y84{bottom:1039.125000px;}
.y90{bottom:1039.875000px;}
.y3f{bottom:1045.125000px;}
.y3e{bottom:1060.125000px;}
.y83{bottom:1061.250000px;}
.y3c{bottom:1107.375000px;}
.h6{height:47.109375px;}
.h9{height:52.998047px;}
.h8{height:54.421875px;}
.h7{height:58.857422px;}
.h3{height:58.886719px;}
.h2{height:60.468750px;}
.h5{height:64.775391px;}
.h4{height:66.515625px;}
.h1{height:108.843750px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:97.687500px;}
.x3{left:114.562500px;}
.x4{left:441.187500px;}
.x2{left:476.062500px;}
.x5{left:492.937500px;}
@media print{
.v2{vertical-align:-10.666667pt;}
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.666667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.282667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.666667pt;}
.lsb{letter-spacing:0.693333pt;}
.ls3{letter-spacing:0.746667pt;}
.ls4{letter-spacing:0.878667pt;}
.lsa{letter-spacing:1.173333pt;}
.ls1{letter-spacing:1.333333pt;}
.ls0{letter-spacing:1.344000pt;}
.lsd{letter-spacing:1.546667pt;}
.ls8{letter-spacing:1.616000pt;}
.ls6{letter-spacing:1.653333pt;}
.lsc{letter-spacing:2.000000pt;}
.lse{letter-spacing:12.000000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws8{word-spacing:-13.344000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws4{word-spacing:-7.666667pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:38.784000pt;}
.ws6{word-spacing:49.365333pt;}
._24{margin-left:-8.229333pt;}
._d{margin-left:-6.613333pt;}
._9{margin-left:-5.109333pt;}
._5{margin-left:-3.946667pt;}
._3{margin-left:-2.773333pt;}
._1{margin-left:-1.440000pt;}
._0{width:1.344000pt;}
._2{width:2.378667pt;}
._6{width:3.402667pt;}
._a{width:4.362667pt;}
._7{width:5.717333pt;}
._10{width:6.688000pt;}
._c{width:7.989333pt;}
._b{width:9.482667pt;}
._8{width:10.645333pt;}
._4{width:12.096000pt;}
._23{width:13.344000pt;}
._11{width:14.656000pt;}
._1b{width:34.944000pt;}
._1e{width:43.968000pt;}
._18{width:48.128000pt;}
._1a{width:50.858667pt;}
._15{width:56.149333pt;}
._1d{width:58.538667pt;}
._1c{width:63.957333pt;}
._19{width:65.493333pt;}
._1f{width:69.269333pt;}
._14{width:70.826667pt;}
._16{width:72.149333pt;}
._20{width:73.749333pt;}
._22{width:75.136000pt;}
._21{width:83.882667pt;}
._17{width:86.826667pt;}
._13{width:200.768000pt;}
._e{width:1446.880000pt;}
._12{width:1618.485333pt;}
._f{width:1628.000000pt;}
.fs4{font-size:30.666667pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:79.000000pt;}
.y73{bottom:115.666667pt;}
.y23{bottom:117.000000pt;}
.y3b{bottom:119.666667pt;}
.y72{bottom:129.000000pt;}
.y22{bottom:130.333333pt;}
.y3a{bottom:133.000000pt;}
.y7e{bottom:137.333333pt;}
.y71{bottom:142.333333pt;}
.y21{bottom:143.666667pt;}
.y39{bottom:146.333333pt;}
.y7d{bottom:150.666667pt;}
.y70{bottom:155.666667pt;}
.y20{bottom:157.000000pt;}
.y38{bottom:159.666667pt;}
.y6f{bottom:169.000000pt;}
.y1f{bottom:170.333333pt;}
.y37{bottom:173.000000pt;}
.y7b{bottom:182.333333pt;}
.y1e{bottom:183.666667pt;}
.y36{bottom:186.333333pt;}
.y6e{bottom:195.666667pt;}
.y1d{bottom:197.000000pt;}
.y35{bottom:199.666667pt;}
.y7f{bottom:205.333333pt;}
.y7a{bottom:209.000000pt;}
.y1c{bottom:210.333333pt;}
.y34{bottom:213.000000pt;}
.y6d{bottom:222.333333pt;}
.y1b{bottom:223.666667pt;}
.y33{bottom:226.333333pt;}
.y6c{bottom:235.666667pt;}
.y1a{bottom:237.000000pt;}
.y32{bottom:239.666667pt;}
.y6b{bottom:249.000000pt;}
.y19{bottom:250.333333pt;}
.y31{bottom:253.000000pt;}
.y6a{bottom:262.333333pt;}
.y18{bottom:263.666667pt;}
.y30{bottom:266.333333pt;}
.y79{bottom:275.666667pt;}
.y17{bottom:277.000000pt;}
.y2f{bottom:279.666667pt;}
.y69{bottom:289.000000pt;}
.y16{bottom:290.333333pt;}
.y2e{bottom:293.000000pt;}
.y68{bottom:302.333333pt;}
.y15{bottom:303.666667pt;}
.y67{bottom:315.666667pt;}
.y14{bottom:317.000000pt;}
.y2d{bottom:317.666667pt;}
.y78{bottom:329.000000pt;}
.y13{bottom:330.333333pt;}
.y66{bottom:342.333333pt;}
.y65{bottom:355.666667pt;}
.y12{bottom:359.000000pt;}
.y64{bottom:369.000000pt;}
.y2c{bottom:371.000000pt;}
.y11{bottom:372.333333pt;}
.y63{bottom:382.333333pt;}
.y2b{bottom:384.333333pt;}
.y10{bottom:385.666667pt;}
.y62{bottom:395.666667pt;}
.y2a{bottom:397.666667pt;}
.yf{bottom:399.000000pt;}
.y61{bottom:409.000000pt;}
.y29{bottom:411.000000pt;}
.ye{bottom:412.333333pt;}
.y60{bottom:422.333333pt;}
.y28{bottom:424.333333pt;}
.yd{bottom:425.666667pt;}
.y5f{bottom:435.666667pt;}
.y27{bottom:437.666667pt;}
.yc{bottom:439.000000pt;}
.y5e{bottom:449.000000pt;}
.y26{bottom:451.000000pt;}
.yb{bottom:452.333333pt;}
.y5d{bottom:462.333333pt;}
.y25{bottom:464.333333pt;}
.ya{bottom:465.666667pt;}
.y77{bottom:475.666667pt;}
.y24{bottom:477.666667pt;}
.y9{bottom:479.000000pt;}
.y5c{bottom:489.000000pt;}
.y5b{bottom:502.333333pt;}
.y8{bottom:503.666667pt;}
.y5a{bottom:515.666667pt;}
.y76{bottom:529.000000pt;}
.y59{bottom:542.333333pt;}
.y58{bottom:555.666667pt;}
.y75{bottom:569.000000pt;}
.y82{bottom:571.000000pt;}
.y57{bottom:582.333333pt;}
.y81{bottom:584.333333pt;}
.y56{bottom:595.666667pt;}
.y80{bottom:597.666667pt;}
.y55{bottom:609.000000pt;}
.y54{bottom:622.333333pt;}
.y9d{bottom:633.333333pt;}
.y53{bottom:635.666667pt;}
.y7{bottom:643.333333pt;}
.y52{bottom:649.000000pt;}
.y6{bottom:656.666667pt;}
.y51{bottom:662.333333pt;}
.y74{bottom:675.666667pt;}
.y5{bottom:681.666667pt;}
.y50{bottom:689.000000pt;}
.y4f{bottom:702.333333pt;}
.y4e{bottom:715.666667pt;}
.y4d{bottom:729.000000pt;}
.y9c{bottom:735.333333pt;}
.y8f{bottom:738.000000pt;}
.y4c{bottom:742.333333pt;}
.y9b{bottom:747.333333pt;}
.y8e{bottom:750.000000pt;}
.y4b{bottom:755.666667pt;}
.y8d{bottom:762.000000pt;}
.y9a{bottom:766.666667pt;}
.y7c{bottom:769.000000pt;}
.y4a{bottom:782.333333pt;}
.y99{bottom:786.333333pt;}
.y8c{bottom:794.333333pt;}
.y49{bottom:795.666667pt;}
.y4{bottom:797.666667pt;}
.y98{bottom:798.333333pt;}
.y48{bottom:809.000000pt;}
.y3{bottom:811.000000pt;}
.y8b{bottom:814.666667pt;}
.y97{bottom:818.000000pt;}
.y47{bottom:822.333333pt;}
.y8a{bottom:826.666667pt;}
.y96{bottom:830.000000pt;}
.y46{bottom:835.666667pt;}
.y89{bottom:838.666667pt;}
.y45{bottom:849.000000pt;}
.y95{bottom:849.333333pt;}
.y2{bottom:854.666667pt;}
.y88{bottom:859.000000pt;}
.y94{bottom:861.333333pt;}
.y44{bottom:862.333333pt;}
.y93{bottom:873.333333pt;}
.y43{bottom:875.666667pt;}
.y1{bottom:878.666667pt;}
.y87{bottom:879.333333pt;}
.y42{bottom:889.000000pt;}
.y86{bottom:891.333333pt;}
.y92{bottom:893.000000pt;}
.y41{bottom:902.333333pt;}
.y85{bottom:911.666667pt;}
.y91{bottom:912.333333pt;}
.y40{bottom:915.666667pt;}
.y84{bottom:923.666667pt;}
.y90{bottom:924.333333pt;}
.y3f{bottom:929.000000pt;}
.y3e{bottom:942.333333pt;}
.y83{bottom:943.333333pt;}
.y3c{bottom:984.333333pt;}
.h6{height:41.875000pt;}
.h9{height:47.109375pt;}
.h8{height:48.375000pt;}
.h7{height:52.317708pt;}
.h3{height:52.343750pt;}
.h2{height:53.750000pt;}
.h5{height:57.578125pt;}
.h4{height:59.125000pt;}
.h1{height:96.750000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:86.833333pt;}
.x3{left:101.833333pt;}
.x4{left:392.166667pt;}
.x2{left:423.166667pt;}
.x5{left:438.166667pt;}
}




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