
    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_e40f8f9a54efc5aade09b099.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_edea9bde5b3a5be8c5f7a402.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_280e360033d90ef57bc6596e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_23c254ea15cea63126ad0503.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_677a003ca5c41757892777c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_0d3c014037c2a0445cdfcffe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005859;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);}
.v2{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.180000px;}
.lsb{letter-spacing:-0.348000px;}
.ls6{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.462000px;}
.ls2{letter-spacing:0.522000px;}
.ls9{letter-spacing:0.642000px;}
.ls7{letter-spacing:0.804000px;}
.ls1{letter-spacing:1.140000px;}
.ls5{letter-spacing:1.320000px;}
.ls8{letter-spacing:43.152000px;}
.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:-30.000000px;}
.ws4{word-spacing:-18.348000px;}
.ws2{word-spacing:-16.680000px;}
.ws1{word-spacing:-10.842000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.344000px;}
._0{width:1.008000px;}
._8{width:2.424000px;}
._7{width:3.444000px;}
._5{width:5.328000px;}
._14{width:6.396000px;}
._3{width:7.452000px;}
._6{width:8.484000px;}
._4{width:9.528000px;}
._11{width:11.094000px;}
._f{width:13.506000px;}
._e{width:14.568000px;}
._1b{width:16.338000px;}
._10{width:19.782000px;}
._d{width:21.804000px;}
._c{width:23.100000px;}
._1c{width:24.864000px;}
._1d{width:25.908000px;}
._1e{width:27.210000px;}
._1a{width:30.216000px;}
._12{width:31.596000px;}
._13{width:33.066000px;}
._1f{width:35.892000px;}
._20{width:37.272000px;}
._a{width:40.992000px;}
._9{width:42.048000px;}
._16{width:43.476000px;}
._15{width:44.580000px;}
._17{width:46.716000px;}
._18{width:47.790000px;}
._19{width:50.670000px;}
._b{width:52.008000px;}
.fc4{color:transparent;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,95,145);}
.fs4{font-size:39.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:3.750000px;}
.y21{bottom:53.625000px;}
.y20{bottom:57.375000px;}
.y42{bottom:115.912500px;}
.y7a{bottom:123.787500px;}
.y1f{bottom:136.162500px;}
.y41{bottom:144.412500px;}
.y79{bottom:160.905000px;}
.y40{bottom:175.545000px;}
.y1e{bottom:179.295000px;}
.y78{bottom:182.670000px;}
.y5c{bottom:188.325000px;}
.y77{bottom:204.450000px;}
.y1d{bottom:207.825000px;}
.y3f{bottom:221.700000px;}
.y76{bottom:226.200000px;}
.y5b{bottom:231.825000px;}
.y1c{bottom:236.325000px;}
.y75{bottom:247.950000px;}
.y3e{bottom:249.825000px;}
.y1b{bottom:264.825000px;}
.y74{bottom:269.700000px;}
.y5a{bottom:275.325000px;}
.y3d{bottom:278.325000px;}
.y73{bottom:291.825000px;}
.y1a{bottom:293.325000px;}
.y3c{bottom:306.855000px;}
.y72{bottom:313.605000px;}
.y59{bottom:318.870000px;}
.y19{bottom:321.495000px;}
.y3b{bottom:335.370000px;}
.y18{bottom:349.995000px;}
.y71{bottom:357.120000px;}
.y58{bottom:362.370000px;}
.y3a{bottom:363.870000px;}
.y17{bottom:378.495000px;}
.y70{bottom:378.870000px;}
.y57{bottom:390.870000px;}
.y39{bottom:392.370000px;}
.y6f{bottom:400.995000px;}
.y16{bottom:406.995000px;}
.y56{bottom:419.370000px;}
.y38{bottom:420.855000px;}
.y6e{bottom:422.775000px;}
.y15{bottom:435.525000px;}
.y6d{bottom:444.525000px;}
.y55{bottom:447.900000px;}
.y37{bottom:449.400000px;}
.y14{bottom:464.025000px;}
.y6c{bottom:466.275000px;}
.y54{bottom:476.400000px;}
.y36{bottom:477.900000px;}
.y6b{bottom:488.025000px;}
.y13{bottom:495.150000px;}
.y35{bottom:506.400000px;}
.y53{bottom:507.150000px;}
.y6a{bottom:509.775000px;}
.y12{bottom:531.525000px;}
.y69{bottom:531.900000px;}
.y34{bottom:537.150000px;}
.y52{bottom:553.320000px;}
.y68{bottom:553.695000px;}
.y11{bottom:565.695000px;}
.y67{bottom:575.445000px;}
.y33{bottom:583.320000px;}
.y51{bottom:596.820000px;}
.y66{bottom:597.195000px;}
.y10{bottom:599.445000px;}
.y32{bottom:611.820000px;}
.y65{bottom:618.945000px;}
.y50{bottom:625.320000px;}
.yf{bottom:637.320000px;}
.y31{bottom:640.320000px;}
.y64{bottom:641.070000px;}
.y4f{bottom:653.820000px;}
.ye{bottom:660.975000px;}
.y63{bottom:662.850000px;}
.y30{bottom:668.850000px;}
.yd{bottom:680.850000px;}
.y4e{bottom:682.350000px;}
.y62{bottom:684.600000px;}
.y2f{bottom:697.350000px;}
.yc{bottom:698.100000px;}
.y61{bottom:706.350000px;}
.y4d{bottom:710.850000px;}
.yb{bottom:715.350000px;}
.y2e{bottom:725.850000px;}
.y60{bottom:728.100000px;}
.ya{bottom:732.600000px;}
.y4c{bottom:738.975000px;}
.y9{bottom:749.850000px;}
.y5f{bottom:750.225000px;}
.y2d{bottom:753.975000px;}
.y8{bottom:767.100000px;}
.y4b{bottom:767.475000px;}
.y5e{bottom:772.725000px;}
.y2c{bottom:785.130000px;}
.y7{bottom:789.630000px;}
.y4a{bottom:798.630000px;}
.y5d{bottom:813.630000px;}
.y6{bottom:817.755000px;}
.y2b{bottom:831.255000px;}
.y49{bottom:844.755000px;}
.y5{bottom:853.380000px;}
.y2a{bottom:859.755000px;}
.y48{bottom:873.255000px;}
.y29{bottom:888.255000px;}
.y4{bottom:892.005000px;}
.y47{bottom:901.800000px;}
.y28{bottom:916.800000px;}
.y3{bottom:930.300000px;}
.y27{bottom:945.300000px;}
.y2{bottom:951.300000px;}
.y46{bottom:961.050000px;}
.y26{bottom:973.800000px;}
.y25{bottom:1001.925000px;}
.y45{bottom:1007.175000px;}
.y1{bottom:1018.455000px;}
.y24{bottom:1030.455000px;}
.y44{bottom:1035.705000px;}
.y23{bottom:1061.580000px;}
.y43{bottom:1064.205000px;}
.h9{height:19.162500px;}
.h5{height:34.962891px;}
.h6{height:53.789062px;}
.h8{height:55.623047px;}
.h7{height:58.652344px;}
.ha{height:59.006836px;}
.h2{height:59.167969px;}
.h4{height:64.546875px;}
.h3{height:67.211250px;}
.h1{height:81.210938px;}
.h0{height:1188.000000px;}
.w2{width:9.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:135.074986px;}
.x2{left:170.324986px;}
.x4{left:220.199986px;}
.x1{left:345.149986px;}
.x5{left:774.345000px;}
@media print{
.v2{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.493333pt;}
.lsb{letter-spacing:-0.309333pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.410667pt;}
.ls2{letter-spacing:0.464000pt;}
.ls9{letter-spacing:0.570667pt;}
.ls7{letter-spacing:0.714667pt;}
.ls1{letter-spacing:1.013333pt;}
.ls5{letter-spacing:1.173333pt;}
.ls8{letter-spacing:38.357333pt;}
.ws0{word-spacing:-26.666667pt;}
.ws4{word-spacing:-16.309333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws1{word-spacing:-9.637333pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.194667pt;}
._0{width:0.896000pt;}
._8{width:2.154667pt;}
._7{width:3.061333pt;}
._5{width:4.736000pt;}
._14{width:5.685333pt;}
._3{width:6.624000pt;}
._6{width:7.541333pt;}
._4{width:8.469333pt;}
._11{width:9.861333pt;}
._f{width:12.005333pt;}
._e{width:12.949333pt;}
._1b{width:14.522667pt;}
._10{width:17.584000pt;}
._d{width:19.381333pt;}
._c{width:20.533333pt;}
._1c{width:22.101333pt;}
._1d{width:23.029333pt;}
._1e{width:24.186667pt;}
._1a{width:26.858667pt;}
._12{width:28.085333pt;}
._13{width:29.392000pt;}
._1f{width:31.904000pt;}
._20{width:33.130667pt;}
._a{width:36.437333pt;}
._9{width:37.376000pt;}
._16{width:38.645333pt;}
._15{width:39.626667pt;}
._17{width:41.525333pt;}
._18{width:42.480000pt;}
._19{width:45.040000pt;}
._b{width:46.229333pt;}
.fs4{font-size:34.666667pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:3.333333pt;}
.y21{bottom:47.666667pt;}
.y20{bottom:51.000000pt;}
.y42{bottom:103.033333pt;}
.y7a{bottom:110.033333pt;}
.y1f{bottom:121.033333pt;}
.y41{bottom:128.366667pt;}
.y79{bottom:143.026667pt;}
.y40{bottom:156.040000pt;}
.y1e{bottom:159.373333pt;}
.y78{bottom:162.373333pt;}
.y5c{bottom:167.400000pt;}
.y77{bottom:181.733333pt;}
.y1d{bottom:184.733333pt;}
.y3f{bottom:197.066667pt;}
.y76{bottom:201.066667pt;}
.y5b{bottom:206.066667pt;}
.y1c{bottom:210.066667pt;}
.y75{bottom:220.400000pt;}
.y3e{bottom:222.066667pt;}
.y1b{bottom:235.400000pt;}
.y74{bottom:239.733333pt;}
.y5a{bottom:244.733333pt;}
.y3d{bottom:247.400000pt;}
.y73{bottom:259.400000pt;}
.y1a{bottom:260.733333pt;}
.y3c{bottom:272.760000pt;}
.y72{bottom:278.760000pt;}
.y59{bottom:283.440000pt;}
.y19{bottom:285.773333pt;}
.y3b{bottom:298.106667pt;}
.y18{bottom:311.106667pt;}
.y71{bottom:317.440000pt;}
.y58{bottom:322.106667pt;}
.y3a{bottom:323.440000pt;}
.y17{bottom:336.440000pt;}
.y70{bottom:336.773333pt;}
.y57{bottom:347.440000pt;}
.y39{bottom:348.773333pt;}
.y6f{bottom:356.440000pt;}
.y16{bottom:361.773333pt;}
.y56{bottom:372.773333pt;}
.y38{bottom:374.093333pt;}
.y6e{bottom:375.800000pt;}
.y15{bottom:387.133333pt;}
.y6d{bottom:395.133333pt;}
.y55{bottom:398.133333pt;}
.y37{bottom:399.466667pt;}
.y14{bottom:412.466667pt;}
.y6c{bottom:414.466667pt;}
.y54{bottom:423.466667pt;}
.y36{bottom:424.800000pt;}
.y6b{bottom:433.800000pt;}
.y13{bottom:440.133333pt;}
.y35{bottom:450.133333pt;}
.y53{bottom:450.800000pt;}
.y6a{bottom:453.133333pt;}
.y12{bottom:472.466667pt;}
.y69{bottom:472.800000pt;}
.y34{bottom:477.466667pt;}
.y52{bottom:491.840000pt;}
.y68{bottom:492.173333pt;}
.y11{bottom:502.840000pt;}
.y67{bottom:511.506667pt;}
.y33{bottom:518.506667pt;}
.y51{bottom:530.506667pt;}
.y66{bottom:530.840000pt;}
.y10{bottom:532.840000pt;}
.y32{bottom:543.840000pt;}
.y65{bottom:550.173333pt;}
.y50{bottom:555.840000pt;}
.yf{bottom:566.506667pt;}
.y31{bottom:569.173333pt;}
.y64{bottom:569.840000pt;}
.y4f{bottom:581.173333pt;}
.ye{bottom:587.533333pt;}
.y63{bottom:589.200000pt;}
.y30{bottom:594.533333pt;}
.yd{bottom:605.200000pt;}
.y4e{bottom:606.533333pt;}
.y62{bottom:608.533333pt;}
.y2f{bottom:619.866667pt;}
.yc{bottom:620.533333pt;}
.y61{bottom:627.866667pt;}
.y4d{bottom:631.866667pt;}
.yb{bottom:635.866667pt;}
.y2e{bottom:645.200000pt;}
.y60{bottom:647.200000pt;}
.ya{bottom:651.200000pt;}
.y4c{bottom:656.866667pt;}
.y9{bottom:666.533333pt;}
.y5f{bottom:666.866667pt;}
.y2d{bottom:670.200000pt;}
.y8{bottom:681.866667pt;}
.y4b{bottom:682.200000pt;}
.y5e{bottom:686.866667pt;}
.y2c{bottom:697.893333pt;}
.y7{bottom:701.893333pt;}
.y4a{bottom:709.893333pt;}
.y5d{bottom:723.226667pt;}
.y6{bottom:726.893333pt;}
.y2b{bottom:738.893333pt;}
.y49{bottom:750.893333pt;}
.y5{bottom:758.560000pt;}
.y2a{bottom:764.226667pt;}
.y48{bottom:776.226667pt;}
.y29{bottom:789.560000pt;}
.y4{bottom:792.893333pt;}
.y47{bottom:801.600000pt;}
.y28{bottom:814.933333pt;}
.y3{bottom:826.933333pt;}
.y27{bottom:840.266667pt;}
.y2{bottom:845.600000pt;}
.y46{bottom:854.266667pt;}
.y26{bottom:865.600000pt;}
.y25{bottom:890.600000pt;}
.y45{bottom:895.266667pt;}
.y1{bottom:905.293333pt;}
.y24{bottom:915.960000pt;}
.y44{bottom:920.626667pt;}
.y23{bottom:943.626667pt;}
.y43{bottom:945.960000pt;}
.h9{height:17.033333pt;}
.h5{height:31.078125pt;}
.h6{height:47.812500pt;}
.h8{height:49.442708pt;}
.h7{height:52.135417pt;}
.ha{height:52.450521pt;}
.h2{height:52.593750pt;}
.h4{height:57.375000pt;}
.h3{height:59.743333pt;}
.h1{height:72.187500pt;}
.h0{height:1056.000000pt;}
.w2{width:8.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:120.066655pt;}
.x2{left:151.399988pt;}
.x4{left:195.733321pt;}
.x1{left:306.799988pt;}
.x5{left:688.306667pt;}
}




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