
    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_385a0246f518014056027f10.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.213000;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_38779829dddc54e631143ff6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.213000;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_58726981090cef19fc80b377.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.167000;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_51b694d0f181bd0a34b62993.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.213000;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_6a73394d00d72d02497567ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_b02daa31856d1126a365656f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.213000;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_3c043fd0fbe186367c8da435.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_152ee16d4725c29811de3173.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_3a2c84cf45994ac1c31b1ad6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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:ffa;src:url('chunks/assets/font_c9c2ee759ae001535ab106cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172363;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.500000px;}
.ls5{letter-spacing:-0.502200px;}
.ls3{letter-spacing:-0.366000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.311922px;}
.ls0{letter-spacing:0.421200px;}
.lsc{letter-spacing:0.491922px;}
.ls6{letter-spacing:0.588120px;}
.ls8{letter-spacing:0.617376px;}
.lse{letter-spacing:0.630000px;}
.lsd{letter-spacing:0.654000px;}
.lsb{letter-spacing:0.677376px;}
.ls1{letter-spacing:0.737376px;}
.ls4{letter-spacing:32.846340px;}
.ls7{letter-spacing:49.928340px;}
.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;}
}
.ws5{word-spacing:-19.176624px;}
.ws1{word-spacing:-18.943824px;}
.ws0{word-spacing:-18.522624px;}
.ws2{word-spacing:-18.156624px;}
.ws4{word-spacing:-17.837460px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-3.355434px;}
._2{margin-left:-2.098266px;}
._0{margin-left:-1.085310px;}
._1{width:1.093602px;}
._4{width:2.581884px;}
._5{width:3.775602px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(27,28,29);}
.fs1{font-size:65.970000px;}
.fs0{font-size:72.354000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y42{bottom:118.711408px;}
.y22{bottom:127.754908px;}
.y80{bottom:128.819908px;}
.y5a{bottom:141.587908px;}
.y41{bottom:144.248908px;}
.y7f{bottom:154.889908px;}
.y59{bottom:167.699908px;}
.y40{bottom:170.354908px;}
.y21{bottom:171.419908px;}
.y7e{bottom:180.464908px;}
.y58{bottom:193.229908px;}
.y3f{bottom:196.424908px;}
.y20{bottom:197.489908px;}
.y7d{bottom:206.534908px;}
.y3e{bottom:221.954908px;}
.y1f{bottom:223.019908px;}
.y57{bottom:236.849908px;}
.y7c{bottom:241.109908px;}
.y3d{bottom:248.069908px;}
.y1e{bottom:249.119908px;}
.y3c{bottom:273.599908px;}
.y63{bottom:274.664908px;}
.y56{bottom:281.054908px;}
.y7b{bottom:284.774908px;}
.y1d{bottom:292.754908px;}
.y62{bottom:300.734908px;}
.y91{bottom:310.304908px;}
.y7a{bottom:310.844908px;}
.y3b{bottom:317.759908px;}
.y1c{bottom:318.824908px;}
.y55{bottom:324.674908px;}
.y61{bottom:326.309908px;}
.y90{bottom:336.419908px;}
.y79{bottom:336.944908px;}
.y3a{bottom:343.334908px;}
.y1b{bottom:344.399908px;}
.y60{bottom:352.379908px;}
.y8f{bottom:361.949908px;}
.y78{bottom:362.489908px;}
.y54{bottom:368.864908px;}
.y39{bottom:369.404908px;}
.y1a{bottom:370.469908px;}
.y5f{bottom:377.909908px;}
.y77{bottom:388.544908px;}
.y38{bottom:394.934908px;}
.y19{bottom:395.999908px;}
.y8e{bottom:397.064908px;}
.y53{bottom:412.529908px;}
.y76{bottom:414.119908px;}
.y18{bottom:422.099908px;}
.y8d{bottom:431.684908px;}
.y37{bottom:438.599908px;}
.y52{bottom:456.149908px;}
.y17{bottom:456.689908px;}
.y75{bottom:458.279908px;}
.y36{bottom:464.669908px;}
.y8c{bottom:478.499908px;}
.y51{bottom:482.219908px;}
.y5e{bottom:482.759908px;}
.y74{bottom:483.824908px;}
.y35{bottom:490.769908px;}
.y16{bottom:500.879908px;}
.y8b{bottom:502.469908px;}
.y50{bottom:507.794908px;}
.y5d{bottom:508.319908px;}
.y73{bottom:509.924908px;}
.y34{bottom:525.344908px;}
.y8a{bottom:525.884908px;}
.y15{bottom:526.409908px;}
.y4f{bottom:533.864908px;}
.y5c{bottom:534.389908px;}
.y72{bottom:535.454908px;}
.y4e{bottom:559.394908px;}
.y71{bottom:561.524908px;}
.y33{bottom:568.979908px;}
.y14{bottom:570.569908px;}
.y89{bottom:572.174908px;}
.y70{bottom:587.099908px;}
.y32{bottom:595.079908px;}
.y13{bottom:596.144908px;}
.y4d{bottom:603.599908px;}
.y6f{bottom:613.169908px;}
.y31{bottom:620.624908px;}
.y12{bottom:622.214908px;}
.y6e{bottom:638.699908px;}
.y88{bottom:642.434908px;}
.y30{bottom:646.694908px;}
.y4c{bottom:647.219908px;}
.y11{bottom:647.744908px;}
.y5b{bottom:655.769908px;}
.y6d{bottom:664.814908px;}
.y2f{bottom:672.794908px;}
.y4b{bottom:673.319908px;}
.y10{bottom:673.859908px;}
.y87{bottom:688.214908px;}
.y2e{bottom:698.324908px;}
.yf{bottom:699.389908px;}
.y4a{bottom:707.909908px;}
.y6c{bottom:708.434908px;}
.y86{bottom:712.154908px;}
.y2d{bottom:724.394908px;}
.ye{bottom:725.459908px;}
.y6b{bottom:734.504908px;}
.y49{bottom:743.054908px;}
.yd{bottom:751.034908px;}
.y85{bottom:758.489908px;}
.y6a{bottom:760.079908px;}
.y2c{bottom:768.059908px;}
.yc{bottom:777.104908px;}
.y69{bottom:786.149908px;}
.y48{bottom:786.674908px;}
.yb{bottom:802.634908px;}
.y84{bottom:810.614908px;}
.y2b{bottom:811.679908px;}
.y47{bottom:812.744908px;}
.ya{bottom:828.749908px;}
.y83{bottom:836.729908px;}
.y2a{bottom:837.794908px;}
.y46{bottom:838.319908px;}
.y9{bottom:854.279908px;}
.y82{bottom:862.259908px;}
.y29{bottom:863.324908px;}
.y45{bottom:873.434908px;}
.y8{bottom:880.349908px;}
.y68{bottom:889.394908px;}
.y28{bottom:898.439908px;}
.y44{bottom:898.964908px;}
.y7{bottom:906.449908px;}
.y67{bottom:914.969908px;}
.y27{bottom:924.014908px;}
.y6{bottom:931.994908px;}
.y26{bottom:950.084908px;}
.y5{bottom:958.064908px;}
.y66{bottom:959.129908px;}
.y81{bottom:967.109908px;}
.y25{bottom:975.614908px;}
.y65{bottom:984.704908px;}
.y4{bottom:992.684908px;}
.y24{bottom:1001.714908px;}
.y64{bottom:1010.759908px;}
.y3{bottom:1018.739908px;}
.y23{bottom:1027.784908px;}
.y43{bottom:1036.304908px;}
.y2{bottom:1062.374908px;}
.h5{height:52.887665px;}
.h3{height:66.131556px;}
.h2{height:69.459840px;}
.h4{height:71.965380px;}
.h1{height:1187.999908px;}
.h0{height:1188.000000px;}
.w1{width:918.000000px;}
.w2{width:918.269986px;}
.w0{width:918.270000px;}
.x0{left:0.000000px;}
.x1{left:108.070486px;}
.x5{left:123.499486px;}
.x2{left:125.095486px;}
.x6{left:150.674986px;}
.x3{left:151.724986px;}
.x8{left:382.199986px;}
.x9{left:411.494986px;}
.x4{left:535.004986px;}
.x7{left:769.754986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.333333pt;}
.ls5{letter-spacing:-0.446400pt;}
.ls3{letter-spacing:-0.325333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.277264pt;}
.ls0{letter-spacing:0.374400pt;}
.lsc{letter-spacing:0.437264pt;}
.ls6{letter-spacing:0.522773pt;}
.ls8{letter-spacing:0.548779pt;}
.lse{letter-spacing:0.560000pt;}
.lsd{letter-spacing:0.581333pt;}
.lsb{letter-spacing:0.602112pt;}
.ls1{letter-spacing:0.655445pt;}
.ls4{letter-spacing:29.196747pt;}
.ls7{letter-spacing:44.380747pt;}
.ws5{word-spacing:-17.045888pt;}
.ws1{word-spacing:-16.838955pt;}
.ws0{word-spacing:-16.464555pt;}
.ws2{word-spacing:-16.139221pt;}
.ws4{word-spacing:-15.855520pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-2.982608pt;}
._2{margin-left:-1.865125pt;}
._0{margin-left:-0.964720pt;}
._1{width:0.972091pt;}
._4{width:2.295008pt;}
._5{width:3.356091pt;}
.fs1{font-size:58.640000pt;}
.fs0{font-size:64.314667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y42{bottom:105.521252pt;}
.y22{bottom:113.559919pt;}
.y80{bottom:114.506585pt;}
.y5a{bottom:125.855919pt;}
.y41{bottom:128.221252pt;}
.y7f{bottom:137.679919pt;}
.y59{bottom:149.066585pt;}
.y40{bottom:151.426585pt;}
.y21{bottom:152.373252pt;}
.y7e{bottom:160.413252pt;}
.y58{bottom:171.759919pt;}
.y3f{bottom:174.599919pt;}
.y20{bottom:175.546585pt;}
.y7d{bottom:183.586585pt;}
.y3e{bottom:197.293252pt;}
.y1f{bottom:198.239919pt;}
.y57{bottom:210.533252pt;}
.y7c{bottom:214.319919pt;}
.y3d{bottom:220.506585pt;}
.y1e{bottom:221.439919pt;}
.y3c{bottom:243.199919pt;}
.y63{bottom:244.146585pt;}
.y56{bottom:249.826585pt;}
.y7b{bottom:253.133252pt;}
.y1d{bottom:260.226585pt;}
.y62{bottom:267.319919pt;}
.y91{bottom:275.826585pt;}
.y7a{bottom:276.306585pt;}
.y3b{bottom:282.453252pt;}
.y1c{bottom:283.399919pt;}
.y55{bottom:288.599919pt;}
.y61{bottom:290.053252pt;}
.y90{bottom:299.039919pt;}
.y79{bottom:299.506585pt;}
.y3a{bottom:305.186585pt;}
.y1b{bottom:306.133252pt;}
.y60{bottom:313.226585pt;}
.y8f{bottom:321.733252pt;}
.y78{bottom:322.213252pt;}
.y54{bottom:327.879919pt;}
.y39{bottom:328.359919pt;}
.y1a{bottom:329.306585pt;}
.y5f{bottom:335.919919pt;}
.y77{bottom:345.373252pt;}
.y38{bottom:351.053252pt;}
.y19{bottom:351.999919pt;}
.y8e{bottom:352.946585pt;}
.y53{bottom:366.693252pt;}
.y76{bottom:368.106585pt;}
.y18{bottom:375.199919pt;}
.y8d{bottom:383.719919pt;}
.y37{bottom:389.866585pt;}
.y52{bottom:405.466585pt;}
.y17{bottom:405.946585pt;}
.y75{bottom:407.359919pt;}
.y36{bottom:413.039919pt;}
.y8c{bottom:425.333252pt;}
.y51{bottom:428.639919pt;}
.y5e{bottom:429.119919pt;}
.y74{bottom:430.066585pt;}
.y35{bottom:436.239919pt;}
.y16{bottom:445.226585pt;}
.y8b{bottom:446.639919pt;}
.y50{bottom:451.373252pt;}
.y5d{bottom:451.839919pt;}
.y73{bottom:453.266585pt;}
.y34{bottom:466.973252pt;}
.y8a{bottom:467.453252pt;}
.y15{bottom:467.919919pt;}
.y4f{bottom:474.546585pt;}
.y5c{bottom:475.013252pt;}
.y72{bottom:475.959919pt;}
.y4e{bottom:497.239919pt;}
.y71{bottom:499.133252pt;}
.y33{bottom:505.759919pt;}
.y14{bottom:507.173252pt;}
.y89{bottom:508.599919pt;}
.y70{bottom:521.866585pt;}
.y32{bottom:528.959919pt;}
.y13{bottom:529.906585pt;}
.y4d{bottom:536.533252pt;}
.y6f{bottom:545.039919pt;}
.y31{bottom:551.666585pt;}
.y12{bottom:553.079919pt;}
.y6e{bottom:567.733252pt;}
.y88{bottom:571.053252pt;}
.y30{bottom:574.839919pt;}
.y4c{bottom:575.306585pt;}
.y11{bottom:575.773252pt;}
.y5b{bottom:582.906585pt;}
.y6d{bottom:590.946585pt;}
.y2f{bottom:598.039919pt;}
.y4b{bottom:598.506585pt;}
.y10{bottom:598.986585pt;}
.y87{bottom:611.746585pt;}
.y2e{bottom:620.733252pt;}
.yf{bottom:621.679919pt;}
.y4a{bottom:629.253252pt;}
.y6c{bottom:629.719919pt;}
.y86{bottom:633.026585pt;}
.y2d{bottom:643.906585pt;}
.ye{bottom:644.853252pt;}
.y6b{bottom:652.893252pt;}
.y49{bottom:660.493252pt;}
.yd{bottom:667.586585pt;}
.y85{bottom:674.213252pt;}
.y6a{bottom:675.626585pt;}
.y2c{bottom:682.719919pt;}
.yc{bottom:690.759919pt;}
.y69{bottom:698.799919pt;}
.y48{bottom:699.266585pt;}
.yb{bottom:713.453252pt;}
.y84{bottom:720.546585pt;}
.y2b{bottom:721.493252pt;}
.y47{bottom:722.439919pt;}
.ya{bottom:736.666585pt;}
.y83{bottom:743.759919pt;}
.y2a{bottom:744.706585pt;}
.y46{bottom:745.173252pt;}
.y9{bottom:759.359919pt;}
.y82{bottom:766.453252pt;}
.y29{bottom:767.399919pt;}
.y45{bottom:776.386585pt;}
.y8{bottom:782.533252pt;}
.y68{bottom:790.573252pt;}
.y28{bottom:798.613252pt;}
.y44{bottom:799.079919pt;}
.y7{bottom:805.733252pt;}
.y67{bottom:813.306585pt;}
.y27{bottom:821.346585pt;}
.y6{bottom:828.439919pt;}
.y26{bottom:844.519919pt;}
.y5{bottom:851.613252pt;}
.y66{bottom:852.559919pt;}
.y81{bottom:859.653252pt;}
.y25{bottom:867.213252pt;}
.y65{bottom:875.293252pt;}
.y4{bottom:882.386585pt;}
.y24{bottom:890.413252pt;}
.y64{bottom:898.453252pt;}
.y3{bottom:905.546585pt;}
.y23{bottom:913.586585pt;}
.y43{bottom:921.159919pt;}
.y2{bottom:944.333252pt;}
.h5{height:47.011258pt;}
.h3{height:58.783605pt;}
.h2{height:61.742080pt;}
.h4{height:63.969227pt;}
.h1{height:1055.999919pt;}
.h0{height:1056.000000pt;}
.w1{width:816.000000pt;}
.w2{width:816.239988pt;}
.w0{width:816.240000pt;}
.x0{left:0.000000pt;}
.x1{left:96.062655pt;}
.x5{left:109.777321pt;}
.x2{left:111.195988pt;}
.x6{left:133.933321pt;}
.x3{left:134.866655pt;}
.x8{left:339.733321pt;}
.x9{left:365.773321pt;}
.x4{left:475.559988pt;}
.x7{left:684.226655pt;}
}




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