
    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_9760025d8c7f8e1a2bf0e34b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_ee345344d43928ab17a08bf5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_95a0cd70766d6f7797527f79.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1051fd0ed4772366657f990c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087402;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_875a84352c9445b57bc19287.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.236400px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.624960px;}
.ls4{letter-spacing:49.985280px;}
.ls1{letter-spacing:59.345280px;}
.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:-72.000000px;}
.ws1{word-spacing:-66.240000px;}
.ws5{word-spacing:-14.572800px;}
.ws2{word-spacing:-11.880000px;}
.ws4{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.287360px;}
._0{width:1.195200px;}
._2{width:17.998560px;}
.fc5{color:rgb(54,95,145);}
.fc4{color:rgb(15,36,62);}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(84,141,212);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(74,69,42);}
.fc0{color:rgb(79,129,189);}
.fs2{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:2.910000px;}
.y31{bottom:2.955000px;}
.y32{bottom:3.060000px;}
.y19{bottom:3.600000px;}
.y43{bottom:3.774000px;}
.yc{bottom:3.780000px;}
.y6d{bottom:4.500000px;}
.y41{bottom:4.674000px;}
.y5b{bottom:5.580000px;}
.y69{bottom:6.480000px;}
.y66{bottom:13.314000px;}
.y33{bottom:17.640000px;}
.y30{bottom:18.615000px;}
.y3c{bottom:19.620000px;}
.y57{bottom:21.060000px;}
.y38{bottom:21.420000px;}
.y62{bottom:22.185000px;}
.y18{bottom:22.860000px;}
.y42{bottom:23.034000px;}
.yb{bottom:23.040000px;}
.y5f{bottom:23.085000px;}
.y40{bottom:23.934000px;}
.y25{bottom:23.940000px;}
.y5a{bottom:24.840000px;}
.y1a{bottom:25.740000px;}
.y6b{bottom:25.920000px;}
.y20{bottom:26.640000px;}
.y68{bottom:28.614000px;}
.y65{bottom:32.574000px;}
.y2e{bottom:35.280000px;}
.y2a{bottom:37.080000px;}
.y3b{bottom:38.925000px;}
.y37{bottom:40.725000px;}
.y56{bottom:41.400000px;}
.y61{bottom:41.445000px;}
.y4d{bottom:42.300000px;}
.y5e{bottom:42.345000px;}
.ya{bottom:42.480000px;}
.y17{bottom:43.200000px;}
.y24{bottom:43.230000px;}
.y50{bottom:43.380000px;}
.y59{bottom:44.100000px;}
.y71{bottom:44.145000px;}
.y12{bottom:45.000000px;}
.y1f{bottom:45.930000px;}
.y67{bottom:50.934000px;}
.y64{bottom:52.014000px;}
.y2d{bottom:54.540000px;}
.y29{bottom:56.340000px;}
.y5{bottom:57.456000px;}
.y3a{bottom:58.185000px;}
.y36{bottom:60.165000px;}
.y55{bottom:60.660000px;}
.y60{bottom:60.705000px;}
.y6e{bottom:61.560000px;}
.y9{bottom:61.740000px;}
.y5d{bottom:61.785000px;}
.y47{bottom:62.460000px;}
.y72{bottom:62.505000px;}
.y16{bottom:62.640000px;}
.y23{bottom:63.390000px;}
.y70{bottom:63.585000px;}
.y11{bottom:64.440000px;}
.y1e{bottom:65.370000px;}
.y2c{bottom:74.880000px;}
.y28{bottom:75.780000px;}
.y39{bottom:78.525000px;}
.y35{bottom:79.425000px;}
.y54{bottom:79.950000px;}
.y51{bottom:81.000000px;}
.y53{bottom:81.030000px;}
.y15{bottom:81.900000px;}
.y4f{bottom:82.080000px;}
.y46{bottom:82.800000px;}
.y4c{bottom:82.845000px;}
.y10{bottom:83.700000px;}
.y22{bottom:83.730000px;}
.y4a{bottom:83.745000px;}
.y1d{bottom:84.630000px;}
.y4{bottom:92.376000px;}
.y2b{bottom:94.140000px;}
.y27{bottom:95.040000px;}
.y45{bottom:102.060000px;}
.y4b{bottom:102.105000px;}
.y14{bottom:102.240000px;}
.y21{bottom:102.990000px;}
.yf{bottom:103.140000px;}
.y49{bottom:103.185000px;}
.y1c{bottom:104.070000px;}
.y13{bottom:121.545000px;}
.ye{bottom:122.445000px;}
.y63{bottom:140.796000px;}
.y3f{bottom:149.076000px;}
.y34{bottom:189.390000px;}
.y3d{bottom:189.540000px;}
.y5c{bottom:209.190000px;}
.y26{bottom:285.375000px;}
.y2f{bottom:285.480000px;}
.y58{bottom:287.355000px;}
.y52{bottom:348.015000px;}
.y1b{bottom:396.975000px;}
.y4e{bottom:445.425000px;}
.yd{bottom:517.425000px;}
.y48{bottom:543.885000px;}
.y73{bottom:564.945000px;}
.y6f{bottom:581.685000px;}
.y8{bottom:656.250000px;}
.y6c{bottom:661.650000px;}
.y44{bottom:663.450000px;}
.y6a{bottom:740.670000px;}
.y7{bottom:741.570000px;}
.y6{bottom:765.870000px;}
.y3{bottom:811.410000px;}
.y2{bottom:830.700000px;}
.y1{bottom:849.780000px;}
.h3{height:36.336094px;}
.hd{height:39.600000px;}
.h15{height:41.580000px;}
.h9{height:46.933594px;}
.h1{height:51.998203px;}
.ha{height:57.571875px;}
.h2{height:57.636562px;}
.h12{height:59.760000px;}
.h4{height:63.210938px;}
.h14{height:67.680000px;}
.h5{height:77.400000px;}
.h13{height:77.436000px;}
.h16{height:78.300000px;}
.h17{height:79.236000px;}
.hc{height:95.040000px;}
.hb{height:95.076000px;}
.h11{height:96.696000px;}
.h10{height:97.740000px;}
.h8{height:110.700000px;}
.he{height:118.800000px;}
.hf{height:118.836000px;}
.h7{height:119.736000px;}
.h6{height:138.096000px;}
.h0{height:918.000000px;}
.w3{width:147.636000px;}
.w6{width:168.660000px;}
.w2{width:172.830000px;}
.w4{width:177.480000px;}
.w7{width:318.060000px;}
.w5{width:318.135000px;}
.w1{width:1187.999982px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.xb{left:34.740000px;}
.xc{left:61.770000px;}
.xf{left:88.770000px;}
.x5{left:100.260000px;}
.x3{left:107.999982px;}
.x10{left:115.770000px;}
.xd{left:131.970000px;}
.xe{left:223.230000px;}
.x7{left:273.810000px;}
.x8{left:422.175000px;}
.x1{left:506.774982px;}
.x2{left:527.654982px;}
.x9{left:600.375000px;}
.xa{left:919.230000px;}
.x4{left:981.689982px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.210133pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.555520pt;}
.ls4{letter-spacing:44.431360pt;}
.ls1{letter-spacing:52.751360pt;}
.ws0{word-spacing:-64.000000pt;}
.ws1{word-spacing:-58.880000pt;}
.ws5{word-spacing:-12.953600pt;}
.ws2{word-spacing:-10.560000pt;}
.ws4{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-1.144320pt;}
._0{width:1.062400pt;}
._2{width:15.998720pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:2.586667pt;}
.y31{bottom:2.626667pt;}
.y32{bottom:2.720000pt;}
.y19{bottom:3.200000pt;}
.y43{bottom:3.354667pt;}
.yc{bottom:3.360000pt;}
.y6d{bottom:4.000000pt;}
.y41{bottom:4.154667pt;}
.y5b{bottom:4.960000pt;}
.y69{bottom:5.760000pt;}
.y66{bottom:11.834667pt;}
.y33{bottom:15.680000pt;}
.y30{bottom:16.546667pt;}
.y3c{bottom:17.440000pt;}
.y57{bottom:18.720000pt;}
.y38{bottom:19.040000pt;}
.y62{bottom:19.720000pt;}
.y18{bottom:20.320000pt;}
.y42{bottom:20.474667pt;}
.yb{bottom:20.480000pt;}
.y5f{bottom:20.520000pt;}
.y40{bottom:21.274667pt;}
.y25{bottom:21.280000pt;}
.y5a{bottom:22.080000pt;}
.y1a{bottom:22.880000pt;}
.y6b{bottom:23.040000pt;}
.y20{bottom:23.680000pt;}
.y68{bottom:25.434667pt;}
.y65{bottom:28.954667pt;}
.y2e{bottom:31.360000pt;}
.y2a{bottom:32.960000pt;}
.y3b{bottom:34.600000pt;}
.y37{bottom:36.200000pt;}
.y56{bottom:36.800000pt;}
.y61{bottom:36.840000pt;}
.y4d{bottom:37.600000pt;}
.y5e{bottom:37.640000pt;}
.ya{bottom:37.760000pt;}
.y17{bottom:38.400000pt;}
.y24{bottom:38.426667pt;}
.y50{bottom:38.560000pt;}
.y59{bottom:39.200000pt;}
.y71{bottom:39.240000pt;}
.y12{bottom:40.000000pt;}
.y1f{bottom:40.826667pt;}
.y67{bottom:45.274667pt;}
.y64{bottom:46.234667pt;}
.y2d{bottom:48.480000pt;}
.y29{bottom:50.080000pt;}
.y5{bottom:51.072000pt;}
.y3a{bottom:51.720000pt;}
.y36{bottom:53.480000pt;}
.y55{bottom:53.920000pt;}
.y60{bottom:53.960000pt;}
.y6e{bottom:54.720000pt;}
.y9{bottom:54.880000pt;}
.y5d{bottom:54.920000pt;}
.y47{bottom:55.520000pt;}
.y72{bottom:55.560000pt;}
.y16{bottom:55.680000pt;}
.y23{bottom:56.346667pt;}
.y70{bottom:56.520000pt;}
.y11{bottom:57.280000pt;}
.y1e{bottom:58.106667pt;}
.y2c{bottom:66.560000pt;}
.y28{bottom:67.360000pt;}
.y39{bottom:69.800000pt;}
.y35{bottom:70.600000pt;}
.y54{bottom:71.066667pt;}
.y51{bottom:72.000000pt;}
.y53{bottom:72.026667pt;}
.y15{bottom:72.800000pt;}
.y4f{bottom:72.960000pt;}
.y46{bottom:73.600000pt;}
.y4c{bottom:73.640000pt;}
.y10{bottom:74.400000pt;}
.y22{bottom:74.426667pt;}
.y4a{bottom:74.440000pt;}
.y1d{bottom:75.226667pt;}
.y4{bottom:82.112000pt;}
.y2b{bottom:83.680000pt;}
.y27{bottom:84.480000pt;}
.y45{bottom:90.720000pt;}
.y4b{bottom:90.760000pt;}
.y14{bottom:90.880000pt;}
.y21{bottom:91.546667pt;}
.yf{bottom:91.680000pt;}
.y49{bottom:91.720000pt;}
.y1c{bottom:92.506667pt;}
.y13{bottom:108.040000pt;}
.ye{bottom:108.840000pt;}
.y63{bottom:125.152000pt;}
.y3f{bottom:132.512000pt;}
.y34{bottom:168.346667pt;}
.y3d{bottom:168.480000pt;}
.y5c{bottom:185.946667pt;}
.y26{bottom:253.666667pt;}
.y2f{bottom:253.760000pt;}
.y58{bottom:255.426667pt;}
.y52{bottom:309.346667pt;}
.y1b{bottom:352.866667pt;}
.y4e{bottom:395.933333pt;}
.yd{bottom:459.933333pt;}
.y48{bottom:483.453333pt;}
.y73{bottom:502.173333pt;}
.y6f{bottom:517.053333pt;}
.y8{bottom:583.333333pt;}
.y6c{bottom:588.133333pt;}
.y44{bottom:589.733333pt;}
.y6a{bottom:658.373333pt;}
.y7{bottom:659.173333pt;}
.y6{bottom:680.773333pt;}
.y3{bottom:721.253333pt;}
.y2{bottom:738.400000pt;}
.y1{bottom:755.360000pt;}
.h3{height:32.298750pt;}
.hd{height:35.200000pt;}
.h15{height:36.960000pt;}
.h9{height:41.718750pt;}
.h1{height:46.220625pt;}
.ha{height:51.175000pt;}
.h2{height:51.232500pt;}
.h12{height:53.120000pt;}
.h4{height:56.187500pt;}
.h14{height:60.160000pt;}
.h5{height:68.800000pt;}
.h13{height:68.832000pt;}
.h16{height:69.600000pt;}
.h17{height:70.432000pt;}
.hc{height:84.480000pt;}
.hb{height:84.512000pt;}
.h11{height:85.952000pt;}
.h10{height:86.880000pt;}
.h8{height:98.400000pt;}
.he{height:105.600000pt;}
.hf{height:105.632000pt;}
.h7{height:106.432000pt;}
.h6{height:122.752000pt;}
.h0{height:816.000000pt;}
.w3{width:131.232000pt;}
.w6{width:149.920000pt;}
.w2{width:153.626667pt;}
.w4{width:157.760000pt;}
.w7{width:282.720000pt;}
.w5{width:282.786667pt;}
.w1{width:1055.999984pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.xb{left:30.880000pt;}
.xc{left:54.906667pt;}
.xf{left:78.906667pt;}
.x5{left:89.120000pt;}
.x3{left:95.999984pt;}
.x10{left:102.906667pt;}
.xd{left:117.306667pt;}
.xe{left:198.426667pt;}
.x7{left:243.386667pt;}
.x8{left:375.266667pt;}
.x1{left:450.466651pt;}
.x2{left:469.026651pt;}
.x9{left:533.666667pt;}
.xa{left:817.093333pt;}
.x4{left:872.613318pt;}
}




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