
    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_933272095a7aef41e9ba9d8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_2b2caaeb195505ffbaa35303.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_146e781e7a3a2b5a1776a31e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.776855;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_50e342265ec5d84ca8390450.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_b0ca7e5acf4c2ef7bd86f723.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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_8fd5c9a251331f7640341839.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1dd36169d16279af7fb1bccb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e92531be3fbf3496f145dc6c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3d56d47d062a62aaea427129.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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:ffa;src:url('chunks/assets/font_4e854bf0ccdac27d8de27e55.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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:ffb;src:url('chunks/assets/font_fca895bf6c8b9c6639383bdd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.752441;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:ffc;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls5{letter-spacing:-1.650000px;}
.ls7{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.027360px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.738720px;}
.ls6{letter-spacing:56.826720px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws5{word-spacing:-59.760000px;}
.ws2{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.872000px;}
.ws4{word-spacing:-19.296000px;}
.ws0{word-spacing:-15.840000px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-5.472000px;}
._10{margin-left:-4.320000px;}
._2{margin-left:-3.117600px;}
._0{margin-left:-1.436400px;}
._1{width:1.915200px;}
._3{width:3.426000px;}
._4{width:5.112000px;}
._d{width:6.292800px;}
._e{width:7.430400px;}
._9{width:8.512800px;}
._19{width:9.621600px;}
._11{width:10.642800px;}
._c{width:11.968800px;}
._7{width:13.248000px;}
._8{width:14.328000px;}
._b{width:16.844400px;}
._a{width:18.072000px;}
._17{width:21.306000px;}
._16{width:22.392000px;}
._12{width:24.480000px;}
._13{width:25.628400px;}
._18{width:27.000000px;}
._1b{width:29.876400px;}
._1a{width:30.888000px;}
._6{width:32.518800px;}
._5{width:33.840000px;}
._14{width:35.568000px;}
._15{width:36.648000px;}
._1d{width:70.963200px;}
._1c{width:72.097200px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y31{bottom:90.756000px;}
.y30{bottom:111.276000px;}
.y63{bottom:125.496000px;}
.y2f{bottom:132.156000px;}
.y62{bottom:146.196000px;}
.y2e{bottom:152.850000px;}
.y61{bottom:166.890000px;}
.y2d{bottom:173.550000px;}
.y60{bottom:187.590000px;}
.y2c{bottom:194.070000px;}
.y5f{bottom:208.290000px;}
.y2b{bottom:214.770000px;}
.y5e{bottom:228.990000px;}
.y2a{bottom:235.470000px;}
.y5d{bottom:249.690000px;}
.y29{bottom:256.170000px;}
.y5c{bottom:270.390000px;}
.y28{bottom:276.870000px;}
.y5b{bottom:291.090000px;}
.y27{bottom:297.570000px;}
.y5a{bottom:311.790000px;}
.y26{bottom:318.270000px;}
.y59{bottom:332.490000px;}
.y25{bottom:339.015000px;}
.y58{bottom:353.415000px;}
.y24{bottom:359.715000px;}
.y57{bottom:374.115000px;}
.y23{bottom:380.415000px;}
.y56{bottom:394.635000px;}
.y22{bottom:401.115000px;}
.y55{bottom:415.335000px;}
.y21{bottom:421.815000px;}
.y54{bottom:436.035000px;}
.y20{bottom:442.515000px;}
.y53{bottom:456.735000px;}
.y1f{bottom:463.395000px;}
.y52{bottom:477.435000px;}
.y1e{bottom:483.915000px;}
.y51{bottom:498.135000px;}
.y1d{bottom:504.795000px;}
.y50{bottom:518.835000px;}
.y1c{bottom:525.315000px;}
.y4f{bottom:539.715000px;}
.y1b{bottom:546.015000px;}
.y4e{bottom:560.235000px;}
.y1a{bottom:566.895000px;}
.y4d{bottom:580.935000px;}
.y19{bottom:587.595000px;}
.y4c{bottom:601.635000px;}
.y18{bottom:607.605000px;}
.y4b{bottom:622.365000px;}
.y17{bottom:625.965000px;}
.y4a{bottom:643.065000px;}
.y16{bottom:646.665000px;}
.y49{bottom:663.765000px;}
.y15{bottom:671.685000px;}
.y48{bottom:684.465000px;}
.y14{bottom:694.005000px;}
.y47{bottom:705.165000px;}
.y13{bottom:716.865000px;}
.y46{bottom:726.045000px;}
.y12{bottom:739.725000px;}
.y45{bottom:746.565000px;}
.y11{bottom:760.425000px;}
.y44{bottom:767.265000px;}
.y10{bottom:786.345000px;}
.y43{bottom:787.965000px;}
.yf{bottom:801.285000px;}
.y42{bottom:808.665000px;}
.ye{bottom:825.045000px;}
.y41{bottom:829.365000px;}
.yd{bottom:844.845000px;}
.y40{bottom:850.065000px;}
.y6e{bottom:850.605000px;}
.yc{bottom:856.905000px;}
.y3f{bottom:870.810000px;}
.y6d{bottom:873.510000px;}
.yb{bottom:877.830000px;}
.y3e{bottom:891.510000px;}
.y6c{bottom:894.210000px;}
.ya{bottom:898.350000px;}
.y3d{bottom:912.210000px;}
.y6b{bottom:914.910000px;}
.y9{bottom:920.490000px;}
.y3c{bottom:932.910000px;}
.y6a{bottom:935.610000px;}
.y8{bottom:948.210000px;}
.y3b{bottom:953.610000px;}
.y69{bottom:956.490000px;}
.y3a{bottom:974.310000px;}
.y7{bottom:975.390000px;}
.y68{bottom:977.190000px;}
.y39{bottom:995.010000px;}
.y67{bottom:997.890000px;}
.y6{bottom:1001.130000px;}
.y38{bottom:1015.710000px;}
.y66{bottom:1017.870000px;}
.y5{bottom:1027.050000px;}
.y37{bottom:1036.410000px;}
.y4{bottom:1052.970000px;}
.y36{bottom:1057.110000px;}
.y35{bottom:1077.810000px;}
.y3{bottom:1079.250000px;}
.y34{bottom:1098.510000px;}
.y2{bottom:1106.790000px;}
.y65{bottom:1119.210000px;}
.y33{bottom:1119.390000px;}
.y1{bottom:1134.510000px;}
.y64{bottom:1139.940000px;}
.y32{bottom:1140.120000px;}
.h5{height:37.546875px;}
.h9{height:39.972656px;}
.ha{height:41.317383px;}
.h6{height:54.213750px;}
.h7{height:62.184375px;}
.h8{height:63.855000px;}
.h4{height:75.093750px;}
.h3{height:93.867188px;}
.h2{height:99.874688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:84.959987px;}
.x9{left:87.659987px;}
.x7{left:89.135987px;}
.x3{left:91.835987px;}
.x4{left:106.955987px;}
.x2{left:126.935987px;}
.x8{left:153.209987px;}
.xd{left:165.989987px;}
.xb{left:177.689987px;}
.x5{left:206.309987px;}
.xc{left:293.474987px;}
.xa{left:393.014987px;}
.x1{left:446.474987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls5{letter-spacing:-1.466667pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024320pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.656640pt;}
.ls6{letter-spacing:50.512640pt;}
.ws1{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.664000pt;}
.ws4{word-spacing:-17.152000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-4.864000pt;}
._10{margin-left:-3.840000pt;}
._2{margin-left:-2.771200pt;}
._0{margin-left:-1.276800pt;}
._1{width:1.702400pt;}
._3{width:3.045333pt;}
._4{width:4.544000pt;}
._d{width:5.593600pt;}
._e{width:6.604800pt;}
._9{width:7.566933pt;}
._19{width:8.552533pt;}
._11{width:9.460267pt;}
._c{width:10.638933pt;}
._7{width:11.776000pt;}
._8{width:12.736000pt;}
._b{width:14.972800pt;}
._a{width:16.064000pt;}
._17{width:18.938667pt;}
._16{width:19.904000pt;}
._12{width:21.760000pt;}
._13{width:22.780800pt;}
._18{width:24.000000pt;}
._1b{width:26.556800pt;}
._1a{width:27.456000pt;}
._6{width:28.905600pt;}
._5{width:30.080000pt;}
._14{width:31.616000pt;}
._15{width:32.576000pt;}
._1d{width:63.078400pt;}
._1c{width:64.086400pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:80.672000pt;}
.y30{bottom:98.912000pt;}
.y63{bottom:111.552000pt;}
.y2f{bottom:117.472000pt;}
.y62{bottom:129.952000pt;}
.y2e{bottom:135.866667pt;}
.y61{bottom:148.346667pt;}
.y2d{bottom:154.266667pt;}
.y60{bottom:166.746667pt;}
.y2c{bottom:172.506667pt;}
.y5f{bottom:185.146667pt;}
.y2b{bottom:190.906667pt;}
.y5e{bottom:203.546667pt;}
.y2a{bottom:209.306667pt;}
.y5d{bottom:221.946667pt;}
.y29{bottom:227.706667pt;}
.y5c{bottom:240.346667pt;}
.y28{bottom:246.106667pt;}
.y5b{bottom:258.746667pt;}
.y27{bottom:264.506667pt;}
.y5a{bottom:277.146667pt;}
.y26{bottom:282.906667pt;}
.y59{bottom:295.546667pt;}
.y25{bottom:301.346667pt;}
.y58{bottom:314.146667pt;}
.y24{bottom:319.746667pt;}
.y57{bottom:332.546667pt;}
.y23{bottom:338.146667pt;}
.y56{bottom:350.786667pt;}
.y22{bottom:356.546667pt;}
.y55{bottom:369.186667pt;}
.y21{bottom:374.946667pt;}
.y54{bottom:387.586667pt;}
.y20{bottom:393.346667pt;}
.y53{bottom:405.986667pt;}
.y1f{bottom:411.906667pt;}
.y52{bottom:424.386667pt;}
.y1e{bottom:430.146667pt;}
.y51{bottom:442.786667pt;}
.y1d{bottom:448.706667pt;}
.y50{bottom:461.186667pt;}
.y1c{bottom:466.946667pt;}
.y4f{bottom:479.746667pt;}
.y1b{bottom:485.346667pt;}
.y4e{bottom:497.986667pt;}
.y1a{bottom:503.906667pt;}
.y4d{bottom:516.386667pt;}
.y19{bottom:522.306667pt;}
.y4c{bottom:534.786667pt;}
.y18{bottom:540.093333pt;}
.y4b{bottom:553.213333pt;}
.y17{bottom:556.413333pt;}
.y4a{bottom:571.613333pt;}
.y16{bottom:574.813333pt;}
.y49{bottom:590.013333pt;}
.y15{bottom:597.053333pt;}
.y48{bottom:608.413333pt;}
.y14{bottom:616.893333pt;}
.y47{bottom:626.813333pt;}
.y13{bottom:637.213333pt;}
.y46{bottom:645.373333pt;}
.y12{bottom:657.533333pt;}
.y45{bottom:663.613333pt;}
.y11{bottom:675.933333pt;}
.y44{bottom:682.013333pt;}
.y10{bottom:698.973333pt;}
.y43{bottom:700.413333pt;}
.yf{bottom:712.253333pt;}
.y42{bottom:718.813333pt;}
.ye{bottom:733.373333pt;}
.y41{bottom:737.213333pt;}
.yd{bottom:750.973333pt;}
.y40{bottom:755.613333pt;}
.y6e{bottom:756.093333pt;}
.yc{bottom:761.693333pt;}
.y3f{bottom:774.053333pt;}
.y6d{bottom:776.453333pt;}
.yb{bottom:780.293333pt;}
.y3e{bottom:792.453333pt;}
.y6c{bottom:794.853333pt;}
.ya{bottom:798.533333pt;}
.y3d{bottom:810.853333pt;}
.y6b{bottom:813.253333pt;}
.y9{bottom:818.213333pt;}
.y3c{bottom:829.253333pt;}
.y6a{bottom:831.653333pt;}
.y8{bottom:842.853333pt;}
.y3b{bottom:847.653333pt;}
.y69{bottom:850.213333pt;}
.y3a{bottom:866.053333pt;}
.y7{bottom:867.013333pt;}
.y68{bottom:868.613333pt;}
.y39{bottom:884.453333pt;}
.y67{bottom:887.013333pt;}
.y6{bottom:889.893333pt;}
.y38{bottom:902.853333pt;}
.y66{bottom:904.773333pt;}
.y5{bottom:912.933333pt;}
.y37{bottom:921.253333pt;}
.y4{bottom:935.973333pt;}
.y36{bottom:939.653333pt;}
.y35{bottom:958.053333pt;}
.y3{bottom:959.333333pt;}
.y34{bottom:976.453333pt;}
.y2{bottom:983.813333pt;}
.y65{bottom:994.853333pt;}
.y33{bottom:995.013333pt;}
.y1{bottom:1008.453333pt;}
.y64{bottom:1013.280000pt;}
.y32{bottom:1013.440000pt;}
.h5{height:33.375000pt;}
.h9{height:35.531250pt;}
.ha{height:36.726562pt;}
.h6{height:48.190000pt;}
.h7{height:55.275000pt;}
.h8{height:56.760000pt;}
.h4{height:66.750000pt;}
.h3{height:83.437500pt;}
.h2{height:88.777500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.519988pt;}
.x9{left:77.919988pt;}
.x7{left:79.231988pt;}
.x3{left:81.631988pt;}
.x4{left:95.071988pt;}
.x2{left:112.831988pt;}
.x8{left:136.186655pt;}
.xd{left:147.546655pt;}
.xb{left:157.946655pt;}
.x5{left:183.386655pt;}
.xc{left:260.866655pt;}
.xa{left:349.346655pt;}
.x1{left:396.866655pt;}
}




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