
    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_a64dfae21d4862bbadaf23f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_5c028dec08314aa7612dd8e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_d84932e7e9a2bad82f4653b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_c923e58a25a54a85c17f67de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_d60f3d94d9d8e921b75061cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_8d4c321b50ce0e7f68443354.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_475526a1f1aeebee09ff80e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_d3101c9fc6524b628f5bdadb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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;}
.m1{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,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);}
.v1{vertical-align:-172.800600px;}
.v2{vertical-align:-74.971200px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-3.300000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-111.888000px;}
.ws1{word-spacing:-43.920000px;}
.ws6{word-spacing:-38.160000px;}
.ws2{word-spacing:-35.136000px;}
.ws3{word-spacing:-32.397655px;}
.ws4{word-spacing:-30.910896px;}
.wse{word-spacing:-19.584000px;}
.ws7{word-spacing:-17.094000px;}
.ws16{word-spacing:-11.808000px;}
.ws15{word-spacing:-10.944000px;}
.ws2e{word-spacing:-9.828000px;}
.ws10{word-spacing:-7.344000px;}
.ws2d{word-spacing:-5.616000px;}
.ws23{word-spacing:-4.428000px;}
.ws1b{word-spacing:-2.304000px;}
.ws21{word-spacing:-1.404000px;}
.ws28{word-spacing:-1.188000px;}
.ws26{word-spacing:-0.462000px;}
.ws2b{word-spacing:-0.432000px;}
.ws8{word-spacing:0.000000px;}
.ws25{word-spacing:0.432000px;}
.ws1f{word-spacing:1.836000px;}
.ws27{word-spacing:3.300000px;}
.ws2a{word-spacing:3.672000px;}
.ws29{word-spacing:4.536000px;}
.ws1a{word-spacing:4.752000px;}
.ws20{word-spacing:6.588000px;}
.ws2f{word-spacing:6.912000px;}
.ws30{word-spacing:8.208000px;}
.wsa{word-spacing:10.224000px;}
.ws24{word-spacing:10.368000px;}
.ws9{word-spacing:11.088000px;}
.wsd{word-spacing:12.384000px;}
.ws2c{word-spacing:13.284000px;}
.ws11{word-spacing:13.536000px;}
.ws22{word-spacing:13.824000px;}
.ws12{word-spacing:14.688000px;}
.wsb{word-spacing:15.408000px;}
.wsc{word-spacing:16.704000px;}
.wsf{word-spacing:21.888000px;}
.ws17{word-spacing:24.048000px;}
.ws19{word-spacing:26.928000px;}
.ws1d{word-spacing:28.440000px;}
.ws18{word-spacing:29.232000px;}
.ws14{word-spacing:41.040000px;}
.ws13{word-spacing:44.496000px;}
.ws1c{word-spacing:46.512000px;}
.ws1e{word-spacing:94.320000px;}
.ws5{word-spacing:1167.472800px;}
._e{margin-left:-38.693400px;}
._5{margin-left:-29.322000px;}
._f{margin-left:-21.240000px;}
._4{margin-left:-15.120000px;}
._2{margin-left:-12.960000px;}
._c{margin-left:-11.657684px;}
._14{margin-left:-10.508400px;}
._0{margin-left:-8.640000px;}
._3{margin-left:-6.512400px;}
._6{margin-left:-5.400000px;}
._7{margin-left:-4.320000px;}
._b{margin-left:-3.240000px;}
._1{margin-left:-2.160000px;}
._9{margin-left:-1.008000px;}
._d{width:1.786320px;}
._13{width:4.153680px;}
._11{width:5.504400px;}
._10{width:6.642000px;}
._a{width:14.653800px;}
._8{width:16.044000px;}
._12{width:7057.693200px;}
.fc4{color:rgb(232,72,29);}
.fc2{color:rgb(240,64,39);}
.fc3{color:rgb(83,83,83);}
.fc1{color:rgb(69,69,69);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:66.000000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:125.087472px;}
.fs7{font-size:126.684000px;}
.fs3{font-size:144.000000px;}
.fs1{font-size:180.000000px;}
.fs2{font-size:204.000000px;}
.fs8{font-size:240.000000px;}
.fs0{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:1.110300px;}
.y1a{bottom:108.666150px;}
.y19{bottom:141.066150px;}
.y50{bottom:211.104000px;}
.y44{bottom:230.904000px;}
.y63{bottom:232.404000px;}
.y62{bottom:299.018700px;}
.y61{bottom:318.818700px;}
.y60{bottom:351.218700px;}
.y5f{bottom:383.618700px;}
.y5e{bottom:416.018700px;}
.y5d{bottom:448.418700px;}
.y5c{bottom:513.218700px;}
.y5b{bottom:545.618700px;}
.y5a{bottom:578.018700px;}
.y59{bottom:675.685500px;}
.y58{bottom:708.085500px;}
.y57{bottom:740.485500px;}
.y56{bottom:772.885500px;}
.y55{bottom:805.285650px;}
.y54{bottom:837.685500px;}
.y53{bottom:955.627350px;}
.y52{bottom:975.427350px;}
.y51{bottom:995.227350px;}
.y2d{bottom:1585.899000px;}
.y25{bottom:1618.475250px;}
.y2a{bottom:1641.541800px;}
.y3f{bottom:1643.204400px;}
.y3e{bottom:1663.004550px;}
.y27{bottom:1682.778750px;}
.y26{bottom:1708.008750px;}
.y2f{bottom:1716.168450px;}
.y24{bottom:1754.753226px;}
.y2c{bottom:1809.901800px;}
.y20{bottom:1811.892750px;}
.y21{bottom:1814.944282px;}
.y28{bottom:1822.927500px;}
.y23{bottom:1833.230665px;}
.y2b{bottom:1898.069493px;}
.y22{bottom:1903.769700px;}
.y29{bottom:1912.836600px;}
.y31{bottom:2080.497450px;}
.y1e{bottom:2151.915690px;}
.y1f{bottom:2178.450300px;}
.y1d{bottom:2178.450750px;}
.y30{bottom:2511.009300px;}
.y4f{bottom:2531.854500px;}
.y4e{bottom:2564.254350px;}
.y4d{bottom:2596.654350px;}
.y4c{bottom:2629.054350px;}
.y4b{bottom:2661.454500px;}
.y4a{bottom:2693.854500px;}
.y49{bottom:2726.254350px;}
.y32{bottom:2755.133550px;}
.y48{bottom:2791.054350px;}
.y47{bottom:2823.454500px;}
.y46{bottom:2855.854500px;}
.y45{bottom:2888.254350px;}
.y43{bottom:2904.348450px;}
.y18{bottom:2912.365650px;}
.y42{bottom:2924.148600px;}
.y17{bottom:2955.565650px;}
.y1c{bottom:2960.414100px;}
.y16{bottom:2998.765500px;}
.y15{bottom:3041.965650px;}
.y14{bottom:3085.165650px;}
.y13{bottom:3128.365650px;}
.y1b{bottom:3158.567100px;}
.y12{bottom:3171.565500px;}
.y11{bottom:3257.965650px;}
.y10{bottom:3301.165650px;}
.yf{bottom:3344.365650px;}
.ye{bottom:3387.565500px;}
.yd{bottom:3430.765500px;}
.yc{bottom:3517.165650px;}
.yb{bottom:3560.365650px;}
.ya{bottom:3603.565500px;}
.y9{bottom:3663.773400px;}
.y8{bottom:3750.173550px;}
.y7{bottom:3793.373250px;}
.y6{bottom:3836.573400px;}
.y5{bottom:3879.773400px;}
.y4{bottom:3922.973550px;}
.y3{bottom:3983.181150px;}
.y3d{bottom:4226.530950px;}
.y3c{bottom:4280.530950px;}
.y3b{bottom:4409.291400px;}
.y3a{bottom:4452.491400px;}
.y41{bottom:4477.164600px;}
.y39{bottom:4495.691550px;}
.y40{bottom:4549.164600px;}
.y38{bottom:4582.091700px;}
.y37{bottom:4625.291400px;}
.y2{bottom:4650.680400px;}
.y36{bottom:4668.491400px;}
.y35{bottom:4711.691550px;}
.y1{bottom:4780.280250px;}
.y34{bottom:4798.091700px;}
.y33{bottom:4841.291400px;}
.h6{height:69.300000px;}
.h5{height:113.400000px;}
.h8{height:131.341846px;}
.ha{height:133.018200px;}
.h4{height:151.200000px;}
.h7{height:189.000000px;}
.h3{height:214.200000px;}
.hb{height:252.000000px;}
.h2{height:453.600000px;}
.h9{height:1152.994500px;}
.h1{height:5051.250000px;}
.h0{height:5051.340000px;}
.w2{width:2310.235500px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x5{left:42.519750px;}
.x1{left:85.039350px;}
.x2e{left:424.133850px;}
.x20{left:1207.036650px;}
.x1f{left:1223.149500px;}
.x23{left:1276.130250px;}
.x22{left:1325.442150px;}
.x25{left:1374.871800px;}
.x12{left:1406.814750px;}
.x24{left:1423.795200px;}
.x13{left:1462.936402px;}
.x2{left:1465.122000px;}
.x26{left:1469.665350px;}
.x17{left:1502.289150px;}
.x27{left:1520.210850px;}
.x16{left:1568.668866px;}
.x6{left:1570.500900px;}
.x15{left:1594.076185px;}
.x7{left:1597.035960px;}
.x14{left:1611.545100px;}
.x18{left:1661.217150px;}
.x9{left:1669.666950px;}
.x8{left:1712.609400px;}
.x19{left:1800.089550px;}
.xa{left:1958.239500px;}
.x1a{left:1996.935750px;}
.x1c{left:2000.320800px;}
.xb{left:2083.837500px;}
.xc{left:2176.574100px;}
.x1b{left:2191.537200px;}
.x1d{left:2309.918613px;}
.x31{left:2313.283500px;}
.x2f{left:2403.779550px;}
.xd{left:2413.788000px;}
.x30{left:2488.818900px;}
.x21{left:2559.345150px;}
.x1e{left:2574.252750px;}
.xe{left:2597.354700px;}
.xf{left:2623.889760px;}
.x28{left:2886.236250px;}
.x2a{left:3012.110850px;}
.x10{left:3040.121400px;}
.x2b{left:3068.091000px;}
.x2c{left:3078.207600px;}
.x11{left:3094.495950px;}
.x2d{left:3117.877500px;}
.x3{left:3251.186250px;}
.x4{left:3257.314050px;}
.x29{left:3345.683700px;}
@media print{
.v1{vertical-align:-153.600533pt;}
.v2{vertical-align:-66.641067pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-2.933333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-99.456000pt;}
.ws1{word-spacing:-39.040000pt;}
.ws6{word-spacing:-33.920000pt;}
.ws2{word-spacing:-31.232000pt;}
.ws3{word-spacing:-28.797916pt;}
.ws4{word-spacing:-27.476352pt;}
.wse{word-spacing:-17.408000pt;}
.ws7{word-spacing:-15.194667pt;}
.ws16{word-spacing:-10.496000pt;}
.ws15{word-spacing:-9.728000pt;}
.ws2e{word-spacing:-8.736000pt;}
.ws10{word-spacing:-6.528000pt;}
.ws2d{word-spacing:-4.992000pt;}
.ws23{word-spacing:-3.936000pt;}
.ws1b{word-spacing:-2.048000pt;}
.ws21{word-spacing:-1.248000pt;}
.ws28{word-spacing:-1.056000pt;}
.ws26{word-spacing:-0.410667pt;}
.ws2b{word-spacing:-0.384000pt;}
.ws8{word-spacing:0.000000pt;}
.ws25{word-spacing:0.384000pt;}
.ws1f{word-spacing:1.632000pt;}
.ws27{word-spacing:2.933333pt;}
.ws2a{word-spacing:3.264000pt;}
.ws29{word-spacing:4.032000pt;}
.ws1a{word-spacing:4.224000pt;}
.ws20{word-spacing:5.856000pt;}
.ws2f{word-spacing:6.144000pt;}
.ws30{word-spacing:7.296000pt;}
.wsa{word-spacing:9.088000pt;}
.ws24{word-spacing:9.216000pt;}
.ws9{word-spacing:9.856000pt;}
.wsd{word-spacing:11.008000pt;}
.ws2c{word-spacing:11.808000pt;}
.ws11{word-spacing:12.032000pt;}
.ws22{word-spacing:12.288000pt;}
.ws12{word-spacing:13.056000pt;}
.wsb{word-spacing:13.696000pt;}
.wsc{word-spacing:14.848000pt;}
.wsf{word-spacing:19.456000pt;}
.ws17{word-spacing:21.376000pt;}
.ws19{word-spacing:23.936000pt;}
.ws1d{word-spacing:25.280000pt;}
.ws18{word-spacing:25.984000pt;}
.ws14{word-spacing:36.480000pt;}
.ws13{word-spacing:39.552000pt;}
.ws1c{word-spacing:41.344000pt;}
.ws1e{word-spacing:83.840000pt;}
.ws5{word-spacing:1037.753600pt;}
._e{margin-left:-34.394133pt;}
._5{margin-left:-26.064000pt;}
._f{margin-left:-18.880000pt;}
._4{margin-left:-13.440000pt;}
._2{margin-left:-11.520000pt;}
._c{margin-left:-10.362385pt;}
._14{margin-left:-9.340800pt;}
._0{margin-left:-7.680000pt;}
._3{margin-left:-5.788800pt;}
._6{margin-left:-4.800000pt;}
._7{margin-left:-3.840000pt;}
._b{margin-left:-2.880000pt;}
._1{margin-left:-1.920000pt;}
._9{margin-left:-0.896000pt;}
._d{width:1.587840pt;}
._13{width:3.692160pt;}
._11{width:4.892800pt;}
._10{width:5.904000pt;}
._a{width:13.025600pt;}
._8{width:14.261333pt;}
._12{width:6273.505067pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:111.188864pt;}
.fs7{font-size:112.608000pt;}
.fs3{font-size:128.000000pt;}
.fs1{font-size:160.000000pt;}
.fs2{font-size:181.333333pt;}
.fs8{font-size:213.333333pt;}
.fs0{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:0.986933pt;}
.y1a{bottom:96.592133pt;}
.y19{bottom:125.392133pt;}
.y50{bottom:187.648000pt;}
.y44{bottom:205.248000pt;}
.y63{bottom:206.581333pt;}
.y62{bottom:265.794400pt;}
.y61{bottom:283.394400pt;}
.y60{bottom:312.194400pt;}
.y5f{bottom:340.994400pt;}
.y5e{bottom:369.794400pt;}
.y5d{bottom:398.594400pt;}
.y5c{bottom:456.194400pt;}
.y5b{bottom:484.994400pt;}
.y5a{bottom:513.794400pt;}
.y59{bottom:600.609333pt;}
.y58{bottom:629.409333pt;}
.y57{bottom:658.209333pt;}
.y56{bottom:687.009333pt;}
.y55{bottom:715.809467pt;}
.y54{bottom:744.609333pt;}
.y53{bottom:849.446533pt;}
.y52{bottom:867.046533pt;}
.y51{bottom:884.646533pt;}
.y2d{bottom:1409.688000pt;}
.y25{bottom:1438.644667pt;}
.y2a{bottom:1459.148267pt;}
.y3f{bottom:1460.626133pt;}
.y3e{bottom:1478.226267pt;}
.y27{bottom:1495.803333pt;}
.y26{bottom:1518.230000pt;}
.y2f{bottom:1525.483067pt;}
.y24{bottom:1559.780645pt;}
.y2c{bottom:1608.801600pt;}
.y20{bottom:1610.571333pt;}
.y21{bottom:1613.283806pt;}
.y28{bottom:1620.380000pt;}
.y23{bottom:1629.538369pt;}
.y2b{bottom:1687.172882pt;}
.y22{bottom:1692.239733pt;}
.y29{bottom:1700.299200pt;}
.y31{bottom:1849.331067pt;}
.y1e{bottom:1912.813947pt;}
.y1f{bottom:1936.400267pt;}
.y1d{bottom:1936.400667pt;}
.y30{bottom:2232.008267pt;}
.y4f{bottom:2250.537333pt;}
.y4e{bottom:2279.337200pt;}
.y4d{bottom:2308.137200pt;}
.y4c{bottom:2336.937200pt;}
.y4b{bottom:2365.737333pt;}
.y4a{bottom:2394.537333pt;}
.y49{bottom:2423.337200pt;}
.y32{bottom:2449.007600pt;}
.y48{bottom:2480.937200pt;}
.y47{bottom:2509.737333pt;}
.y46{bottom:2538.537333pt;}
.y45{bottom:2567.337200pt;}
.y43{bottom:2581.643067pt;}
.y18{bottom:2588.769467pt;}
.y42{bottom:2599.243200pt;}
.y17{bottom:2627.169467pt;}
.y1c{bottom:2631.479200pt;}
.y16{bottom:2665.569333pt;}
.y15{bottom:2703.969467pt;}
.y14{bottom:2742.369467pt;}
.y13{bottom:2780.769467pt;}
.y1b{bottom:2807.615200pt;}
.y12{bottom:2819.169333pt;}
.y11{bottom:2895.969467pt;}
.y10{bottom:2934.369467pt;}
.yf{bottom:2972.769467pt;}
.ye{bottom:3011.169333pt;}
.yd{bottom:3049.569333pt;}
.yc{bottom:3126.369467pt;}
.yb{bottom:3164.769467pt;}
.ya{bottom:3203.169333pt;}
.y9{bottom:3256.687467pt;}
.y8{bottom:3333.487600pt;}
.y7{bottom:3371.887333pt;}
.y6{bottom:3410.287467pt;}
.y5{bottom:3448.687467pt;}
.y4{bottom:3487.087600pt;}
.y3{bottom:3540.605467pt;}
.y3d{bottom:3756.916400pt;}
.y3c{bottom:3804.916400pt;}
.y3b{bottom:3919.370133pt;}
.y3a{bottom:3957.770133pt;}
.y41{bottom:3979.701867pt;}
.y39{bottom:3996.170267pt;}
.y40{bottom:4043.701867pt;}
.y38{bottom:4072.970400pt;}
.y37{bottom:4111.370133pt;}
.y2{bottom:4133.938133pt;}
.y36{bottom:4149.770133pt;}
.y35{bottom:4188.170267pt;}
.y1{bottom:4249.138000pt;}
.y34{bottom:4264.970400pt;}
.y33{bottom:4303.370133pt;}
.h6{height:61.600000pt;}
.h5{height:100.800000pt;}
.h8{height:116.748308pt;}
.ha{height:118.238400pt;}
.h4{height:134.400000pt;}
.h7{height:168.000000pt;}
.h3{height:190.400000pt;}
.hb{height:224.000000pt;}
.h2{height:403.200000pt;}
.h9{height:1024.884000pt;}
.h1{height:4490.000000pt;}
.h0{height:4490.080000pt;}
.w2{width:2053.542667pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x5{left:37.795333pt;}
.x1{left:75.590533pt;}
.x2e{left:377.007867pt;}
.x20{left:1072.921467pt;}
.x1f{left:1087.244000pt;}
.x23{left:1134.338000pt;}
.x22{left:1178.170800pt;}
.x25{left:1222.108267pt;}
.x12{left:1250.502000pt;}
.x24{left:1265.595733pt;}
.x13{left:1300.387913pt;}
.x2{left:1302.330667pt;}
.x26{left:1306.369200pt;}
.x17{left:1335.368133pt;}
.x27{left:1351.298533pt;}
.x16{left:1394.372325pt;}
.x6{left:1396.000800pt;}
.x15{left:1416.956609pt;}
.x7{left:1419.587520pt;}
.x14{left:1432.484533pt;}
.x18{left:1476.637467pt;}
.x9{left:1484.148400pt;}
.x8{left:1522.319467pt;}
.x19{left:1600.079600pt;}
.xa{left:1740.657333pt;}
.x1a{left:1775.054000pt;}
.x1c{left:1778.062933pt;}
.xb{left:1852.300000pt;}
.xc{left:1934.732533pt;}
.x1b{left:1948.033067pt;}
.x1d{left:2053.260989pt;}
.x31{left:2056.252000pt;}
.x2f{left:2136.692933pt;}
.xd{left:2145.589333pt;}
.x30{left:2212.283467pt;}
.x21{left:2274.973467pt;}
.x1e{left:2288.224667pt;}
.xe{left:2308.759733pt;}
.xf{left:2332.346453pt;}
.x28{left:2565.543333pt;}
.x2a{left:2677.431867pt;}
.x10{left:2702.330133pt;}
.x2b{left:2727.192000pt;}
.x2c{left:2736.184533pt;}
.x11{left:2750.663067pt;}
.x2d{left:2771.446667pt;}
.x3{left:2889.943333pt;}
.x4{left:2895.390267pt;}
.x29{left:2973.941067pt;}
}




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