
    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_7cb972d9ef7a8e7d88cf7b2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_dd49cec0aba846a1fe7a4ffd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_daedbff985d020a51c6753c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_6917429e7eafe169fe288eed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_bb2a1a83ab534ebffcfc1726.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.793945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.285300px;}
.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;}
}
.ws6{word-spacing:-38.657700px;}
.ws5{word-spacing:-38.647800px;}
.ws3{word-spacing:-38.374200px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.wsc{word-spacing:-36.717300px;}
.ws32{word-spacing:-36.432000px;}
.ws8{word-spacing:-33.547800px;}
.ws56{word-spacing:-21.369600px;}
.ws11{word-spacing:-21.271500px;}
.ws49{word-spacing:-21.267900px;}
.ws23{word-spacing:-21.237000px;}
.ws2f{word-spacing:-21.229200px;}
.ws4f{word-spacing:-21.226500px;}
.ws2d{word-spacing:-21.225600px;}
.ws1c{word-spacing:-21.224700px;}
.ws40{word-spacing:-21.223500px;}
.ws52{word-spacing:-21.221100px;}
.ws12{word-spacing:-21.216600px;}
.ws33{word-spacing:-21.216000px;}
.ws25{word-spacing:-21.212400px;}
.ws38{word-spacing:-21.211200px;}
.ws2a{word-spacing:-21.207600px;}
.ws42{word-spacing:-21.161400px;}
.ws28{word-spacing:-21.160800px;}
.ws46{word-spacing:-21.160500px;}
.wse{word-spacing:-21.154500px;}
.ws3a{word-spacing:-21.150900px;}
.ws2b{word-spacing:-21.086100px;}
.ws22{word-spacing:-21.079200px;}
.ws35{word-spacing:-20.944800px;}
.ws19{word-spacing:-20.943600px;}
.ws4b{word-spacing:-20.943000px;}
.ws14{word-spacing:-20.942100px;}
.ws45{word-spacing:-20.941200px;}
.ws29{word-spacing:-20.940000px;}
.ws21{word-spacing:-20.939400px;}
.ws4a{word-spacing:-20.937000px;}
.ws17{word-spacing:-20.936400px;}
.ws37{word-spacing:-20.935800px;}
.ws43{word-spacing:-20.935500px;}
.ws3e{word-spacing:-20.934900px;}
.ws41{word-spacing:-20.933700px;}
.ws36{word-spacing:-20.932200px;}
.ws3c{word-spacing:-20.931300px;}
.ws3b{word-spacing:-20.930700px;}
.ws20{word-spacing:-20.929500px;}
.wsa{word-spacing:-20.926200px;}
.ws2c{word-spacing:-20.910000px;}
.ws55{word-spacing:-20.868300px;}
.ws31{word-spacing:-20.863800px;}
.ws30{word-spacing:-20.862000px;}
.ws48{word-spacing:-20.853900px;}
.wsb{word-spacing:-20.789400px;}
.ws39{word-spacing:-20.730300px;}
.ws51{word-spacing:-20.727900px;}
.ws13{word-spacing:-20.727600px;}
.ws26{word-spacing:-20.727000px;}
.ws1f{word-spacing:-20.724300px;}
.ws44{word-spacing:-20.724000px;}
.ws53{word-spacing:-20.715300px;}
.ws1d{word-spacing:-20.712600px;}
.ws18{word-spacing:-20.710800px;}
.ws16{word-spacing:-20.700300px;}
.ws1a{word-spacing:-20.697300px;}
.wsf{word-spacing:-20.582400px;}
.ws10{word-spacing:-20.571000px;}
.ws3f{word-spacing:-20.554500px;}
.ws2e{word-spacing:-20.552400px;}
.ws1b{word-spacing:-20.515200px;}
.ws3d{word-spacing:-20.509200px;}
.ws9{word-spacing:-20.505900px;}
.ws47{word-spacing:-20.505600px;}
.ws54{word-spacing:-20.502900px;}
.ws4e{word-spacing:-20.495700px;}
.ws59{word-spacing:-20.448000px;}
.ws24{word-spacing:-20.435400px;}
.ws4c{word-spacing:-20.292900px;}
.ws34{word-spacing:-20.228400px;}
.wsd{word-spacing:-20.215800px;}
.ws50{word-spacing:-20.128500px;}
.ws58{word-spacing:-20.015100px;}
.ws15{word-spacing:-20.004300px;}
.ws1e{word-spacing:-19.800000px;}
.ws27{word-spacing:-19.779300px;}
.ws4d{word-spacing:-19.775700px;}
.ws7{word-spacing:-18.472500px;}
.ws57{word-spacing:70.056000px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._6{width:15.391800px;}
._5{width:16.971900px;}
._4{width:18.775800px;}
._1{width:36.000000px;}
._7{width:161.424000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2a{bottom:118.875000px;}
.y4d{bottom:138.855000px;}
.y29{bottom:140.836500px;}
.y4c{bottom:160.815000px;}
.y28{bottom:183.675000px;}
.y4b{bottom:203.836500px;}
.y27{bottom:205.636500px;}
.y4a{bottom:225.615000px;}
.y26{bottom:227.596500px;}
.y49{bottom:247.575000px;}
.y48{bottom:269.715000px;}
.y25{bottom:270.615000px;}
.y24{bottom:292.575000px;}
.y47{bottom:312.555000px;}
.y23{bottom:314.536500px;}
.y46{bottom:334.515000px;}
.y22{bottom:336.496500px;}
.y45{bottom:356.475000px;}
.y21{bottom:358.455000px;}
.y44{bottom:399.496500px;}
.y20{bottom:401.475000px;}
.y43{bottom:421.455000px;}
.y1f{bottom:423.436500px;}
.y42{bottom:443.415000px;}
.y1e{bottom:445.396500px;}
.y41{bottom:465.375000px;}
.y5a{bottom:484.455000px;}
.y1d{bottom:488.415000px;}
.y59{bottom:506.596500px;}
.y40{bottom:508.396500px;}
.y1c{bottom:510.375000px;}
.y58{bottom:528.375000px;}
.y3f{bottom:530.355000px;}
.y1b{bottom:532.336500px;}
.y57{bottom:550.515000px;}
.y3e{bottom:552.315000px;}
.y1a{bottom:554.296500px;}
.y56{bottom:572.475000px;}
.y3d{bottom:574.275000px;}
.y19{bottom:576.255000px;}
.y55{bottom:594.436500px;}
.y54{bottom:616.396500px;}
.y3c{bottom:617.295000px;}
.y18{bottom:619.275000px;}
.y53{bottom:638.355000px;}
.y3b{bottom:639.255000px;}
.y17{bottom:641.236500px;}
.y52{bottom:660.315000px;}
.y3a{bottom:661.215000px;}
.y16{bottom:663.195000px;}
.y51{bottom:682.275000px;}
.y39{bottom:683.175000px;}
.y15{bottom:685.155000px;}
.y50{bottom:704.236500px;}
.y14{bottom:707.115000px;}
.y38{bottom:726.195000px;}
.y37{bottom:748.155000px;}
.y13{bottom:750.136500px;}
.y36{bottom:770.115000px;}
.y12{bottom:772.096500px;}
.y35{bottom:792.075000px;}
.y34{bottom:814.215000px;}
.y11{bottom:815.115000px;}
.y4f{bottom:836.175000px;}
.y10{bottom:837.075000px;}
.y33{bottom:857.055000px;}
.yf{bottom:859.036500px;}
.y32{bottom:879.015000px;}
.ye{bottom:880.995000px;}
.y31{bottom:900.975000px;}
.yd{bottom:902.955000px;}
.y4e{bottom:922.036500px;}
.yc{bottom:924.915000px;}
.y30{bottom:943.995000px;}
.y2f{bottom:965.955000px;}
.yb{bottom:967.936500px;}
.y2e{bottom:987.915000px;}
.y2d{bottom:1009.875000px;}
.ya{bottom:1010.955000px;}
.y2c{bottom:1032.015000px;}
.y9{bottom:1053.975000px;}
.y2b{bottom:1074.855000px;}
.y8{bottom:1096.815000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:47.588379px;}
.h2{height:48.796875px;}
.h5{height:49.218750px;}
.h6{height:51.679688px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:204.660000px;}
.x5{left:402.120000px;}
.x3{left:461.625000px;}
.x6{left:597.238500px;}
.x7{left:710.820000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.253600pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws3{word-spacing:-34.110400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.wsc{word-spacing:-32.637600pt;}
.ws32{word-spacing:-32.384000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws56{word-spacing:-18.995200pt;}
.ws11{word-spacing:-18.908000pt;}
.ws49{word-spacing:-18.904800pt;}
.ws23{word-spacing:-18.877333pt;}
.ws2f{word-spacing:-18.870400pt;}
.ws4f{word-spacing:-18.868000pt;}
.ws2d{word-spacing:-18.867200pt;}
.ws1c{word-spacing:-18.866400pt;}
.ws40{word-spacing:-18.865333pt;}
.ws52{word-spacing:-18.863200pt;}
.ws12{word-spacing:-18.859200pt;}
.ws33{word-spacing:-18.858667pt;}
.ws25{word-spacing:-18.855467pt;}
.ws38{word-spacing:-18.854400pt;}
.ws2a{word-spacing:-18.851200pt;}
.ws42{word-spacing:-18.810133pt;}
.ws28{word-spacing:-18.809600pt;}
.ws46{word-spacing:-18.809333pt;}
.wse{word-spacing:-18.804000pt;}
.ws3a{word-spacing:-18.800800pt;}
.ws2b{word-spacing:-18.743200pt;}
.ws22{word-spacing:-18.737067pt;}
.ws35{word-spacing:-18.617600pt;}
.ws19{word-spacing:-18.616533pt;}
.ws4b{word-spacing:-18.616000pt;}
.ws14{word-spacing:-18.615200pt;}
.ws45{word-spacing:-18.614400pt;}
.ws29{word-spacing:-18.613333pt;}
.ws21{word-spacing:-18.612800pt;}
.ws4a{word-spacing:-18.610667pt;}
.ws17{word-spacing:-18.610133pt;}
.ws37{word-spacing:-18.609600pt;}
.ws43{word-spacing:-18.609333pt;}
.ws3e{word-spacing:-18.608800pt;}
.ws41{word-spacing:-18.607733pt;}
.ws36{word-spacing:-18.606400pt;}
.ws3c{word-spacing:-18.605600pt;}
.ws3b{word-spacing:-18.605067pt;}
.ws20{word-spacing:-18.604000pt;}
.wsa{word-spacing:-18.601067pt;}
.ws2c{word-spacing:-18.586667pt;}
.ws55{word-spacing:-18.549600pt;}
.ws31{word-spacing:-18.545600pt;}
.ws30{word-spacing:-18.544000pt;}
.ws48{word-spacing:-18.536800pt;}
.wsb{word-spacing:-18.479467pt;}
.ws39{word-spacing:-18.426933pt;}
.ws51{word-spacing:-18.424800pt;}
.ws13{word-spacing:-18.424533pt;}
.ws26{word-spacing:-18.424000pt;}
.ws1f{word-spacing:-18.421600pt;}
.ws44{word-spacing:-18.421333pt;}
.ws53{word-spacing:-18.413600pt;}
.ws1d{word-spacing:-18.411200pt;}
.ws18{word-spacing:-18.409600pt;}
.ws16{word-spacing:-18.400267pt;}
.ws1a{word-spacing:-18.397600pt;}
.wsf{word-spacing:-18.295467pt;}
.ws10{word-spacing:-18.285333pt;}
.ws3f{word-spacing:-18.270667pt;}
.ws2e{word-spacing:-18.268800pt;}
.ws1b{word-spacing:-18.235733pt;}
.ws3d{word-spacing:-18.230400pt;}
.ws9{word-spacing:-18.227467pt;}
.ws47{word-spacing:-18.227200pt;}
.ws54{word-spacing:-18.224800pt;}
.ws4e{word-spacing:-18.218400pt;}
.ws59{word-spacing:-18.176000pt;}
.ws24{word-spacing:-18.164800pt;}
.ws4c{word-spacing:-18.038133pt;}
.ws34{word-spacing:-17.980800pt;}
.wsd{word-spacing:-17.969600pt;}
.ws50{word-spacing:-17.892000pt;}
.ws58{word-spacing:-17.791200pt;}
.ws15{word-spacing:-17.781600pt;}
.ws1e{word-spacing:-17.600000pt;}
.ws27{word-spacing:-17.581600pt;}
.ws4d{word-spacing:-17.578400pt;}
.ws7{word-spacing:-16.420000pt;}
.ws57{word-spacing:62.272000pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._6{width:13.681600pt;}
._5{width:15.086133pt;}
._4{width:16.689600pt;}
._1{width:32.000000pt;}
._7{width:143.488000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2a{bottom:105.666667pt;}
.y4d{bottom:123.426667pt;}
.y29{bottom:125.188000pt;}
.y4c{bottom:142.946667pt;}
.y28{bottom:163.266667pt;}
.y4b{bottom:181.188000pt;}
.y27{bottom:182.788000pt;}
.y4a{bottom:200.546667pt;}
.y26{bottom:202.308000pt;}
.y49{bottom:220.066667pt;}
.y48{bottom:239.746667pt;}
.y25{bottom:240.546667pt;}
.y24{bottom:260.066667pt;}
.y47{bottom:277.826667pt;}
.y23{bottom:279.588000pt;}
.y46{bottom:297.346667pt;}
.y22{bottom:299.108000pt;}
.y45{bottom:316.866667pt;}
.y21{bottom:318.626667pt;}
.y44{bottom:355.108000pt;}
.y20{bottom:356.866667pt;}
.y43{bottom:374.626667pt;}
.y1f{bottom:376.388000pt;}
.y42{bottom:394.146667pt;}
.y1e{bottom:395.908000pt;}
.y41{bottom:413.666667pt;}
.y5a{bottom:430.626667pt;}
.y1d{bottom:434.146667pt;}
.y59{bottom:450.308000pt;}
.y40{bottom:451.908000pt;}
.y1c{bottom:453.666667pt;}
.y58{bottom:469.666667pt;}
.y3f{bottom:471.426667pt;}
.y1b{bottom:473.188000pt;}
.y57{bottom:489.346667pt;}
.y3e{bottom:490.946667pt;}
.y1a{bottom:492.708000pt;}
.y56{bottom:508.866667pt;}
.y3d{bottom:510.466667pt;}
.y19{bottom:512.226667pt;}
.y55{bottom:528.388000pt;}
.y54{bottom:547.908000pt;}
.y3c{bottom:548.706667pt;}
.y18{bottom:550.466667pt;}
.y53{bottom:567.426667pt;}
.y3b{bottom:568.226667pt;}
.y17{bottom:569.988000pt;}
.y52{bottom:586.946667pt;}
.y3a{bottom:587.746667pt;}
.y16{bottom:589.506667pt;}
.y51{bottom:606.466667pt;}
.y39{bottom:607.266667pt;}
.y15{bottom:609.026667pt;}
.y50{bottom:625.988000pt;}
.y14{bottom:628.546667pt;}
.y38{bottom:645.506667pt;}
.y37{bottom:665.026667pt;}
.y13{bottom:666.788000pt;}
.y36{bottom:684.546667pt;}
.y12{bottom:686.308000pt;}
.y35{bottom:704.066667pt;}
.y34{bottom:723.746667pt;}
.y11{bottom:724.546667pt;}
.y4f{bottom:743.266667pt;}
.y10{bottom:744.066667pt;}
.y33{bottom:761.826667pt;}
.yf{bottom:763.588000pt;}
.y32{bottom:781.346667pt;}
.ye{bottom:783.106667pt;}
.y31{bottom:800.866667pt;}
.yd{bottom:802.626667pt;}
.y4e{bottom:819.588000pt;}
.yc{bottom:822.146667pt;}
.y30{bottom:839.106667pt;}
.y2f{bottom:858.626667pt;}
.yb{bottom:860.388000pt;}
.y2e{bottom:878.146667pt;}
.y2d{bottom:897.666667pt;}
.ya{bottom:898.626667pt;}
.y2c{bottom:917.346667pt;}
.y9{bottom:936.866667pt;}
.y2b{bottom:955.426667pt;}
.y8{bottom:974.946667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:42.300781pt;}
.h2{height:43.375000pt;}
.h5{height:43.750000pt;}
.h6{height:45.937500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:181.920000pt;}
.x5{left:357.440000pt;}
.x3{left:410.333333pt;}
.x6{left:530.878667pt;}
.x7{left:631.840000pt;}
.x2{left:649.920000pt;}
}




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