
    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_902c5a5f22913f20902dda72.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_236f798c1b0ad7982e2fdee1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_39d20b729faa165297d10d32.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.687988;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_27453de268f9a45234797817.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_7c420e890fda2cd5f604e0e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_a12b25eefa332ae80b6c35bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_2ec63254a8b349b3e39c7ce8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_04c53264dd073dd0cc11d5c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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);}
.v1{vertical-align:-5.442000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.872000px;}
.v2{vertical-align:60.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.477600px;}
.ls2{letter-spacing:24.653286px;}
.ls3{letter-spacing:24.821286px;}
.ls4{letter-spacing:100.998600px;}
.ls1{letter-spacing:101.301300px;}
.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;}
}
.wsd{word-spacing:-73.224000px;}
.ws3{word-spacing:-65.958552px;}
.ws0{word-spacing:-65.035116px;}
.wsb{word-spacing:-58.370400px;}
.ws6{word-spacing:-57.553200px;}
.wsc{word-spacing:-53.982000px;}
.ws8{word-spacing:-40.704408px;}
.ws4{word-spacing:-37.309986px;}
.wsa{word-spacing:-24.843798px;}
.ws7{word-spacing:-15.549324px;}
.ws2{word-spacing:-0.095922px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:55.154814px;}
.ws9{word-spacing:740.387568px;}
._6{margin-left:-1367.984880px;}
._4{margin-left:-104.613798px;}
._c{margin-left:-56.766804px;}
._9{margin-left:-7.384776px;}
._1{margin-left:-4.608432px;}
._2{margin-left:-3.072288px;}
._3{margin-left:-1.344126px;}
._0{width:1.152108px;}
._a{width:2.343594px;}
._7{width:7.521774px;}
._b{width:31.129770px;}
._5{width:80.004864px;}
._8{width:798.292116px;}
.fce{color:rgb(0,105,180);}
.fcd{color:rgb(255,0,0);}
.fc0{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc7{color:rgb(226,31,31);}
.fcb{color:rgb(128,128,128);}
.fc2{color:rgb(114,114,119);}
.fc3{color:rgb(0,48,93);}
.fcc{color:rgb(128,0,0);}
.fc6{color:rgb(198,198,201);}
.fc8{color:rgb(163,21,21);}
.fc9{color:rgb(4,81,165);}
.fc1{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fca{color:rgb(0,0,255);}
.fs2{font-size:47.964000px;}
.fs5{font-size:60.036000px;}
.fs6{font-size:89.970000px;}
.fs1{font-size:95.922000px;}
.fs4{font-size:97.284000px;}
.fs7{font-size:108.000000px;}
.fs3{font-size:144.054000px;}
.fs0{font-size:192.018000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y11{bottom:0.213000px;}
.yd{bottom:0.255000px;}
.yb{bottom:3.105000px;}
.y9{bottom:4.422000px;}
.y7{bottom:4.549500px;}
.yf{bottom:5.826000px;}
.y14{bottom:22.621500px;}
.y13{bottom:36.865500px;}
.y15{bottom:40.011000px;}
.y12{bottom:51.237000px;}
.y30{bottom:76.026000px;}
.y10{bottom:82.870500px;}
.y39{bottom:85.762500px;}
.ye{bottom:106.086000px;}
.y2b{bottom:109.149000px;}
.y6b{bottom:139.890000px;}
.y58{bottom:140.188500px;}
.y21{bottom:143.377500px;}
.y3e{bottom:144.397500px;}
.yc{bottom:154.092000px;}
.y3d{bottom:158.641500px;}
.y2f{bottom:163.617000px;}
.y6a{bottom:169.144500px;}
.y57{bottom:169.441500px;}
.y51{bottom:177.094500px;}
.y6{bottom:187.597500px;}
.y8{bottom:187.725000px;}
.ya{bottom:189.042000px;}
.y77{bottom:189.255000px;}
.y20{bottom:191.509500px;}
.y2a{bottom:197.037000px;}
.y69{bottom:198.270000px;}
.y50{bottom:206.349000px;}
.y81{bottom:210.855000px;}
.y2c{bottom:215.661000px;}
.y62{bottom:221.527500px;}
.y38{bottom:222.250500px;}
.y68{bottom:227.523000px;}
.y4a{bottom:227.821500px;}
.y5{bottom:235.006500px;}
.y4f{bottom:235.474500px;}
.y1f{bottom:236.793000px;}
.y44{bottom:238.323000px;}
.y29{bottom:245.041500px;}
.y5d{bottom:248.188500px;}
.y61{bottom:248.358000px;}
.y56{bottom:250.441500px;}
.y49{bottom:256.905000px;}
.y37{bottom:260.050500px;}
.y80{bottom:262.305000px;}
.y4e{bottom:264.727500px;}
.y2e{bottom:266.811000px;}
.y42{bottom:269.958000px;}
.y67{bottom:271.446000px;}
.y5c{bottom:275.188500px;}
.y60{bottom:275.358000px;}
.y55{bottom:279.694500px;}
.y1e{bottom:284.967000px;}
.y48{bottom:286.158000px;}
.y28{bottom:291.855000px;}
.y4{bottom:292.621500px;}
.y4d{bottom:293.811000px;}
.y36{bottom:296.362500px;}
.y66{bottom:300.571500px;}
.y5b{bottom:302.188500px;}
.y5f{bottom:302.358000px;}
.y54{bottom:308.821500px;}
.y53{bottom:308.949000px;}
.y7f{bottom:311.499000px;}
.y47{bottom:315.241500px;}
.y4c{bottom:322.894500px;}
.y2d{bottom:327.105000px;}
.y5a{bottom:329.188500px;}
.y65{bottom:329.826000px;}
.y31{bottom:330.250500px;}
.y1d{bottom:331.738500px;}
.y27{bottom:337.138500px;}
.y52{bottom:338.074500px;}
.y71{bottom:339.265500px;}
.y7e{bottom:340.158000px;}
.y46{bottom:344.494500px;}
.y3{bottom:350.193000px;}
.y4b{bottom:352.149000px;}
.y59{bottom:356.061000px;}
.y5e{bottom:356.188500px;}
.y64{bottom:358.909500px;}
.y3c{bottom:366.393000px;}
.y7d{bottom:370.305000px;}
.y45{bottom:372.261000px;}
.y1c{bottom:377.065500px;}
.y40{bottom:381.105000px;}
.y35{bottom:384.123000px;}
.y70{bottom:384.250500px;}
.y63{bottom:387.993000px;}
.y3b{bottom:395.518500px;}
.y2{bottom:407.806500px;}
.y34{bottom:414.270000px;}
.y7c{bottom:419.499000px;}
.y1b{bottom:423.709500px;}
.y6f{bottom:429.237000px;}
.y26{bottom:432.127500px;}
.y33{bottom:450.709500px;}
.y7b{bottom:452.070000px;}
.y73{bottom:463.167000px;}
.y1a{bottom:471.841500px;}
.y6e{bottom:474.094500px;}
.y25{bottom:478.771500px;}
.y7a{bottom:482.217000px;}
.y41{bottom:492.250500px;}
.y43{bottom:492.846000px;}
.y19{bottom:517.167000px;}
.y84{bottom:517.294500px;}
.y72{bottom:518.655000px;}
.y6d{bottom:519.123000px;}
.y24{bottom:524.055000px;}
.y76{bottom:527.202000px;}
.y32{bottom:527.670000px;}
.y79{bottom:531.411000px;}
.y78{bottom:563.344500px;}
.y83{bottom:563.938500px;}
.y18{bottom:565.299000px;}
.y75{bottom:573.846000px;}
.y6c{bottom:602.802000px;}
.y3a{bottom:603.270000px;}
.y3f{bottom:603.397500px;}
.y17{bottom:610.626000px;}
.y82{bottom:610.753500px;}
.y23{bottom:619.002000px;}
.y74{bottom:620.661000px;}
.y22{bottom:664.327500px;}
.y16{bottom:732.997500px;}
.h9{height:17.689500px;}
.h7{height:18.540000px;}
.h6{height:21.346500px;}
.h5{height:22.665000px;}
.h3{height:22.792500px;}
.h8{height:24.195000px;}
.ha{height:36.699018px;}
.h12{height:45.935748px;}
.h11{height:67.267444px;}
.hf{height:67.273444px;}
.h1a{height:67.435444px;}
.he{height:67.441444px;}
.h1d{height:67.945444px;}
.hc{height:67.951444px;}
.hd{height:68.119444px;}
.h18{height:68.827050px;}
.h16{height:68.993561px;}
.h15{height:69.161561px;}
.h14{height:69.167561px;}
.h4{height:73.393444px;}
.h17{height:74.422260px;}
.h10{height:74.435561px;}
.h1b{height:75.265444px;}
.h1c{height:75.769444px;}
.h19{height:82.634766px;}
.hb{height:110.221005px;}
.h13{height:134.471561px;}
.h2{height:146.920022px;}
.h1{height:809.956500px;}
.h0{height:810.000000px;}
.w8{width:122.457000px;}
.w6{width:129.472500px;}
.w3{width:149.413500px;}
.w4{width:150.519000px;}
.w5{width:187.299000px;}
.w7{width:417.925500px;}
.w2{width:1439.971500px;}
.w1{width:1440.000000px;}
.w0{width:1440.014173px;}
.x7{left:-1.444500px;}
.x0{left:0.000000px;}
.x3{left:1.914000px;}
.x20{left:45.580500px;}
.x1c{left:54.765000px;}
.x2{left:102.345000px;}
.x1{left:104.259000px;}
.x6{left:105.703500px;}
.x22{left:113.868000px;}
.x12{left:118.630500px;}
.xa{left:123.307500px;}
.x1a{left:135.297000px;}
.x11{left:137.083500px;}
.x14{left:140.697000px;}
.x13{left:146.097000px;}
.xb{left:157.068000px;}
.x8{left:222.760500px;}
.x4{left:257.626500px;}
.x18{left:274.336500px;}
.x5{left:407.934000px;}
.x15{left:477.751500px;}
.x17{left:508.068000px;}
.x19{left:519.888000px;}
.x16{left:563.259000px;}
.x1d{left:598.804500px;}
.x1e{left:630.312000px;}
.x23{left:657.907500px;}
.x21{left:666.156000px;}
.x1f{left:681.165000px;}
.x1b{left:933.435000px;}
.x9{left:949.336500px;}
.x24{left:1103.556000px;}
.xc{left:1110.019500px;}
.xd{left:1128.769500px;}
.xe{left:1164.912000px;}
.xf{left:1221.591000px;}
.x10{left:1228.648500px;}
@media print{
.v1{vertical-align:-4.837333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.664000pt;}
.v2{vertical-align:53.365333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.424533pt;}
.ls2{letter-spacing:21.914032pt;}
.ls3{letter-spacing:22.063365pt;}
.ls4{letter-spacing:89.776533pt;}
.ls1{letter-spacing:90.045600pt;}
.wsd{word-spacing:-65.088000pt;}
.ws3{word-spacing:-58.629824pt;}
.ws0{word-spacing:-57.808992pt;}
.wsb{word-spacing:-51.884800pt;}
.ws6{word-spacing:-51.158400pt;}
.wsc{word-spacing:-47.984000pt;}
.ws8{word-spacing:-36.181696pt;}
.ws4{word-spacing:-33.164432pt;}
.wsa{word-spacing:-22.083376pt;}
.ws7{word-spacing:-13.821621pt;}
.ws2{word-spacing:-0.085264pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:49.026501pt;}
.ws9{word-spacing:658.122283pt;}
._6{margin-left:-1215.986560pt;}
._4{margin-left:-92.990043pt;}
._c{margin-left:-50.459381pt;}
._9{margin-left:-6.564245pt;}
._1{margin-left:-4.096384pt;}
._2{margin-left:-2.730923pt;}
._3{margin-left:-1.194779pt;}
._0{width:1.024096pt;}
._a{width:2.083195pt;}
._7{width:6.686021pt;}
._b{width:27.670907pt;}
._5{width:71.115435pt;}
._8{width:709.592992pt;}
.fs2{font-size:42.634667pt;}
.fs5{font-size:53.365333pt;}
.fs6{font-size:79.973333pt;}
.fs1{font-size:85.264000pt;}
.fs4{font-size:86.474667pt;}
.fs7{font-size:96.000000pt;}
.fs3{font-size:128.048000pt;}
.fs0{font-size:170.682667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y11{bottom:0.189333pt;}
.yd{bottom:0.226667pt;}
.yb{bottom:2.760000pt;}
.y9{bottom:3.930667pt;}
.y7{bottom:4.044000pt;}
.yf{bottom:5.178667pt;}
.y14{bottom:20.108000pt;}
.y13{bottom:32.769333pt;}
.y15{bottom:35.565333pt;}
.y12{bottom:45.544000pt;}
.y30{bottom:67.578667pt;}
.y10{bottom:73.662667pt;}
.y39{bottom:76.233333pt;}
.ye{bottom:94.298667pt;}
.y2b{bottom:97.021333pt;}
.y6b{bottom:124.346667pt;}
.y58{bottom:124.612000pt;}
.y21{bottom:127.446667pt;}
.y3e{bottom:128.353333pt;}
.yc{bottom:136.970667pt;}
.y3d{bottom:141.014667pt;}
.y2f{bottom:145.437333pt;}
.y6a{bottom:150.350667pt;}
.y57{bottom:150.614667pt;}
.y51{bottom:157.417333pt;}
.y6{bottom:166.753333pt;}
.y8{bottom:166.866667pt;}
.ya{bottom:168.037333pt;}
.y77{bottom:168.226667pt;}
.y20{bottom:170.230667pt;}
.y2a{bottom:175.144000pt;}
.y69{bottom:176.240000pt;}
.y50{bottom:183.421333pt;}
.y81{bottom:187.426667pt;}
.y2c{bottom:191.698667pt;}
.y62{bottom:196.913333pt;}
.y38{bottom:197.556000pt;}
.y68{bottom:202.242667pt;}
.y4a{bottom:202.508000pt;}
.y5{bottom:208.894667pt;}
.y4f{bottom:209.310667pt;}
.y1f{bottom:210.482667pt;}
.y44{bottom:211.842667pt;}
.y29{bottom:217.814667pt;}
.y5d{bottom:220.612000pt;}
.y61{bottom:220.762667pt;}
.y56{bottom:222.614667pt;}
.y49{bottom:228.360000pt;}
.y37{bottom:231.156000pt;}
.y80{bottom:233.160000pt;}
.y4e{bottom:235.313333pt;}
.y2e{bottom:237.165333pt;}
.y42{bottom:239.962667pt;}
.y67{bottom:241.285333pt;}
.y5c{bottom:244.612000pt;}
.y60{bottom:244.762667pt;}
.y55{bottom:248.617333pt;}
.y1e{bottom:253.304000pt;}
.y48{bottom:254.362667pt;}
.y28{bottom:259.426667pt;}
.y4{bottom:260.108000pt;}
.y4d{bottom:261.165333pt;}
.y36{bottom:263.433333pt;}
.y66{bottom:267.174667pt;}
.y5b{bottom:268.612000pt;}
.y5f{bottom:268.762667pt;}
.y54{bottom:274.508000pt;}
.y53{bottom:274.621333pt;}
.y7f{bottom:276.888000pt;}
.y47{bottom:280.214667pt;}
.y4c{bottom:287.017333pt;}
.y2d{bottom:290.760000pt;}
.y5a{bottom:292.612000pt;}
.y65{bottom:293.178667pt;}
.y31{bottom:293.556000pt;}
.y1d{bottom:294.878667pt;}
.y27{bottom:299.678667pt;}
.y52{bottom:300.510667pt;}
.y71{bottom:301.569333pt;}
.y7e{bottom:302.362667pt;}
.y46{bottom:306.217333pt;}
.y3{bottom:311.282667pt;}
.y4b{bottom:313.021333pt;}
.y59{bottom:316.498667pt;}
.y5e{bottom:316.612000pt;}
.y64{bottom:319.030667pt;}
.y3c{bottom:325.682667pt;}
.y7d{bottom:329.160000pt;}
.y45{bottom:330.898667pt;}
.y1c{bottom:335.169333pt;}
.y40{bottom:338.760000pt;}
.y35{bottom:341.442667pt;}
.y70{bottom:341.556000pt;}
.y63{bottom:344.882667pt;}
.y3b{bottom:351.572000pt;}
.y2{bottom:362.494667pt;}
.y34{bottom:368.240000pt;}
.y7c{bottom:372.888000pt;}
.y1b{bottom:376.630667pt;}
.y6f{bottom:381.544000pt;}
.y26{bottom:384.113333pt;}
.y33{bottom:400.630667pt;}
.y7b{bottom:401.840000pt;}
.y73{bottom:411.704000pt;}
.y1a{bottom:419.414667pt;}
.y6e{bottom:421.417333pt;}
.y25{bottom:425.574667pt;}
.y7a{bottom:428.637333pt;}
.y41{bottom:437.556000pt;}
.y43{bottom:438.085333pt;}
.y19{bottom:459.704000pt;}
.y84{bottom:459.817333pt;}
.y72{bottom:461.026667pt;}
.y6d{bottom:461.442667pt;}
.y24{bottom:465.826667pt;}
.y76{bottom:468.624000pt;}
.y32{bottom:469.040000pt;}
.y79{bottom:472.365333pt;}
.y78{bottom:500.750667pt;}
.y83{bottom:501.278667pt;}
.y18{bottom:502.488000pt;}
.y75{bottom:510.085333pt;}
.y6c{bottom:535.824000pt;}
.y3a{bottom:536.240000pt;}
.y3f{bottom:536.353333pt;}
.y17{bottom:542.778667pt;}
.y82{bottom:542.892000pt;}
.y23{bottom:550.224000pt;}
.y74{bottom:551.698667pt;}
.y22{bottom:590.513333pt;}
.y16{bottom:651.553333pt;}
.h9{height:15.724000pt;}
.h7{height:16.480000pt;}
.h6{height:18.974667pt;}
.h5{height:20.146667pt;}
.h3{height:20.260000pt;}
.h8{height:21.506667pt;}
.ha{height:32.621349pt;}
.h12{height:40.831776pt;}
.h11{height:59.793284pt;}
.hf{height:59.798617pt;}
.h1a{height:59.942617pt;}
.he{height:59.947951pt;}
.h1d{height:60.395951pt;}
.hc{height:60.401284pt;}
.hd{height:60.550617pt;}
.h18{height:61.179600pt;}
.h16{height:61.327609pt;}
.h15{height:61.476943pt;}
.h14{height:61.482276pt;}
.h4{height:65.238617pt;}
.h17{height:66.153120pt;}
.h10{height:66.164943pt;}
.h1b{height:66.902617pt;}
.h1c{height:67.350617pt;}
.h19{height:73.453125pt;}
.hb{height:97.974227pt;}
.h13{height:119.530276pt;}
.h2{height:130.595576pt;}
.h1{height:719.961333pt;}
.h0{height:720.000000pt;}
.w8{width:108.850667pt;}
.w6{width:115.086667pt;}
.w3{width:132.812000pt;}
.w4{width:133.794667pt;}
.w5{width:166.488000pt;}
.w7{width:371.489333pt;}
.w2{width:1279.974667pt;}
.w1{width:1280.000000pt;}
.w0{width:1280.012598pt;}
.x7{left:-1.284000pt;}
.x0{left:0.000000pt;}
.x3{left:1.701333pt;}
.x20{left:40.516000pt;}
.x1c{left:48.680000pt;}
.x2{left:90.973333pt;}
.x1{left:92.674667pt;}
.x6{left:93.958667pt;}
.x22{left:101.216000pt;}
.x12{left:105.449333pt;}
.xa{left:109.606667pt;}
.x1a{left:120.264000pt;}
.x11{left:121.852000pt;}
.x14{left:125.064000pt;}
.x13{left:129.864000pt;}
.xb{left:139.616000pt;}
.x8{left:198.009333pt;}
.x4{left:229.001333pt;}
.x18{left:243.854667pt;}
.x5{left:362.608000pt;}
.x15{left:424.668000pt;}
.x17{left:451.616000pt;}
.x19{left:462.122667pt;}
.x16{left:500.674667pt;}
.x1d{left:532.270667pt;}
.x1e{left:560.277333pt;}
.x23{left:584.806667pt;}
.x21{left:592.138667pt;}
.x1f{left:605.480000pt;}
.x1b{left:829.720000pt;}
.x9{left:843.854667pt;}
.x24{left:980.938667pt;}
.xc{left:986.684000pt;}
.xd{left:1003.350667pt;}
.xe{left:1035.477333pt;}
.xf{left:1085.858667pt;}
.x10{left:1092.132000pt;}
}




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