
    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_41981b1b1e370509774b9e41.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_5dfbd4a17ae55e94ec20012d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_ee00e2c61f0451708bfe7732.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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;}
.ls0{letter-spacing:0.000000px;}
.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:-18.984000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._4{width:1.224000px;}
._0{width:5.587200px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y18{bottom:0.042000px;}
.yc{bottom:8.040000px;}
.yd6{bottom:56.491500px;}
.y49{bottom:61.291500px;}
.yb9{bottom:61.741500px;}
.y77{bottom:62.341500px;}
.y98{bottom:62.791500px;}
.yd5{bottom:77.191500px;}
.yb8{bottom:82.441500px;}
.y76{bottom:83.041500px;}
.y97{bottom:83.491500px;}
.y13{bottom:99.795000px;}
.y48{bottom:103.141500px;}
.yac{bottom:103.741500px;}
.y96{bottom:104.191500px;}
.yd4{bottom:119.191500px;}
.y47{bottom:123.841500px;}
.yab{bottom:124.441500px;}
.y75{bottom:124.891500px;}
.y16{bottom:135.750000px;}
.yd3{bottom:139.891500px;}
.y46{bottom:144.541500px;}
.yaa{bottom:145.141500px;}
.y74{bottom:145.591500px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y15{bottom:157.830000px;}
.y45{bottom:165.241500px;}
.ya9{bottom:165.841500px;}
.y73{bottom:166.291500px;}
.yd2{bottom:181.741500px;}
.y44{bottom:185.941500px;}
.ya8{bottom:186.541500px;}
.y72{bottom:186.991500px;}
.yd1{bottom:202.441500px;}
.y43{bottom:206.641500px;}
.ya7{bottom:207.241500px;}
.y71{bottom:207.691500px;}
.y95{bottom:208.291500px;}
.yd0{bottom:223.141500px;}
.y42{bottom:227.341500px;}
.ya6{bottom:227.941500px;}
.y70{bottom:228.391500px;}
.y94{bottom:228.991500px;}
.y41{bottom:248.041500px;}
.ya5{bottom:248.641500px;}
.y6f{bottom:249.091500px;}
.y93{bottom:249.691500px;}
.ycf{bottom:265.141500px;}
.y40{bottom:268.741500px;}
.ya4{bottom:269.341500px;}
.y6e{bottom:269.791500px;}
.y92{bottom:270.391500px;}
.yce{bottom:285.841500px;}
.y3f{bottom:289.441500px;}
.ya3{bottom:290.041500px;}
.y8f{bottom:290.491500px;}
.y91{bottom:291.091500px;}
.y3e{bottom:310.141500px;}
.y8e{bottom:311.191500px;}
.y6d{bottom:311.791500px;}
.ycd{bottom:327.691500px;}
.y3d{bottom:330.841500px;}
.y8d{bottom:331.891500px;}
.y6c{bottom:332.491500px;}
.ya{bottom:344.680500px;}
.ycc{bottom:348.391500px;}
.y8c{bottom:352.591500px;}
.y6b{bottom:353.191500px;}
.y3c{bottom:372.841500px;}
.y8b{bottom:373.291500px;}
.y6a{bottom:373.891500px;}
.yd{bottom:386.490000px;}
.ycb{bottom:390.391500px;}
.y3b{bottom:393.541500px;}
.y8a{bottom:393.991500px;}
.y69{bottom:394.591500px;}
.y9{bottom:395.689500px;}
.yca{bottom:411.091500px;}
.y3a{bottom:414.241500px;}
.y89{bottom:414.691500px;}
.y68{bottom:415.291500px;}
.yc9{bottom:431.791500px;}
.yb{bottom:434.850000px;}
.y39{bottom:434.941500px;}
.ya2{bottom:435.391500px;}
.y67{bottom:435.991500px;}
.y8{bottom:446.698500px;}
.y38{bottom:455.641500px;}
.ya1{bottom:456.091500px;}
.y66{bottom:456.691500px;}
.yc8{bottom:473.641500px;}
.y37{bottom:476.341500px;}
.yb7{bottom:476.791500px;}
.y88{bottom:477.391500px;}
.y90{bottom:477.841500px;}
.y10{bottom:488.055000px;}
.yc7{bottom:494.341500px;}
.y36{bottom:497.041500px;}
.yb6{bottom:497.491500px;}
.y7{bottom:497.707500px;}
.y87{bottom:498.091500px;}
.y65{bottom:498.541500px;}
.yc6{bottom:515.041500px;}
.y35{bottom:517.741500px;}
.yb5{bottom:518.191500px;}
.y86{bottom:518.791500px;}
.y64{bottom:519.241500px;}
.y11{bottom:538.230000px;}
.y34{bottom:538.441500px;}
.y85{bottom:539.491500px;}
.y63{bottom:539.941500px;}
.y6{bottom:548.716500px;}
.yc5{bottom:557.041500px;}
.y84{bottom:560.191500px;}
.y62{bottom:560.641500px;}
.y33{bottom:580.291500px;}
.ya0{bottom:580.891500px;}
.y61{bottom:581.341500px;}
.y17{bottom:589.605000px;}
.yc4{bottom:598.891500px;}
.y5{bottom:599.725500px;}
.y32{bottom:600.991500px;}
.y9f{bottom:601.591500px;}
.y60{bottom:602.041500px;}
.ye5{bottom:619.141500px;}
.yc3{bottom:619.591500px;}
.y31{bottom:621.691500px;}
.yb4{bottom:622.291500px;}
.y5f{bottom:622.741500px;}
.ye{bottom:631.920000px;}
.ye4{bottom:639.841500px;}
.y30{bottom:642.391500px;}
.yb3{bottom:642.991500px;}
.y5e{bottom:643.441500px;}
.ye3{bottom:660.541500px;}
.yc2{bottom:661.591500px;}
.y2f{bottom:663.091500px;}
.yb2{bottom:663.691500px;}
.y83{bottom:664.141500px;}
.y2e{bottom:683.791500px;}
.yb1{bottom:684.391500px;}
.y82{bottom:684.841500px;}
.y5d{bottom:685.441500px;}
.ye2{bottom:702.391500px;}
.yc1{bottom:703.441500px;}
.y2d{bottom:704.491500px;}
.y81{bottom:705.541500px;}
.y5c{bottom:706.141500px;}
.yc0{bottom:724.141500px;}
.y2c{bottom:725.191500px;}
.y80{bottom:726.241500px;}
.y5b{bottom:726.841500px;}
.ye1{bottom:744.391500px;}
.y2b{bottom:745.891500px;}
.y7f{bottom:746.941500px;}
.y5a{bottom:747.541500px;}
.ye0{bottom:765.091500px;}
.ybf{bottom:766.141500px;}
.y7e{bottom:767.641500px;}
.y59{bottom:768.241500px;}
.y4{bottom:778.225500px;}
.ybe{bottom:786.841500px;}
.y2a{bottom:787.891500px;}
.y7d{bottom:788.341500px;}
.y58{bottom:788.941500px;}
.ydf{bottom:806.941500px;}
.y29{bottom:808.591500px;}
.y7c{bottom:809.041500px;}
.y57{bottom:809.641500px;}
.y12{bottom:815.670000px;}
.yde{bottom:827.641500px;}
.ybd{bottom:828.691500px;}
.y28{bottom:829.291500px;}
.y9e{bottom:829.741500px;}
.y56{bottom:830.341500px;}
.ydd{bottom:848.341500px;}
.ybc{bottom:849.391500px;}
.y27{bottom:849.991500px;}
.y9d{bottom:850.441500px;}
.y55{bottom:851.041500px;}
.y26{bottom:870.691500px;}
.y9c{bottom:871.141500px;}
.y54{bottom:871.741500px;}
.ydc{bottom:890.341500px;}
.y25{bottom:891.391500px;}
.y9b{bottom:891.841500px;}
.y53{bottom:892.441500px;}
.y3{bottom:905.716500px;}
.ydb{bottom:911.041500px;}
.y24{bottom:912.091500px;}
.yb0{bottom:912.541500px;}
.y52{bottom:913.141500px;}
.y23{bottom:932.791500px;}
.yaf{bottom:933.241500px;}
.y51{bottom:933.841500px;}
.yda{bottom:952.891500px;}
.y22{bottom:953.491500px;}
.ybb{bottom:953.941500px;}
.y7b{bottom:954.541500px;}
.y2{bottom:964.228500px;}
.yba{bottom:974.641500px;}
.y7a{bottom:975.241500px;}
.y50{bottom:975.691500px;}
.y1{bottom:989.716500px;}
.yd9{bottom:994.891500px;}
.y21{bottom:995.341500px;}
.y79{bottom:995.941500px;}
.y4f{bottom:996.391500px;}
.yd8{bottom:1015.591500px;}
.y78{bottom:1016.641500px;}
.y4e{bottom:1017.091500px;}
.y20{bottom:1037.341500px;}
.y4d{bottom:1037.791500px;}
.yd7{bottom:1057.441500px;}
.y1f{bottom:1058.041500px;}
.y4c{bottom:1058.491500px;}
.y1e{bottom:1078.741500px;}
.y4b{bottom:1079.191500px;}
.y9a{bottom:1099.441500px;}
.y4a{bottom:1099.891500px;}
.y99{bottom:1120.141500px;}
.y1d{bottom:1120.591500px;}
.yae{bottom:1140.841500px;}
.y1c{bottom:1141.291500px;}
.yad{bottom:1161.541500px;}
.y1b{bottom:1161.991500px;}
.y1a{bottom:1182.691500px;}
.y19{bottom:1203.391500px;}
.h4{height:33.000000px;}
.hb{height:50.695312px;}
.h3{height:58.406250px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.ha{height:1262.791500px;}
.h9{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wa{width:892.912500px;}
.w0{width:892.920000px;}
.w9{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:85.200000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.088000pt;}
._0{width:4.966400pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:0.037333pt;}
.yc{bottom:7.146667pt;}
.yd6{bottom:50.214667pt;}
.y49{bottom:54.481333pt;}
.yb9{bottom:54.881333pt;}
.y77{bottom:55.414667pt;}
.y98{bottom:55.814667pt;}
.yd5{bottom:68.614667pt;}
.yb8{bottom:73.281333pt;}
.y76{bottom:73.814667pt;}
.y97{bottom:74.214667pt;}
.y13{bottom:88.706667pt;}
.y48{bottom:91.681333pt;}
.yac{bottom:92.214667pt;}
.y96{bottom:92.614667pt;}
.yd4{bottom:105.948000pt;}
.y47{bottom:110.081333pt;}
.yab{bottom:110.614667pt;}
.y75{bottom:111.014667pt;}
.y16{bottom:120.666667pt;}
.yd3{bottom:124.348000pt;}
.y46{bottom:128.481333pt;}
.yaa{bottom:129.014667pt;}
.y74{bottom:129.414667pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y15{bottom:140.293333pt;}
.y45{bottom:146.881333pt;}
.ya9{bottom:147.414667pt;}
.y73{bottom:147.814667pt;}
.yd2{bottom:161.548000pt;}
.y44{bottom:165.281333pt;}
.ya8{bottom:165.814667pt;}
.y72{bottom:166.214667pt;}
.yd1{bottom:179.948000pt;}
.y43{bottom:183.681333pt;}
.ya7{bottom:184.214667pt;}
.y71{bottom:184.614667pt;}
.y95{bottom:185.148000pt;}
.yd0{bottom:198.348000pt;}
.y42{bottom:202.081333pt;}
.ya6{bottom:202.614667pt;}
.y70{bottom:203.014667pt;}
.y94{bottom:203.548000pt;}
.y41{bottom:220.481333pt;}
.ya5{bottom:221.014667pt;}
.y6f{bottom:221.414667pt;}
.y93{bottom:221.948000pt;}
.ycf{bottom:235.681333pt;}
.y40{bottom:238.881333pt;}
.ya4{bottom:239.414667pt;}
.y6e{bottom:239.814667pt;}
.y92{bottom:240.348000pt;}
.yce{bottom:254.081333pt;}
.y3f{bottom:257.281333pt;}
.ya3{bottom:257.814667pt;}
.y8f{bottom:258.214667pt;}
.y91{bottom:258.748000pt;}
.y3e{bottom:275.681333pt;}
.y8e{bottom:276.614667pt;}
.y6d{bottom:277.148000pt;}
.ycd{bottom:291.281333pt;}
.y3d{bottom:294.081333pt;}
.y8d{bottom:295.014667pt;}
.y6c{bottom:295.548000pt;}
.ya{bottom:306.382667pt;}
.ycc{bottom:309.681333pt;}
.y8c{bottom:313.414667pt;}
.y6b{bottom:313.948000pt;}
.y3c{bottom:331.414667pt;}
.y8b{bottom:331.814667pt;}
.y6a{bottom:332.348000pt;}
.yd{bottom:343.546667pt;}
.ycb{bottom:347.014667pt;}
.y3b{bottom:349.814667pt;}
.y8a{bottom:350.214667pt;}
.y69{bottom:350.748000pt;}
.y9{bottom:351.724000pt;}
.yca{bottom:365.414667pt;}
.y3a{bottom:368.214667pt;}
.y89{bottom:368.614667pt;}
.y68{bottom:369.148000pt;}
.yc9{bottom:383.814667pt;}
.yb{bottom:386.533333pt;}
.y39{bottom:386.614667pt;}
.ya2{bottom:387.014667pt;}
.y67{bottom:387.548000pt;}
.y8{bottom:397.065333pt;}
.y38{bottom:405.014667pt;}
.ya1{bottom:405.414667pt;}
.y66{bottom:405.948000pt;}
.yc8{bottom:421.014667pt;}
.y37{bottom:423.414667pt;}
.yb7{bottom:423.814667pt;}
.y88{bottom:424.348000pt;}
.y90{bottom:424.748000pt;}
.y10{bottom:433.826667pt;}
.yc7{bottom:439.414667pt;}
.y36{bottom:441.814667pt;}
.yb6{bottom:442.214667pt;}
.y7{bottom:442.406667pt;}
.y87{bottom:442.748000pt;}
.y65{bottom:443.148000pt;}
.yc6{bottom:457.814667pt;}
.y35{bottom:460.214667pt;}
.yb5{bottom:460.614667pt;}
.y86{bottom:461.148000pt;}
.y64{bottom:461.548000pt;}
.y11{bottom:478.426667pt;}
.y34{bottom:478.614667pt;}
.y85{bottom:479.548000pt;}
.y63{bottom:479.948000pt;}
.y6{bottom:487.748000pt;}
.yc5{bottom:495.148000pt;}
.y84{bottom:497.948000pt;}
.y62{bottom:498.348000pt;}
.y33{bottom:515.814667pt;}
.ya0{bottom:516.348000pt;}
.y61{bottom:516.748000pt;}
.y17{bottom:524.093333pt;}
.yc4{bottom:532.348000pt;}
.y5{bottom:533.089333pt;}
.y32{bottom:534.214667pt;}
.y9f{bottom:534.748000pt;}
.y60{bottom:535.148000pt;}
.ye5{bottom:550.348000pt;}
.yc3{bottom:550.748000pt;}
.y31{bottom:552.614667pt;}
.yb4{bottom:553.148000pt;}
.y5f{bottom:553.548000pt;}
.ye{bottom:561.706667pt;}
.ye4{bottom:568.748000pt;}
.y30{bottom:571.014667pt;}
.yb3{bottom:571.548000pt;}
.y5e{bottom:571.948000pt;}
.ye3{bottom:587.148000pt;}
.yc2{bottom:588.081333pt;}
.y2f{bottom:589.414667pt;}
.yb2{bottom:589.948000pt;}
.y83{bottom:590.348000pt;}
.y2e{bottom:607.814667pt;}
.yb1{bottom:608.348000pt;}
.y82{bottom:608.748000pt;}
.y5d{bottom:609.281333pt;}
.ye2{bottom:624.348000pt;}
.yc1{bottom:625.281333pt;}
.y2d{bottom:626.214667pt;}
.y81{bottom:627.148000pt;}
.y5c{bottom:627.681333pt;}
.yc0{bottom:643.681333pt;}
.y2c{bottom:644.614667pt;}
.y80{bottom:645.548000pt;}
.y5b{bottom:646.081333pt;}
.ye1{bottom:661.681333pt;}
.y2b{bottom:663.014667pt;}
.y7f{bottom:663.948000pt;}
.y5a{bottom:664.481333pt;}
.ye0{bottom:680.081333pt;}
.ybf{bottom:681.014667pt;}
.y7e{bottom:682.348000pt;}
.y59{bottom:682.881333pt;}
.y4{bottom:691.756000pt;}
.ybe{bottom:699.414667pt;}
.y2a{bottom:700.348000pt;}
.y7d{bottom:700.748000pt;}
.y58{bottom:701.281333pt;}
.ydf{bottom:717.281333pt;}
.y29{bottom:718.748000pt;}
.y7c{bottom:719.148000pt;}
.y57{bottom:719.681333pt;}
.y12{bottom:725.040000pt;}
.yde{bottom:735.681333pt;}
.ybd{bottom:736.614667pt;}
.y28{bottom:737.148000pt;}
.y9e{bottom:737.548000pt;}
.y56{bottom:738.081333pt;}
.ydd{bottom:754.081333pt;}
.ybc{bottom:755.014667pt;}
.y27{bottom:755.548000pt;}
.y9d{bottom:755.948000pt;}
.y55{bottom:756.481333pt;}
.y26{bottom:773.948000pt;}
.y9c{bottom:774.348000pt;}
.y54{bottom:774.881333pt;}
.ydc{bottom:791.414667pt;}
.y25{bottom:792.348000pt;}
.y9b{bottom:792.748000pt;}
.y53{bottom:793.281333pt;}
.y3{bottom:805.081333pt;}
.ydb{bottom:809.814667pt;}
.y24{bottom:810.748000pt;}
.yb0{bottom:811.148000pt;}
.y52{bottom:811.681333pt;}
.y23{bottom:829.148000pt;}
.yaf{bottom:829.548000pt;}
.y51{bottom:830.081333pt;}
.yda{bottom:847.014667pt;}
.y22{bottom:847.548000pt;}
.ybb{bottom:847.948000pt;}
.y7b{bottom:848.481333pt;}
.y2{bottom:857.092000pt;}
.yba{bottom:866.348000pt;}
.y7a{bottom:866.881333pt;}
.y50{bottom:867.281333pt;}
.y1{bottom:879.748000pt;}
.yd9{bottom:884.348000pt;}
.y21{bottom:884.748000pt;}
.y79{bottom:885.281333pt;}
.y4f{bottom:885.681333pt;}
.yd8{bottom:902.748000pt;}
.y78{bottom:903.681333pt;}
.y4e{bottom:904.081333pt;}
.y20{bottom:922.081333pt;}
.y4d{bottom:922.481333pt;}
.yd7{bottom:939.948000pt;}
.y1f{bottom:940.481333pt;}
.y4c{bottom:940.881333pt;}
.y1e{bottom:958.881333pt;}
.y4b{bottom:959.281333pt;}
.y9a{bottom:977.281333pt;}
.y4a{bottom:977.681333pt;}
.y99{bottom:995.681333pt;}
.y1d{bottom:996.081333pt;}
.yae{bottom:1014.081333pt;}
.y1c{bottom:1014.481333pt;}
.yad{bottom:1032.481333pt;}
.y1b{bottom:1032.881333pt;}
.y1a{bottom:1051.281333pt;}
.y19{bottom:1069.681333pt;}
.h4{height:29.333333pt;}
.hb{height:45.062500pt;}
.h3{height:51.916667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.ha{height:1122.481333pt;}
.h9{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wa{width:793.700000pt;}
.w0{width:793.706667pt;}
.w9{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:75.733333pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
}




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