
    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_cbe211edb351b637719eb1cf.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9427411882ed8620ff818a1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e2246cb0b47c559f640bf7b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d684b769afb9c37589714ca8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ae69fa201014e99b896dfa05.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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_5ef5b6725ab4f84cd3441299.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c653baac4eb24474f3d04877.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.008640px;}
.ls6{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.256200px;}
.ls0{letter-spacing:44.760000px;}
.ls1{letter-spacing:49.961280px;}
.ls4{letter-spacing:849.185760px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws2{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws1{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._e{margin-left:-4.896000px;}
._8{margin-left:-3.744000px;}
._12{margin-left:-2.664000px;}
._0{margin-left:-1.600560px;}
._1{width:1.193040px;}
._5{width:3.096000px;}
._6{width:4.225920px;}
._2{width:5.760000px;}
._7{width:7.553040px;}
._a{width:8.746800px;}
._13{width:9.864000px;}
._b{width:11.088000px;}
._3{width:12.528000px;}
._4{width:13.608000px;}
._c{width:15.264000px;}
._d{width:16.632000px;}
._f{width:24.120000px;}
._14{width:25.848000px;}
._10{width:27.000000px;}
._11{width:28.008000px;}
._15{width:180.576000px;}
._16{width:181.842960px;}
._9{width:847.596000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.480000px;}
.y21{bottom:120.960000px;}
.y78{bottom:131.760000px;}
.y20{bottom:144.900000px;}
.y77{bottom:154.080000px;}
.y49{bottom:154.980000px;}
.y5f{bottom:158.790000px;}
.y1f{bottom:168.690000px;}
.y76{bottom:176.610000px;}
.y48{bottom:178.770000px;}
.y5e{bottom:182.550000px;}
.y1e{bottom:192.450000px;}
.y3f{bottom:199.110000px;}
.y75{bottom:200.370000px;}
.y5d{bottom:206.310000px;}
.y47{bottom:214.590000px;}
.y1d{bottom:216.210000px;}
.y74{bottom:222.690000px;}
.y5c{bottom:230.250000px;}
.y3e{bottom:232.410000px;}
.y1c{bottom:240.150000px;}
.y73{bottom:245.010000px;}
.y46{bottom:250.410000px;}
.y5b{bottom:254.010000px;}
.y3d{bottom:261.210000px;}
.y1b{bottom:263.910000px;}
.y72{bottom:268.770000px;}
.y45{bottom:274.170000px;}
.y5a{bottom:277.770000px;}
.y1a{bottom:288.030000px;}
.y71{bottom:291.090000px;}
.y44{bottom:297.930000px;}
.y19{bottom:312.150000px;}
.y70{bottom:313.410000px;}
.y59{bottom:313.590000px;}
.y43{bottom:333.750000px;}
.y18{bottom:336.270000px;}
.y6f{bottom:338.430000px;}
.y58{bottom:350.535000px;}
.y17{bottom:360.435000px;}
.y42{bottom:370.695000px;}
.y33{bottom:371.235000px;}
.y6e{bottom:377.175000px;}
.y16{bottom:384.555000px;}
.y57{bottom:389.235000px;}
.y32{bottom:394.995000px;}
.y6d{bottom:400.935000px;}
.y41{bottom:408.135000px;}
.y56{bottom:412.995000px;}
.y15{bottom:420.735000px;}
.y6c{bottom:424.695000px;}
.y31{bottom:430.815000px;}
.y55{bottom:436.755000px;}
.y40{bottom:436.935000px;}
.y14{bottom:444.495000px;}
.y6b{bottom:448.455000px;}
.y37{bottom:452.595000px;}
.y54{bottom:460.695000px;}
.y30{bottom:467.715000px;}
.y6a{bottom:472.395000px;}
.y13{bottom:481.395000px;}
.y53{bottom:484.455000px;}
.y36{bottom:487.335000px;}
.y69{bottom:496.155000px;}
.y2f{bottom:506.415000px;}
.y52{bottom:508.215000px;}
.y12{bottom:520.095000px;}
.y35{bottom:521.175000px;}
.y2e{bottom:530.535000px;}
.y68{bottom:531.975000px;}
.y11{bottom:543.855000px;}
.y51{bottom:544.035000px;}
.y34{bottom:550.005000px;}
.y2d{bottom:554.685000px;}
.y67{bottom:555.765000px;}
.y10{bottom:567.825000px;}
.y2c{bottom:578.805000px;}
.y66{bottom:579.525000px;}
.yf{bottom:591.585000px;}
.y2b{bottom:602.925000px;}
.y65{bottom:603.285000px;}
.ye{bottom:615.345000px;}
.y50{bottom:615.525000px;}
.yd{bottom:639.105000px;}
.y4f{bottom:651.345000px;}
.y2a{bottom:663.045000px;}
.yc{bottom:674.925000px;}
.y4e{bottom:675.105000px;}
.y64{bottom:686.805000px;}
.yb{bottom:698.685000px;}
.y4d{bottom:698.865000px;}
.y63{bottom:710.565000px;}
.y80{bottom:720.645000px;}
.ya{bottom:722.625000px;}
.y62{bottom:734.325000px;}
.y29{bottom:734.505000px;}
.y4c{bottom:734.685000px;}
.y7f{bottom:740.670000px;}
.y9{bottom:746.430000px;}
.y3c{bottom:758.130000px;}
.y28{bottom:758.490000px;}
.y7e{bottom:760.290000px;}
.y61{bottom:782.070000px;}
.y27{bottom:782.250000px;}
.y8{bottom:783.330000px;}
.y7d{bottom:785.130000px;}
.y3b{bottom:793.950000px;}
.y60{bottom:805.830000px;}
.y26{bottom:806.010000px;}
.y4b{bottom:806.190000px;}
.y7c{bottom:811.950000px;}
.y7{bottom:813.930000px;}
.y3a{bottom:817.890000px;}
.y25{bottom:829.770000px;}
.y6{bottom:833.730000px;}
.y7b{bottom:834.270000px;}
.y39{bottom:841.650000px;}
.y4a{bottom:842.010000px;}
.y5{bottom:848.310000px;}
.y24{bottom:853.710000px;}
.y7a{bottom:856.590000px;}
.y38{bottom:865.410000px;}
.y4{bottom:870.630000px;}
.y23{bottom:877.470000px;}
.y79{bottom:878.910000px;}
.y3{bottom:898.350000px;}
.y22{bottom:901.230000px;}
.h4{height:38.139609px;}
.h5{height:44.130937px;}
.h10{height:58.651172px;}
.h3{height:59.038594px;}
.h7{height:60.082031px;}
.hb{height:60.226875px;}
.hc{height:65.010937px;}
.h1{height:65.884219px;}
.hd{height:66.757500px;}
.ha{height:67.837500px;}
.h6{height:70.664062px;}
.h8{height:72.562500px;}
.h9{height:74.004654px;}
.hf{height:82.676953px;}
.h2{height:84.898125px;}
.he{height:145.125000px;}
.h0{height:1026.000000px;}
.w1{width:809.999988px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x2{left:108.035988px;}
.x3{left:121.715988px;}
.x8{left:135.035988px;}
.x5{left:265.214988px;}
.x4{left:304.274988px;}
.x6{left:314.174988px;}
.xe{left:317.234988px;}
.xa{left:323.534988px;}
.x7{left:330.734988px;}
.xc{left:333.074988px;}
.xd{left:651.389988px;}
.x9{left:656.789988px;}
.xb{left:667.589988px;}
.x1{left:685.409988px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.007680pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.227733pt;}
.ls0{letter-spacing:39.786667pt;}
.ls1{letter-spacing:44.410027pt;}
.ls4{letter-spacing:754.831787pt;}
.ws3{word-spacing:-64.000000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws1{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._e{margin-left:-4.352000pt;}
._8{margin-left:-3.328000pt;}
._12{margin-left:-2.368000pt;}
._0{margin-left:-1.422720pt;}
._1{width:1.060480pt;}
._5{width:2.752000pt;}
._6{width:3.756373pt;}
._2{width:5.120000pt;}
._7{width:6.713813pt;}
._a{width:7.774933pt;}
._13{width:8.768000pt;}
._b{width:9.856000pt;}
._3{width:11.136000pt;}
._4{width:12.096000pt;}
._c{width:13.568000pt;}
._d{width:14.784000pt;}
._f{width:21.440000pt;}
._14{width:22.976000pt;}
._10{width:24.000000pt;}
._11{width:24.896000pt;}
._15{width:160.512000pt;}
._16{width:161.638187pt;}
._9{width:753.418667pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.760000pt;}
.y21{bottom:107.520000pt;}
.y78{bottom:117.120000pt;}
.y20{bottom:128.800000pt;}
.y77{bottom:136.960000pt;}
.y49{bottom:137.760000pt;}
.y5f{bottom:141.146667pt;}
.y1f{bottom:149.946667pt;}
.y76{bottom:156.986667pt;}
.y48{bottom:158.906667pt;}
.y5e{bottom:162.266667pt;}
.y1e{bottom:171.066667pt;}
.y3f{bottom:176.986667pt;}
.y75{bottom:178.106667pt;}
.y5d{bottom:183.386667pt;}
.y47{bottom:190.746667pt;}
.y1d{bottom:192.186667pt;}
.y74{bottom:197.946667pt;}
.y5c{bottom:204.666667pt;}
.y3e{bottom:206.586667pt;}
.y1c{bottom:213.466667pt;}
.y73{bottom:217.786667pt;}
.y46{bottom:222.586667pt;}
.y5b{bottom:225.786667pt;}
.y3d{bottom:232.186667pt;}
.y1b{bottom:234.586667pt;}
.y72{bottom:238.906667pt;}
.y45{bottom:243.706667pt;}
.y5a{bottom:246.906667pt;}
.y1a{bottom:256.026667pt;}
.y71{bottom:258.746667pt;}
.y44{bottom:264.826667pt;}
.y19{bottom:277.466667pt;}
.y70{bottom:278.586667pt;}
.y59{bottom:278.746667pt;}
.y43{bottom:296.666667pt;}
.y18{bottom:298.906667pt;}
.y6f{bottom:300.826667pt;}
.y58{bottom:311.586667pt;}
.y17{bottom:320.386667pt;}
.y42{bottom:329.506667pt;}
.y33{bottom:329.986667pt;}
.y6e{bottom:335.266667pt;}
.y16{bottom:341.826667pt;}
.y57{bottom:345.986667pt;}
.y32{bottom:351.106667pt;}
.y6d{bottom:356.386667pt;}
.y41{bottom:362.786667pt;}
.y56{bottom:367.106667pt;}
.y15{bottom:373.986667pt;}
.y6c{bottom:377.506667pt;}
.y31{bottom:382.946667pt;}
.y55{bottom:388.226667pt;}
.y40{bottom:388.386667pt;}
.y14{bottom:395.106667pt;}
.y6b{bottom:398.626667pt;}
.y37{bottom:402.306667pt;}
.y54{bottom:409.506667pt;}
.y30{bottom:415.746667pt;}
.y6a{bottom:419.906667pt;}
.y13{bottom:427.906667pt;}
.y53{bottom:430.626667pt;}
.y36{bottom:433.186667pt;}
.y69{bottom:441.026667pt;}
.y2f{bottom:450.146667pt;}
.y52{bottom:451.746667pt;}
.y12{bottom:462.306667pt;}
.y35{bottom:463.266667pt;}
.y2e{bottom:471.586667pt;}
.y68{bottom:472.866667pt;}
.y11{bottom:483.426667pt;}
.y51{bottom:483.586667pt;}
.y34{bottom:488.893333pt;}
.y2d{bottom:493.053333pt;}
.y67{bottom:494.013333pt;}
.y10{bottom:504.733333pt;}
.y2c{bottom:514.493333pt;}
.y66{bottom:515.133333pt;}
.yf{bottom:525.853333pt;}
.y2b{bottom:535.933333pt;}
.y65{bottom:536.253333pt;}
.ye{bottom:546.973333pt;}
.y50{bottom:547.133333pt;}
.yd{bottom:568.093333pt;}
.y4f{bottom:578.973333pt;}
.y2a{bottom:589.373333pt;}
.yc{bottom:599.933333pt;}
.y4e{bottom:600.093333pt;}
.y64{bottom:610.493333pt;}
.yb{bottom:621.053333pt;}
.y4d{bottom:621.213333pt;}
.y63{bottom:631.613333pt;}
.y80{bottom:640.573333pt;}
.ya{bottom:642.333333pt;}
.y62{bottom:652.733333pt;}
.y29{bottom:652.893333pt;}
.y4c{bottom:653.053333pt;}
.y7f{bottom:658.373333pt;}
.y9{bottom:663.493333pt;}
.y3c{bottom:673.893333pt;}
.y28{bottom:674.213333pt;}
.y7e{bottom:675.813333pt;}
.y61{bottom:695.173333pt;}
.y27{bottom:695.333333pt;}
.y8{bottom:696.293333pt;}
.y7d{bottom:697.893333pt;}
.y3b{bottom:705.733333pt;}
.y60{bottom:716.293333pt;}
.y26{bottom:716.453333pt;}
.y4b{bottom:716.613333pt;}
.y7c{bottom:721.733333pt;}
.y7{bottom:723.493333pt;}
.y3a{bottom:727.013333pt;}
.y25{bottom:737.573333pt;}
.y6{bottom:741.093333pt;}
.y7b{bottom:741.573333pt;}
.y39{bottom:748.133333pt;}
.y4a{bottom:748.453333pt;}
.y5{bottom:754.053333pt;}
.y24{bottom:758.853333pt;}
.y7a{bottom:761.413333pt;}
.y38{bottom:769.253333pt;}
.y4{bottom:773.893333pt;}
.y23{bottom:779.973333pt;}
.y79{bottom:781.253333pt;}
.y3{bottom:798.533333pt;}
.y22{bottom:801.093333pt;}
.h4{height:33.901875pt;}
.h5{height:39.227500pt;}
.h10{height:52.134375pt;}
.h3{height:52.478750pt;}
.h7{height:53.406250pt;}
.hb{height:53.535000pt;}
.hc{height:57.787500pt;}
.h1{height:58.563750pt;}
.hd{height:59.340000pt;}
.ha{height:60.300000pt;}
.h6{height:62.812500pt;}
.h8{height:64.500000pt;}
.h9{height:65.781915pt;}
.hf{height:73.490625pt;}
.h2{height:75.465000pt;}
.he{height:129.000000pt;}
.h0{height:912.000000pt;}
.w1{width:719.999989pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031989pt;}
.x3{left:108.191989pt;}
.x8{left:120.031989pt;}
.x5{left:235.746656pt;}
.x4{left:270.466656pt;}
.x6{left:279.266656pt;}
.xe{left:281.986656pt;}
.xa{left:287.586656pt;}
.x7{left:293.986656pt;}
.xc{left:296.066656pt;}
.xd{left:579.013323pt;}
.x9{left:583.813323pt;}
.xb{left:593.413323pt;}
.x1{left:609.253323pt;}
}




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