
    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_c125b6ceedf38d78be185fc2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1e33487bde079dcdb4485b27.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ec0382b93bd385cb0fb4519a.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1c1931fa5aeb89ea79e5bd2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_6b19bea1e7308fb6af5aca35.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_c13e863478c71c490e4c3f08.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.096191;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_02946c613fa12ca18bb22ae7.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);}
.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;}
.ls8{letter-spacing:-0.341400px;}
.ls9{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.360000px;}
.ls0{letter-spacing:2.700000px;}
.ls4{letter-spacing:10.620000px;}
.lsa{letter-spacing:21.221280px;}
.ls1{letter-spacing:54.540000px;}
.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;}
}
.ws2{word-spacing:-21.420000px;}
.ws0{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.031920px;}
.ws3{word-spacing:-20.718600px;}
.ws1{word-spacing:0.000000px;}
._23{margin-left:-20.342640px;}
._13{margin-left:-6.353760px;}
._8{margin-left:-5.138640px;}
._9{margin-left:-3.888960px;}
._1{margin-left:-2.733120px;}
._0{margin-left:-1.312080px;}
._4{width:1.048320px;}
._a{width:2.332080px;}
._15{width:3.539520px;}
._16{width:4.596000px;}
._14{width:5.981040px;}
._17{width:8.002800px;}
._11{width:9.940080px;}
._18{width:11.232480px;}
._5{width:13.218960px;}
._b{width:14.994720px;}
._c{width:16.065120px;}
._e{width:18.027360px;}
._d{width:19.086720px;}
._19{width:22.913280px;}
._21{width:23.942400px;}
._1e{width:24.991200px;}
._24{width:27.258000px;}
._1f{width:28.641600px;}
._20{width:29.700960px;}
._12{width:31.337280px;}
._1a{width:37.722000px;}
._6{width:38.732160px;}
._7{width:39.858000px;}
._1b{width:43.682400px;}
._22{width:45.117600px;}
._f{width:54.671760px;}
._10{width:55.757520px;}
._1c{width:58.595280px;}
._1d{width:76.658400px;}
._2{width:641.856000px;}
._3{width:1830.720000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:216.000000px;}
.y6{bottom:-25.020000px;}
.y2b{bottom:-4.350000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:5.940000px;}
.y5{bottom:10.830000px;}
.ya{bottom:12.240000px;}
.y4f{bottom:17.100000px;}
.y2{bottom:20.340000px;}
.y7{bottom:31.500000px;}
.y4{bottom:47.010000px;}
.y54{bottom:53.280000px;}
.y4e{bottom:53.460000px;}
.y52{bottom:53.505000px;}
.yc{bottom:59.400000px;}
.yd{bottom:64.800000px;}
.y29{bottom:82.410000px;}
.y4d{bottom:89.640000px;}
.y66{bottom:130.500000px;}
.y27{bottom:131.400000px;}
.y65{bottom:135.720000px;}
.y46{bottom:138.240000px;}
.y64{bottom:162.900000px;}
.y26{bottom:167.580000px;}
.y45{bottom:174.450000px;}
.y25{bottom:203.790000px;}
.y49{bottom:210.270000px;}
.y44{bottom:210.630000px;}
.y63{bottom:233.490000px;}
.y24{bottom:239.970000px;}
.y43{bottom:246.990000px;}
.y62{bottom:269.670000px;}
.y23{bottom:276.330000px;}
.y42{bottom:283.170000px;}
.y61{bottom:305.850000px;}
.y22{bottom:312.510000px;}
.y41{bottom:319.350000px;}
.y60{bottom:342.030000px;}
.y21{bottom:348.690000px;}
.y67{bottom:355.170000px;}
.y40{bottom:355.530000px;}
.y5f{bottom:378.390000px;}
.y20{bottom:384.510000px;}
.y3f{bottom:391.890000px;}
.y5e{bottom:414.615000px;}
.y1f{bottom:420.735000px;}
.y3e{bottom:428.115000px;}
.y5d{bottom:450.795000px;}
.y1e{bottom:457.455000px;}
.y3d{bottom:464.295000px;}
.y5c{bottom:486.975000px;}
.y1d{bottom:493.635000px;}
.y3c{bottom:500.475000px;}
.y5b{bottom:523.335000px;}
.y1c{bottom:529.815000px;}
.y3b{bottom:536.835000px;}
.y5a{bottom:559.515000px;}
.y1b{bottom:565.995000px;}
.y3a{bottom:573.015000px;}
.y59{bottom:595.695000px;}
.y1a{bottom:602.355000px;}
.y39{bottom:609.195000px;}
.y58{bottom:631.875000px;}
.y19{bottom:638.535000px;}
.y38{bottom:645.375000px;}
.y56{bottom:668.085000px;}
.y18{bottom:674.745000px;}
.y57{bottom:675.645000px;}
.y37{bottom:681.585000px;}
.y55{bottom:689.505000px;}
.y17{bottom:710.925000px;}
.y36{bottom:717.945000px;}
.y16{bottom:746.925000px;}
.y4b{bottom:753.765000px;}
.y35{bottom:754.125000px;}
.y53{bottom:764.205000px;}
.y15{bottom:783.465000px;}
.y34{bottom:789.945000px;}
.y48{bottom:790.305000px;}
.y14{bottom:819.645000px;}
.y33{bottom:826.485000px;}
.y13{bottom:855.465000px;}
.y32{bottom:862.845000px;}
.y51{bottom:875.085000px;}
.y12{bottom:892.005000px;}
.y31{bottom:899.025000px;}
.y11{bottom:928.410000px;}
.y30{bottom:935.250000px;}
.y50{bottom:949.830000px;}
.y10{bottom:964.590000px;}
.y2f{bottom:971.430000px;}
.yf{bottom:1000.410000px;}
.y2e{bottom:1007.790000px;}
.y4c{bottom:1024.530000px;}
.ye{bottom:1031.910000px;}
.y28{bottom:1033.560000px;}
.y2d{bottom:1043.970000px;}
.y2a{bottom:1079.790000px;}
.y47{bottom:1080.150000px;}
.y2c{bottom:1115.970000px;}
.y4a{bottom:1116.330000px;}
.y3{bottom:1148.190000px;}
.y1{bottom:1171.260000px;}
.y9{bottom:1195.920000px;}
.h6{height:25.380000px;}
.h15{height:38.671172px;}
.h2{height:40.320000px;}
.h14{height:52.998047px;}
.h7{height:58.651172px;}
.ha{height:59.066719px;}
.h16{height:65.010937px;}
.h4{height:66.450000px;}
.h12{height:72.360000px;}
.hf{height:72.525000px;}
.h10{height:72.562500px;}
.hd{height:72.846211px;}
.h5{height:82.676953px;}
.h3{height:84.898125px;}
.h17{height:86.585445px;}
.hb{height:101.880000px;}
.he{height:108.705000px;}
.h11{height:108.720000px;}
.h8{height:110.700000px;}
.hc{height:145.125000px;}
.h9{height:182.039062px;}
.h1{height:1263.000000px;}
.h13{height:1263.044910px;}
.h0{height:1263.060000px;}
.w5{width:122.400000px;}
.w8{width:154.095000px;}
.w9{width:154.110000px;}
.w3{width:163.830000px;}
.w4{width:169.230000px;}
.w7{width:175.170000px;}
.w2{width:188.481000px;}
.w6{width:693.720000px;}
.w1{width:893.250000px;}
.wa{width:893.317500px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x4{left:22.680000px;}
.x7{left:29.880000px;}
.x16{left:40.536000px;}
.x12{left:57.960000px;}
.x13{left:74.160000px;}
.x15{left:78.480000px;}
.x1b{left:79.740000px;}
.x8{left:89.676000px;}
.x6{left:100.476000px;}
.x22{left:105.336000px;}
.x1{left:106.425000px;}
.x5{left:108.036000px;}
.xf{left:148.176000px;}
.x19{left:149.616000px;}
.xb{left:185.970000px;}
.xd{left:251.310000px;}
.x1c{left:256.005000px;}
.xc{left:262.110000px;}
.x10{left:269.715000px;}
.xa{left:284.835000px;}
.xe{left:303.915000px;}
.x21{left:316.515000px;}
.x18{left:346.935000px;}
.x23{left:376.815000px;}
.x1a{left:384.375000px;}
.x17{left:385.635000px;}
.x14{left:399.315000px;}
.x1d{left:411.195000px;}
.x11{left:426.135000px;}
.x1f{left:560.602500px;}
.x1e{left:566.400000px;}
.x20{left:567.465000px;}
.x3{left:643.830000px;}
.x2{left:648.150000px;}
.x9{left:773.790000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.303467pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls0{letter-spacing:2.400000pt;}
.ls4{letter-spacing:9.440000pt;}
.lsa{letter-spacing:18.863360pt;}
.ls1{letter-spacing:48.480000pt;}
.ws2{word-spacing:-19.040000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.695040pt;}
.ws3{word-spacing:-18.416533pt;}
.ws1{word-spacing:0.000000pt;}
._23{margin-left:-18.082347pt;}
._13{margin-left:-5.647787pt;}
._8{margin-left:-4.567680pt;}
._9{margin-left:-3.456853pt;}
._1{margin-left:-2.429440pt;}
._0{margin-left:-1.166293pt;}
._4{width:0.931840pt;}
._a{width:2.072960pt;}
._15{width:3.146240pt;}
._16{width:4.085333pt;}
._14{width:5.316480pt;}
._17{width:7.113600pt;}
._11{width:8.835627pt;}
._18{width:9.984427pt;}
._5{width:11.750187pt;}
._b{width:13.328640pt;}
._c{width:14.280107pt;}
._e{width:16.024320pt;}
._d{width:16.965973pt;}
._19{width:20.367360pt;}
._21{width:21.282133pt;}
._1e{width:22.214400pt;}
._24{width:24.229333pt;}
._1f{width:25.459200pt;}
._20{width:26.400853pt;}
._12{width:27.855360pt;}
._1a{width:33.530667pt;}
._6{width:34.428587pt;}
._7{width:35.429333pt;}
._1b{width:38.828800pt;}
._22{width:40.104533pt;}
._f{width:48.597120pt;}
._10{width:49.562240pt;}
._1c{width:52.084693pt;}
._1d{width:68.140800pt;}
._2{width:570.538667pt;}
._3{width:1627.306667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:192.000000pt;}
.y6{bottom:-22.240000pt;}
.y2b{bottom:-3.866667pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:5.280000pt;}
.y5{bottom:9.626667pt;}
.ya{bottom:10.880000pt;}
.y4f{bottom:15.200000pt;}
.y2{bottom:18.080000pt;}
.y7{bottom:28.000000pt;}
.y4{bottom:41.786667pt;}
.y54{bottom:47.360000pt;}
.y4e{bottom:47.520000pt;}
.y52{bottom:47.560000pt;}
.yc{bottom:52.800000pt;}
.yd{bottom:57.600000pt;}
.y29{bottom:73.253333pt;}
.y4d{bottom:79.680000pt;}
.y66{bottom:116.000000pt;}
.y27{bottom:116.800000pt;}
.y65{bottom:120.640000pt;}
.y46{bottom:122.880000pt;}
.y64{bottom:144.800000pt;}
.y26{bottom:148.960000pt;}
.y45{bottom:155.066667pt;}
.y25{bottom:181.146667pt;}
.y49{bottom:186.906667pt;}
.y44{bottom:187.226667pt;}
.y63{bottom:207.546667pt;}
.y24{bottom:213.306667pt;}
.y43{bottom:219.546667pt;}
.y62{bottom:239.706667pt;}
.y23{bottom:245.626667pt;}
.y42{bottom:251.706667pt;}
.y61{bottom:271.866667pt;}
.y22{bottom:277.786667pt;}
.y41{bottom:283.866667pt;}
.y60{bottom:304.026667pt;}
.y21{bottom:309.946667pt;}
.y67{bottom:315.706667pt;}
.y40{bottom:316.026667pt;}
.y5f{bottom:336.346667pt;}
.y20{bottom:341.786667pt;}
.y3f{bottom:348.346667pt;}
.y5e{bottom:368.546667pt;}
.y1f{bottom:373.986667pt;}
.y3e{bottom:380.546667pt;}
.y5d{bottom:400.706667pt;}
.y1e{bottom:406.626667pt;}
.y3d{bottom:412.706667pt;}
.y5c{bottom:432.866667pt;}
.y1d{bottom:438.786667pt;}
.y3c{bottom:444.866667pt;}
.y5b{bottom:465.186667pt;}
.y1c{bottom:470.946667pt;}
.y3b{bottom:477.186667pt;}
.y5a{bottom:497.346667pt;}
.y1b{bottom:503.106667pt;}
.y3a{bottom:509.346667pt;}
.y59{bottom:529.506667pt;}
.y1a{bottom:535.426667pt;}
.y39{bottom:541.506667pt;}
.y58{bottom:561.666667pt;}
.y19{bottom:567.586667pt;}
.y38{bottom:573.666667pt;}
.y56{bottom:593.853333pt;}
.y18{bottom:599.773333pt;}
.y57{bottom:600.573333pt;}
.y37{bottom:605.853333pt;}
.y55{bottom:612.893333pt;}
.y17{bottom:631.933333pt;}
.y36{bottom:638.173333pt;}
.y16{bottom:663.933333pt;}
.y4b{bottom:670.013333pt;}
.y35{bottom:670.333333pt;}
.y53{bottom:679.293333pt;}
.y15{bottom:696.413333pt;}
.y34{bottom:702.173333pt;}
.y48{bottom:702.493333pt;}
.y14{bottom:728.573333pt;}
.y33{bottom:734.653333pt;}
.y13{bottom:760.413333pt;}
.y32{bottom:766.973333pt;}
.y51{bottom:777.853333pt;}
.y12{bottom:792.893333pt;}
.y31{bottom:799.133333pt;}
.y11{bottom:825.253333pt;}
.y30{bottom:831.333333pt;}
.y50{bottom:844.293333pt;}
.y10{bottom:857.413333pt;}
.y2f{bottom:863.493333pt;}
.yf{bottom:889.253333pt;}
.y2e{bottom:895.813333pt;}
.y4c{bottom:910.693333pt;}
.ye{bottom:917.253333pt;}
.y28{bottom:918.720000pt;}
.y2d{bottom:927.973333pt;}
.y2a{bottom:959.813333pt;}
.y47{bottom:960.133333pt;}
.y2c{bottom:991.973333pt;}
.y4a{bottom:992.293333pt;}
.y3{bottom:1020.613333pt;}
.y1{bottom:1041.120000pt;}
.y9{bottom:1063.040000pt;}
.h6{height:22.560000pt;}
.h15{height:34.374375pt;}
.h2{height:35.840000pt;}
.h14{height:47.109375pt;}
.h7{height:52.134375pt;}
.ha{height:52.503750pt;}
.h16{height:57.787500pt;}
.h4{height:59.066667pt;}
.h12{height:64.320000pt;}
.hf{height:64.466667pt;}
.h10{height:64.500000pt;}
.hd{height:64.752187pt;}
.h5{height:73.490625pt;}
.h3{height:75.465000pt;}
.h17{height:76.964840pt;}
.hb{height:90.560000pt;}
.he{height:96.626667pt;}
.h11{height:96.640000pt;}
.h8{height:98.400000pt;}
.hc{height:129.000000pt;}
.h9{height:161.812500pt;}
.h1{height:1122.666667pt;}
.h13{height:1122.706587pt;}
.h0{height:1122.720000pt;}
.w5{width:108.800000pt;}
.w8{width:136.973333pt;}
.w9{width:136.986667pt;}
.w3{width:145.626667pt;}
.w4{width:150.426667pt;}
.w7{width:155.706667pt;}
.w2{width:167.538667pt;}
.w6{width:616.640000pt;}
.w1{width:794.000000pt;}
.wa{width:794.060000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x4{left:20.160000pt;}
.x7{left:26.560000pt;}
.x16{left:36.032000pt;}
.x12{left:51.520000pt;}
.x13{left:65.920000pt;}
.x15{left:69.760000pt;}
.x1b{left:70.880000pt;}
.x8{left:79.712000pt;}
.x6{left:89.312000pt;}
.x22{left:93.632000pt;}
.x1{left:94.600000pt;}
.x5{left:96.032000pt;}
.xf{left:131.712000pt;}
.x19{left:132.992000pt;}
.xb{left:165.306667pt;}
.xd{left:223.386667pt;}
.x1c{left:227.560000pt;}
.xc{left:232.986667pt;}
.x10{left:239.746667pt;}
.xa{left:253.186667pt;}
.xe{left:270.146667pt;}
.x21{left:281.346667pt;}
.x18{left:308.386667pt;}
.x23{left:334.946667pt;}
.x1a{left:341.666667pt;}
.x17{left:342.786667pt;}
.x14{left:354.946667pt;}
.x1d{left:365.506667pt;}
.x11{left:378.786667pt;}
.x1f{left:498.313333pt;}
.x1e{left:503.466667pt;}
.x20{left:504.413333pt;}
.x3{left:572.293333pt;}
.x2{left:576.133333pt;}
.x9{left:687.813333pt;}
}




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