
    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_7285c9312b02066c84ec822a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_38fe97687f8779e725662823.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_942cd440124fbc36479de6a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916016;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_93a21041f3adf2c1203768eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_aa47d0b78763307bd8f7fbbc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_09429276e4ff0934e4993b2c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_64a47bd6f50e632d02b650d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.977539;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_a7353c2a5da531b5f17f0e85.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.648000px;}
.ls3{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.339600px;}
.ls6{letter-spacing:0.720000px;}
.ls7{letter-spacing:30.384000px;}
.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;}
}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws2{word-spacing:-13.447440px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-5.256000px;}
._4{margin-left:-4.248000px;}
._2{margin-left:-3.096000px;}
._3{margin-left:-1.440000px;}
._5{width:1.008000px;}
._6{width:2.304000px;}
._9{width:3.384000px;}
._f{width:4.608000px;}
._d{width:6.552000px;}
._0{width:7.776000px;}
._1{width:8.928000px;}
._b{width:10.440000px;}
._c{width:11.808000px;}
._a{width:12.960000px;}
._7{width:14.400000px;}
._8{width:15.552000px;}
._10{width:16.920000px;}
._e{width:19.440000px;}
._14{width:21.168000px;}
._15{width:22.176000px;}
._18{width:23.904000px;}
._19{width:25.056000px;}
._13{width:27.288000px;}
._11{width:28.440000px;}
._12{width:29.448000px;}
._1a{width:31.752000px;}
._1b{width:33.408000px;}
._1c{width:39.888000px;}
._1d{width:40.968000px;}
._17{width:197.976000px;}
._1e{width:846.156000px;}
.fc3{color:rgb(91,155,213);}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.960000px;}
.y4{bottom:57.780000px;}
.y3{bottom:78.516000px;}
.y2e{bottom:123.336000px;}
.y7d{bottom:127.296000px;}
.y7e{bottom:131.616000px;}
.y2d{bottom:144.036000px;}
.y5f{bottom:147.996000px;}
.y7c{bottom:152.310000px;}
.y2c{bottom:164.730000px;}
.y5e{bottom:168.690000px;}
.y7b{bottom:173.010000px;}
.y2b{bottom:185.430000px;}
.y5d{bottom:189.390000px;}
.y7a{bottom:193.710000px;}
.y2a{bottom:206.130000px;}
.y5c{bottom:210.090000px;}
.y79{bottom:214.410000px;}
.y29{bottom:226.830000px;}
.y5b{bottom:230.790000px;}
.y78{bottom:235.110000px;}
.y28{bottom:247.530000px;}
.y5a{bottom:251.490000px;}
.y77{bottom:255.810000px;}
.y27{bottom:268.230000px;}
.y59{bottom:272.190000px;}
.y76{bottom:276.510000px;}
.y26{bottom:288.930000px;}
.y58{bottom:292.890000px;}
.y75{bottom:297.210000px;}
.y25{bottom:309.630000px;}
.y57{bottom:313.590000px;}
.y74{bottom:317.955000px;}
.y24{bottom:330.375000px;}
.y56{bottom:334.335000px;}
.y73{bottom:338.655000px;}
.y23{bottom:351.075000px;}
.y55{bottom:355.035000px;}
.y72{bottom:359.355000px;}
.y2f{bottom:367.815000px;}
.y22{bottom:371.775000px;}
.y54{bottom:375.735000px;}
.y71{bottom:380.055000px;}
.y21{bottom:392.475000px;}
.y53{bottom:396.435000px;}
.y70{bottom:400.755000px;}
.y20{bottom:413.175000px;}
.y52{bottom:417.135000px;}
.y6f{bottom:421.455000px;}
.y1f{bottom:433.875000px;}
.y51{bottom:437.835000px;}
.y6e{bottom:442.155000px;}
.y50{bottom:458.535000px;}
.y6d{bottom:462.855000px;}
.y4f{bottom:479.235000px;}
.y6c{bottom:483.555000px;}
.y1e{bottom:492.555000px;}
.y4e{bottom:499.935000px;}
.y6b{bottom:504.255000px;}
.y4d{bottom:520.635000px;}
.y6a{bottom:524.955000px;}
.y7f{bottom:530.715000px;}
.y4c{bottom:541.335000px;}
.y69{bottom:545.655000px;}
.y1d{bottom:551.235000px;}
.y4b{bottom:562.035000px;}
.y68{bottom:566.355000px;}
.y1c{bottom:571.965000px;}
.y4a{bottom:582.765000px;}
.y67{bottom:587.085000px;}
.y1b{bottom:592.665000px;}
.y49{bottom:603.465000px;}
.y66{bottom:607.785000px;}
.y1a{bottom:613.365000px;}
.y48{bottom:624.165000px;}
.y65{bottom:628.485000px;}
.y19{bottom:634.065000px;}
.y47{bottom:644.865000px;}
.y64{bottom:649.185000px;}
.y18{bottom:654.765000px;}
.y46{bottom:665.565000px;}
.y63{bottom:669.885000px;}
.y17{bottom:675.465000px;}
.y45{bottom:686.265000px;}
.y62{bottom:690.585000px;}
.y16{bottom:696.165000px;}
.y44{bottom:706.965000px;}
.y61{bottom:711.285000px;}
.y15{bottom:716.865000px;}
.y43{bottom:727.665000px;}
.y60{bottom:731.985000px;}
.y42{bottom:748.365000px;}
.y14{bottom:752.685000px;}
.y41{bottom:769.065000px;}
.y13{bottom:773.385000px;}
.y40{bottom:789.765000px;}
.y12{bottom:794.085000px;}
.y3f{bottom:810.465000px;}
.y11{bottom:814.785000px;}
.y3e{bottom:831.210000px;}
.y10{bottom:835.530000px;}
.y3d{bottom:851.910000px;}
.yf{bottom:856.230000px;}
.y3c{bottom:872.610000px;}
.ye{bottom:876.930000px;}
.y3b{bottom:893.310000px;}
.yd{bottom:897.630000px;}
.y3a{bottom:914.010000px;}
.yc{bottom:918.330000px;}
.y39{bottom:934.710000px;}
.yb{bottom:939.030000px;}
.y38{bottom:955.410000px;}
.ya{bottom:959.730000px;}
.y37{bottom:976.110000px;}
.y9{bottom:980.430000px;}
.y36{bottom:996.810000px;}
.y8{bottom:1001.130000px;}
.y35{bottom:1017.510000px;}
.y7{bottom:1021.830000px;}
.y34{bottom:1038.210000px;}
.y6{bottom:1042.530000px;}
.y33{bottom:1058.730000px;}
.y5{bottom:1063.230000px;}
.y32{bottom:1079.460000px;}
.y2{bottom:1086.300000px;}
.y31{bottom:1112.940000px;}
.y1{bottom:1117.260000px;}
.h5{height:20.700000px;}
.h1{height:50.273438px;}
.h3{height:50.414062px;}
.h2{height:50.800781px;}
.h8{height:52.417969px;}
.h7{height:56.900391px;}
.h4{height:59.343750px;}
.h6{height:67.169883px;}
.h0{height:1188.000000px;}
.w2{width:10.980000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.035986px;}
.xe{left:114.875986px;}
.xa{left:119.015986px;}
.x3{left:130.895986px;}
.xf{left:148.535986px;}
.xb{left:162.029986px;}
.xc{left:216.029986px;}
.xd{left:270.029986px;}
.x8{left:330.014986px;}
.x9{left:331.274986px;}
.x4{left:337.754986px;}
.x6{left:341.714986px;}
.x5{left:361.154986px;}
.x7{left:394.454986px;}
.x2{left:459.074986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.301867pt;}
.ls6{letter-spacing:0.640000pt;}
.ls7{letter-spacing:27.008000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws2{word-spacing:-11.953280pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-4.672000pt;}
._4{margin-left:-3.776000pt;}
._2{margin-left:-2.752000pt;}
._3{margin-left:-1.280000pt;}
._5{width:0.896000pt;}
._6{width:2.048000pt;}
._9{width:3.008000pt;}
._f{width:4.096000pt;}
._d{width:5.824000pt;}
._0{width:6.912000pt;}
._1{width:7.936000pt;}
._b{width:9.280000pt;}
._c{width:10.496000pt;}
._a{width:11.520000pt;}
._7{width:12.800000pt;}
._8{width:13.824000pt;}
._10{width:15.040000pt;}
._e{width:17.280000pt;}
._14{width:18.816000pt;}
._15{width:19.712000pt;}
._18{width:21.248000pt;}
._19{width:22.272000pt;}
._13{width:24.256000pt;}
._11{width:25.280000pt;}
._12{width:26.176000pt;}
._1a{width:28.224000pt;}
._1b{width:29.696000pt;}
._1c{width:35.456000pt;}
._1d{width:36.416000pt;}
._17{width:175.978667pt;}
._1e{width:752.138667pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.520000pt;}
.y4{bottom:51.360000pt;}
.y3{bottom:69.792000pt;}
.y2e{bottom:109.632000pt;}
.y7d{bottom:113.152000pt;}
.y7e{bottom:116.992000pt;}
.y2d{bottom:128.032000pt;}
.y5f{bottom:131.552000pt;}
.y7c{bottom:135.386667pt;}
.y2c{bottom:146.426667pt;}
.y5e{bottom:149.946667pt;}
.y7b{bottom:153.786667pt;}
.y2b{bottom:164.826667pt;}
.y5d{bottom:168.346667pt;}
.y7a{bottom:172.186667pt;}
.y2a{bottom:183.226667pt;}
.y5c{bottom:186.746667pt;}
.y79{bottom:190.586667pt;}
.y29{bottom:201.626667pt;}
.y5b{bottom:205.146667pt;}
.y78{bottom:208.986667pt;}
.y28{bottom:220.026667pt;}
.y5a{bottom:223.546667pt;}
.y77{bottom:227.386667pt;}
.y27{bottom:238.426667pt;}
.y59{bottom:241.946667pt;}
.y76{bottom:245.786667pt;}
.y26{bottom:256.826667pt;}
.y58{bottom:260.346667pt;}
.y75{bottom:264.186667pt;}
.y25{bottom:275.226667pt;}
.y57{bottom:278.746667pt;}
.y74{bottom:282.626667pt;}
.y24{bottom:293.666667pt;}
.y56{bottom:297.186667pt;}
.y73{bottom:301.026667pt;}
.y23{bottom:312.066667pt;}
.y55{bottom:315.586667pt;}
.y72{bottom:319.426667pt;}
.y2f{bottom:326.946667pt;}
.y22{bottom:330.466667pt;}
.y54{bottom:333.986667pt;}
.y71{bottom:337.826667pt;}
.y21{bottom:348.866667pt;}
.y53{bottom:352.386667pt;}
.y70{bottom:356.226667pt;}
.y20{bottom:367.266667pt;}
.y52{bottom:370.786667pt;}
.y6f{bottom:374.626667pt;}
.y1f{bottom:385.666667pt;}
.y51{bottom:389.186667pt;}
.y6e{bottom:393.026667pt;}
.y50{bottom:407.586667pt;}
.y6d{bottom:411.426667pt;}
.y4f{bottom:425.986667pt;}
.y6c{bottom:429.826667pt;}
.y1e{bottom:437.826667pt;}
.y4e{bottom:444.386667pt;}
.y6b{bottom:448.226667pt;}
.y4d{bottom:462.786667pt;}
.y6a{bottom:466.626667pt;}
.y7f{bottom:471.746667pt;}
.y4c{bottom:481.186667pt;}
.y69{bottom:485.026667pt;}
.y1d{bottom:489.986667pt;}
.y4b{bottom:499.586667pt;}
.y68{bottom:503.426667pt;}
.y1c{bottom:508.413333pt;}
.y4a{bottom:518.013333pt;}
.y67{bottom:521.853333pt;}
.y1b{bottom:526.813333pt;}
.y49{bottom:536.413333pt;}
.y66{bottom:540.253333pt;}
.y1a{bottom:545.213333pt;}
.y48{bottom:554.813333pt;}
.y65{bottom:558.653333pt;}
.y19{bottom:563.613333pt;}
.y47{bottom:573.213333pt;}
.y64{bottom:577.053333pt;}
.y18{bottom:582.013333pt;}
.y46{bottom:591.613333pt;}
.y63{bottom:595.453333pt;}
.y17{bottom:600.413333pt;}
.y45{bottom:610.013333pt;}
.y62{bottom:613.853333pt;}
.y16{bottom:618.813333pt;}
.y44{bottom:628.413333pt;}
.y61{bottom:632.253333pt;}
.y15{bottom:637.213333pt;}
.y43{bottom:646.813333pt;}
.y60{bottom:650.653333pt;}
.y42{bottom:665.213333pt;}
.y14{bottom:669.053333pt;}
.y41{bottom:683.613333pt;}
.y13{bottom:687.453333pt;}
.y40{bottom:702.013333pt;}
.y12{bottom:705.853333pt;}
.y3f{bottom:720.413333pt;}
.y11{bottom:724.253333pt;}
.y3e{bottom:738.853333pt;}
.y10{bottom:742.693333pt;}
.y3d{bottom:757.253333pt;}
.yf{bottom:761.093333pt;}
.y3c{bottom:775.653333pt;}
.ye{bottom:779.493333pt;}
.y3b{bottom:794.053333pt;}
.yd{bottom:797.893333pt;}
.y3a{bottom:812.453333pt;}
.yc{bottom:816.293333pt;}
.y39{bottom:830.853333pt;}
.yb{bottom:834.693333pt;}
.y38{bottom:849.253333pt;}
.ya{bottom:853.093333pt;}
.y37{bottom:867.653333pt;}
.y9{bottom:871.493333pt;}
.y36{bottom:886.053333pt;}
.y8{bottom:889.893333pt;}
.y35{bottom:904.453333pt;}
.y7{bottom:908.293333pt;}
.y34{bottom:922.853333pt;}
.y6{bottom:926.693333pt;}
.y33{bottom:941.093333pt;}
.y5{bottom:945.093333pt;}
.y32{bottom:959.520000pt;}
.y2{bottom:965.600000pt;}
.y31{bottom:989.280000pt;}
.y1{bottom:993.120000pt;}
.h5{height:18.400000pt;}
.h1{height:44.687500pt;}
.h3{height:44.812500pt;}
.h2{height:45.156250pt;}
.h8{height:46.593750pt;}
.h7{height:50.578125pt;}
.h4{height:52.750000pt;}
.h6{height:59.706562pt;}
.h0{height:1056.000000pt;}
.w2{width:9.760000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.xe{left:102.111988pt;}
.xa{left:105.791988pt;}
.x3{left:116.351988pt;}
.xf{left:132.031988pt;}
.xb{left:144.026655pt;}
.xc{left:192.026655pt;}
.xd{left:240.026655pt;}
.x8{left:293.346655pt;}
.x9{left:294.466655pt;}
.x4{left:300.226655pt;}
.x6{left:303.746655pt;}
.x5{left:321.026655pt;}
.x7{left:350.626655pt;}
.x2{left:408.066655pt;}
}




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