
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_e4751fcfaa681e52287ad9b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_457eb08723e398745f60ea86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_0b51eae0eae1a35174c02c31.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3562f4b05593494ff2c8aefc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8aa105398c6794a620420abd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_47a0e8a18849dade36ee4f78.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.180000px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.151920px;}
.ls5{letter-spacing:0.252720px;}
.lsc{letter-spacing:0.269280px;}
.ls4{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:7.020000px;}
.lsa{letter-spacing:7.740000px;}
.ls9{letter-spacing:12.780000px;}
.ls3{letter-spacing:40.860000px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws5{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.401400px;}
.ws6{word-spacing:-21.312720px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-19.980000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.066240px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._25{margin-left:-2.212560px;}
._1{margin-left:-1.126080px;}
._4{width:1.041840px;}
._5{width:2.815440px;}
._e{width:4.354200px;}
._1d{width:6.180480px;}
._9{width:7.413120px;}
._6{width:8.845200px;}
._11{width:9.930240px;}
._1c{width:11.346960px;}
._1b{width:12.600480px;}
._7{width:13.899600px;}
._8{width:15.858000px;}
._f{width:16.969200px;}
._17{width:18.515280px;}
._27{width:19.619280px;}
._3{width:22.438800px;}
._19{width:23.964480px;}
._18{width:25.187760px;}
._22{width:26.735040px;}
._16{width:28.557360px;}
._15{width:30.157920px;}
._14{width:31.674240px;}
._1e{width:36.085680px;}
._20{width:37.118880px;}
._b{width:38.949840px;}
._a{width:40.098240px;}
._21{width:41.446080px;}
._24{width:42.572160px;}
._26{width:43.918320px;}
._c{width:49.533120px;}
._d{width:51.386400px;}
._10{width:52.782000px;}
._29{width:54.028800px;}
._28{width:59.641920px;}
._1a{width:62.705520px;}
._1f{width:65.959920px;}
._2b{width:68.205600px;}
._2a{width:69.236640px;}
._23{width:79.974720px;}
._12{width:87.104160px;}
._13{width:88.544880px;}
._2{width:638.842080px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.940000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.800000px;}
.y79{bottom:82.440000px;}
.y45{bottom:111.600000px;}
.y78{bottom:118.620000px;}
.y5a{bottom:121.680000px;}
.y44{bottom:147.816000px;}
.y77{bottom:155.010000px;}
.y59{bottom:157.890000px;}
.y23{bottom:179.130000px;}
.y43{bottom:183.990000px;}
.y76{bottom:191.190000px;}
.y58{bottom:194.070000px;}
.y22{bottom:215.310000px;}
.y42{bottom:220.170000px;}
.y75{bottom:227.370000px;}
.y57{bottom:230.430000px;}
.y21{bottom:251.490000px;}
.y41{bottom:256.530000px;}
.y74{bottom:263.550000px;}
.y56{bottom:266.610000px;}
.y20{bottom:287.850000px;}
.y40{bottom:292.710000px;}
.y73{bottom:299.910000px;}
.y55{bottom:302.790000px;}
.y1f{bottom:324.030000px;}
.y3f{bottom:328.890000px;}
.y72{bottom:335.730000px;}
.y54{bottom:338.970000px;}
.y1e{bottom:360.210000px;}
.y3e{bottom:365.070000px;}
.y71{bottom:372.270000px;}
.y53{bottom:375.330000px;}
.y32{bottom:380.235000px;}
.y1d{bottom:396.435000px;}
.y3d{bottom:401.295000px;}
.y70{bottom:408.495000px;}
.y52{bottom:411.555000px;}
.y31{bottom:416.415000px;}
.y1c{bottom:432.795000px;}
.y3c{bottom:437.655000px;}
.y6f{bottom:444.855000px;}
.y51{bottom:447.735000px;}
.y30{bottom:452.775000px;}
.y1b{bottom:468.975000px;}
.y3b{bottom:473.835000px;}
.y6e{bottom:481.035000px;}
.y50{bottom:483.915000px;}
.y2f{bottom:488.955000px;}
.y1a{bottom:505.155000px;}
.y3a{bottom:510.015000px;}
.y6d{bottom:517.215000px;}
.y4f{bottom:520.275000px;}
.y2e{bottom:525.135000px;}
.y19{bottom:541.335000px;}
.y39{bottom:546.195000px;}
.y6c{bottom:553.395000px;}
.y4e{bottom:556.455000px;}
.y2d{bottom:561.315000px;}
.y18{bottom:577.515000px;}
.y38{bottom:582.555000px;}
.y6b{bottom:589.755000px;}
.y4d{bottom:592.635000px;}
.y2c{bottom:597.675000px;}
.y17{bottom:613.875000px;}
.y37{bottom:618.735000px;}
.y6a{bottom:625.935000px;}
.y4c{bottom:628.815000px;}
.y2b{bottom:633.885000px;}
.y16{bottom:650.085000px;}
.y36{bottom:654.945000px;}
.y69{bottom:662.145000px;}
.y4b{bottom:665.025000px;}
.y2a{bottom:670.065000px;}
.y15{bottom:686.265000px;}
.y35{bottom:691.125000px;}
.y68{bottom:698.325000px;}
.y4a{bottom:701.385000px;}
.y29{bottom:706.245000px;}
.y14{bottom:722.445000px;}
.y34{bottom:727.485000px;}
.y67{bottom:734.505000px;}
.y49{bottom:737.565000px;}
.y28{bottom:742.425000px;}
.y33{bottom:758.625000px;}
.y13{bottom:758.805000px;}
.y66{bottom:770.865000px;}
.y48{bottom:773.745000px;}
.y27{bottom:778.425000px;}
.y12{bottom:794.985000px;}
.y65{bottom:807.045000px;}
.y47{bottom:809.925000px;}
.y26{bottom:814.965000px;}
.y11{bottom:831.165000px;}
.y46{bottom:841.245000px;}
.y64{bottom:843.225000px;}
.y25{bottom:851.145000px;}
.y10{bottom:867.345000px;}
.y63{bottom:879.405000px;}
.y24{bottom:882.285000px;}
.yf{bottom:903.750000px;}
.y62{bottom:915.810000px;}
.ye{bottom:939.930000px;}
.y61{bottom:951.990000px;}
.y7a{bottom:955.410000px;}
.yd{bottom:976.110000px;}
.y60{bottom:988.170000px;}
.yc{bottom:1011.930000px;}
.y5f{bottom:1024.350000px;}
.yb{bottom:1036.050000px;}
.ya{bottom:1060.350000px;}
.y5e{bottom:1060.710000px;}
.y9{bottom:1084.470000px;}
.y5d{bottom:1096.890000px;}
.y8{bottom:1108.590000px;}
.y7{bottom:1132.710000px;}
.y5c{bottom:1133.070000px;}
.y6{bottom:1168.920000px;}
.y5b{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.600000px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h7{height:74.244727px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:20.550000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.xc{left:148.896000px;}
.x6{left:150.870000px;}
.x7{left:153.030000px;}
.x9{left:164.370000px;}
.x5{left:253.290000px;}
.x10{left:272.595000px;}
.xe{left:294.555000px;}
.x8{left:326.415000px;}
.xa{left:340.275000px;}
.x3{left:438.915000px;}
.xb{left:489.165000px;}
.xf{left:736.710000px;}
.xd{left:739.230000px;}
.x11{left:743.370000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.135040pt;}
.ls5{letter-spacing:0.224640pt;}
.lsc{letter-spacing:0.239360pt;}
.ls4{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:6.240000pt;}
.lsa{letter-spacing:6.880000pt;}
.ls9{letter-spacing:11.360000pt;}
.ls3{letter-spacing:36.320000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws5{word-spacing:-19.040000pt;}
.ws4{word-spacing:-19.023467pt;}
.ws6{word-spacing:-18.944640pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-17.760000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._25{margin-left:-1.966720pt;}
._1{margin-left:-1.000960pt;}
._4{width:0.926080pt;}
._5{width:2.502613pt;}
._e{width:3.870400pt;}
._1d{width:5.493760pt;}
._9{width:6.589440pt;}
._6{width:7.862400pt;}
._11{width:8.826880pt;}
._1c{width:10.086187pt;}
._1b{width:11.200427pt;}
._7{width:12.355200pt;}
._8{width:14.096000pt;}
._f{width:15.083733pt;}
._17{width:16.458027pt;}
._27{width:17.439360pt;}
._3{width:19.945600pt;}
._19{width:21.301760pt;}
._18{width:22.389120pt;}
._22{width:23.764480pt;}
._16{width:25.384320pt;}
._15{width:26.807040pt;}
._14{width:28.154880pt;}
._1e{width:32.076160pt;}
._20{width:32.994560pt;}
._b{width:34.622080pt;}
._a{width:35.642880pt;}
._21{width:36.840960pt;}
._24{width:37.841920pt;}
._26{width:39.038507pt;}
._c{width:44.029440pt;}
._d{width:45.676800pt;}
._10{width:46.917333pt;}
._29{width:48.025600pt;}
._28{width:53.015040pt;}
._1a{width:55.738240pt;}
._1f{width:58.631040pt;}
._2b{width:60.627200pt;}
._2a{width:61.543680pt;}
._23{width:71.088640pt;}
._12{width:77.425920pt;}
._13{width:78.706560pt;}
._2{width:567.859627pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.280000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.600000pt;}
.y79{bottom:73.280000pt;}
.y45{bottom:99.200000pt;}
.y78{bottom:105.440000pt;}
.y5a{bottom:108.160000pt;}
.y44{bottom:131.392000pt;}
.y77{bottom:137.786667pt;}
.y59{bottom:140.346667pt;}
.y23{bottom:159.226667pt;}
.y43{bottom:163.546667pt;}
.y76{bottom:169.946667pt;}
.y58{bottom:172.506667pt;}
.y22{bottom:191.386667pt;}
.y42{bottom:195.706667pt;}
.y75{bottom:202.106667pt;}
.y57{bottom:204.826667pt;}
.y21{bottom:223.546667pt;}
.y41{bottom:228.026667pt;}
.y74{bottom:234.266667pt;}
.y56{bottom:236.986667pt;}
.y20{bottom:255.866667pt;}
.y40{bottom:260.186667pt;}
.y73{bottom:266.586667pt;}
.y55{bottom:269.146667pt;}
.y1f{bottom:288.026667pt;}
.y3f{bottom:292.346667pt;}
.y72{bottom:298.426667pt;}
.y54{bottom:301.306667pt;}
.y1e{bottom:320.186667pt;}
.y3e{bottom:324.506667pt;}
.y71{bottom:330.906667pt;}
.y53{bottom:333.626667pt;}
.y32{bottom:337.986667pt;}
.y1d{bottom:352.386667pt;}
.y3d{bottom:356.706667pt;}
.y70{bottom:363.106667pt;}
.y52{bottom:365.826667pt;}
.y31{bottom:370.146667pt;}
.y1c{bottom:384.706667pt;}
.y3c{bottom:389.026667pt;}
.y6f{bottom:395.426667pt;}
.y51{bottom:397.986667pt;}
.y30{bottom:402.466667pt;}
.y1b{bottom:416.866667pt;}
.y3b{bottom:421.186667pt;}
.y6e{bottom:427.586667pt;}
.y50{bottom:430.146667pt;}
.y2f{bottom:434.626667pt;}
.y1a{bottom:449.026667pt;}
.y3a{bottom:453.346667pt;}
.y6d{bottom:459.746667pt;}
.y4f{bottom:462.466667pt;}
.y2e{bottom:466.786667pt;}
.y19{bottom:481.186667pt;}
.y39{bottom:485.506667pt;}
.y6c{bottom:491.906667pt;}
.y4e{bottom:494.626667pt;}
.y2d{bottom:498.946667pt;}
.y18{bottom:513.346667pt;}
.y38{bottom:517.826667pt;}
.y6b{bottom:524.226667pt;}
.y4d{bottom:526.786667pt;}
.y2c{bottom:531.266667pt;}
.y17{bottom:545.666667pt;}
.y37{bottom:549.986667pt;}
.y6a{bottom:556.386667pt;}
.y4c{bottom:558.946667pt;}
.y2b{bottom:563.453333pt;}
.y16{bottom:577.853333pt;}
.y36{bottom:582.173333pt;}
.y69{bottom:588.573333pt;}
.y4b{bottom:591.133333pt;}
.y2a{bottom:595.613333pt;}
.y15{bottom:610.013333pt;}
.y35{bottom:614.333333pt;}
.y68{bottom:620.733333pt;}
.y4a{bottom:623.453333pt;}
.y29{bottom:627.773333pt;}
.y14{bottom:642.173333pt;}
.y34{bottom:646.653333pt;}
.y67{bottom:652.893333pt;}
.y49{bottom:655.613333pt;}
.y28{bottom:659.933333pt;}
.y33{bottom:674.333333pt;}
.y13{bottom:674.493333pt;}
.y66{bottom:685.213333pt;}
.y48{bottom:687.773333pt;}
.y27{bottom:691.933333pt;}
.y12{bottom:706.653333pt;}
.y65{bottom:717.373333pt;}
.y47{bottom:719.933333pt;}
.y26{bottom:724.413333pt;}
.y11{bottom:738.813333pt;}
.y46{bottom:747.773333pt;}
.y64{bottom:749.533333pt;}
.y25{bottom:756.573333pt;}
.y10{bottom:770.973333pt;}
.y63{bottom:781.693333pt;}
.y24{bottom:784.253333pt;}
.yf{bottom:803.333333pt;}
.y62{bottom:814.053333pt;}
.ye{bottom:835.493333pt;}
.y61{bottom:846.213333pt;}
.y7a{bottom:849.253333pt;}
.yd{bottom:867.653333pt;}
.y60{bottom:878.373333pt;}
.yc{bottom:899.493333pt;}
.y5f{bottom:910.533333pt;}
.yb{bottom:920.933333pt;}
.ya{bottom:942.533333pt;}
.y5e{bottom:942.853333pt;}
.y9{bottom:963.973333pt;}
.y5d{bottom:975.013333pt;}
.y8{bottom:985.413333pt;}
.y7{bottom:1006.853333pt;}
.y5c{bottom:1007.173333pt;}
.y6{bottom:1039.040000pt;}
.y5b{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.200000pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h7{height:65.995312pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:18.266667pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.xc{left:132.352000pt;}
.x6{left:134.106667pt;}
.x7{left:136.026667pt;}
.x9{left:146.106667pt;}
.x5{left:225.146667pt;}
.x10{left:242.306667pt;}
.xe{left:261.826667pt;}
.x8{left:290.146667pt;}
.xa{left:302.466667pt;}
.x3{left:390.146667pt;}
.xb{left:434.813333pt;}
.xf{left:654.853333pt;}
.xd{left:657.093333pt;}
.x11{left:660.773333pt;}
}




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