
    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_bac92ab820066b67537e60dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120000;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_e6e9e3a6c9014560413923c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.136000;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_3d05d01d6b41bf1b4746dabc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_51a199ff806b9ac191c66cc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-1.386000px;}
.ls13{letter-spacing:-1.254000px;}
.ls12{letter-spacing:-1.188000px;}
.ls23{letter-spacing:-0.990000px;}
.ls17{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.768000px;}
.ls16{letter-spacing:-0.726000px;}
.ls15{letter-spacing:-0.660000px;}
.ls19{letter-spacing:-0.594000px;}
.ls1d{letter-spacing:-0.528000px;}
.ls1c{letter-spacing:-0.462000px;}
.ls14{letter-spacing:-0.396000px;}
.ls1b{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.264000px;}
.lsc{letter-spacing:-0.198000px;}
.ls18{letter-spacing:-0.132000px;}
.lsb{letter-spacing:-0.066000px;}
.ls1e{letter-spacing:-0.048000px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.132000px;}
.ls3{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.396000px;}
.ls4{letter-spacing:0.462000px;}
.ls1{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.594000px;}
.ls5{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.858000px;}
.ls0{letter-spacing:0.924000px;}
.ls1f{letter-spacing:1.254000px;}
.ls22{letter-spacing:1.320000px;}
.ls11{letter-spacing:1.650000px;}
.ls8{letter-spacing:24.000000px;}
.lse{letter-spacing:24.024000px;}
.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;}
}
.ws1a{word-spacing:-18.150000px;}
.ws2b{word-spacing:-17.754000px;}
.ws2e{word-spacing:-17.028000px;}
.ws31{word-spacing:-16.830000px;}
.ws2d{word-spacing:-16.632000px;}
.ws2c{word-spacing:-16.566000px;}
.ws14{word-spacing:-16.500000px;}
.ws18{word-spacing:-16.434000px;}
.ws1e{word-spacing:-16.368000px;}
.ws0{word-spacing:-16.302000px;}
.ws1c{word-spacing:-16.170000px;}
.ws30{word-spacing:-16.104000px;}
.ws2f{word-spacing:-16.038000px;}
.ws1d{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.708000px;}
.ws16{word-spacing:-15.246000px;}
.ws13{word-spacing:-7.872000px;}
.ws1b{word-spacing:-0.990000px;}
.ws29{word-spacing:-0.858000px;}
.wsd{word-spacing:-0.792000px;}
.ws1f{word-spacing:-0.726000px;}
.wsf{word-spacing:-0.660000px;}
.ws5{word-spacing:-0.594000px;}
.ws26{word-spacing:-0.528000px;}
.ws22{word-spacing:-0.462000px;}
.ws28{word-spacing:-0.396000px;}
.ws32{word-spacing:-0.330000px;}
.ws10{word-spacing:-0.264000px;}
.ws27{word-spacing:-0.198000px;}
.ws19{word-spacing:-0.132000px;}
.ws6{word-spacing:0.000000px;}
.ws11{word-spacing:0.066000px;}
.ws12{word-spacing:0.132000px;}
.ws2a{word-spacing:0.264000px;}
.ws4{word-spacing:0.330000px;}
.ws21{word-spacing:0.396000px;}
.ws15{word-spacing:0.462000px;}
.ws33{word-spacing:0.528000px;}
.ws24{word-spacing:0.594000px;}
.ws1{word-spacing:0.660000px;}
.ws7{word-spacing:0.726000px;}
.ws9{word-spacing:0.990000px;}
.wsb{word-spacing:1.056000px;}
.ws2{word-spacing:1.122000px;}
.ws23{word-spacing:1.188000px;}
.wse{word-spacing:1.254000px;}
.wsc{word-spacing:1.320000px;}
.ws3{word-spacing:1.386000px;}
.ws8{word-spacing:1.452000px;}
.wsa{word-spacing:1.584000px;}
.ws25{word-spacing:4.422000px;}
.ws20{word-spacing:35.904000px;}
._4{margin-left:-7.920000px;}
._7{margin-left:-6.072000px;}
._1{margin-left:-4.884000px;}
._2{margin-left:-3.564000px;}
._0{margin-left:-1.518000px;}
._3{width:1.188000px;}
._6{width:22.818000px;}
._5{width:47.952000px;}
._9{width:1001.100000px;}
._8{width:1162.560000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:55.198500px;}
.y1e{bottom:55.515000px;}
.y4c{bottom:72.441000px;}
.y1d{bottom:72.757500px;}
.y4b{bottom:89.683500px;}
.y1c{bottom:90.000000px;}
.y4a{bottom:106.926000px;}
.y1b{bottom:107.242500px;}
.y49{bottom:124.168500px;}
.y1a{bottom:124.485000px;}
.y48{bottom:141.411000px;}
.y19{bottom:141.727500px;}
.y47{bottom:158.653500px;}
.y18{bottom:159.133500px;}
.y46{bottom:175.896000px;}
.y45{bottom:193.138500px;}
.y17{bottom:193.635000px;}
.y44{bottom:210.381000px;}
.y16{bottom:210.877500px;}
.y43{bottom:227.623500px;}
.y15{bottom:228.120000px;}
.y42{bottom:244.866000px;}
.y14{bottom:245.362500px;}
.y41{bottom:262.108500px;}
.y13{bottom:262.605000px;}
.y40{bottom:279.351000px;}
.y12{bottom:279.847500px;}
.y11{bottom:297.090000px;}
.y3f{bottom:313.852500px;}
.y10{bottom:314.332500px;}
.y50{bottom:331.078500px;}
.y3e{bottom:331.095000px;}
.yf{bottom:331.575000px;}
.y4f{bottom:348.321000px;}
.y3d{bottom:348.337500px;}
.ye{bottom:348.817500px;}
.y4e{bottom:365.563500px;}
.y3c{bottom:365.580000px;}
.yd{bottom:366.060000px;}
.y3b{bottom:382.822500px;}
.yc{bottom:383.302500px;}
.y3a{bottom:400.065000px;}
.yb{bottom:400.545000px;}
.y39{bottom:417.307500px;}
.ya{bottom:417.787500px;}
.y38{bottom:434.550000px;}
.y9{bottom:435.030000px;}
.y37{bottom:451.792500px;}
.y8{bottom:452.272500px;}
.y36{bottom:469.035000px;}
.y7{bottom:469.515000px;}
.y35{bottom:486.277500px;}
.y6{bottom:486.757500px;}
.y34{bottom:503.520000px;}
.y5{bottom:504.000000px;}
.y33{bottom:520.762500px;}
.y4{bottom:521.242500px;}
.y32{bottom:538.005000px;}
.y3{bottom:538.485000px;}
.y31{bottom:555.247500px;}
.y2{bottom:555.727500px;}
.y30{bottom:572.490000px;}
.y1{bottom:572.970000px;}
.y2f{bottom:589.732500px;}
.y2e{bottom:606.975000px;}
.y2d{bottom:624.217500px;}
.y2c{bottom:641.460000px;}
.y2b{bottom:658.702500px;}
.y2a{bottom:675.945000px;}
.y29{bottom:693.187500px;}
.y28{bottom:710.430000px;}
.y27{bottom:727.672500px;}
.y26{bottom:744.915000px;}
.y25{bottom:762.157500px;}
.y24{bottom:779.400000px;}
.y23{bottom:796.642500px;}
.y20{bottom:810.105000px;}
.y22{bottom:813.885000px;}
.y1f{bottom:861.105000px;}
.y21{bottom:924.000000px;}
.h2{height:41.568000px;}
.h4{height:47.085938px;}
.h1{height:56.166000px;}
.h3{height:81.696000px;}
.h0{height:892.500000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x4{left:4.500000px;}
.x1{left:74.700000px;}
.x6{left:75.925500px;}
.x2{left:97.206000px;}
.x5{left:98.415000px;}
.x9{left:173.518500px;}
.x8{left:333.123000px;}
.x7{left:420.606000px;}
.x3{left:430.275000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-1.232000pt;}
.ls13{letter-spacing:-1.114667pt;}
.ls12{letter-spacing:-1.056000pt;}
.ls23{letter-spacing:-0.880000pt;}
.ls17{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.682667pt;}
.ls16{letter-spacing:-0.645333pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls19{letter-spacing:-0.528000pt;}
.ls1d{letter-spacing:-0.469333pt;}
.ls1c{letter-spacing:-0.410667pt;}
.ls14{letter-spacing:-0.352000pt;}
.ls1b{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.234667pt;}
.lsc{letter-spacing:-0.176000pt;}
.ls18{letter-spacing:-0.117333pt;}
.lsb{letter-spacing:-0.058667pt;}
.ls1e{letter-spacing:-0.042667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.117333pt;}
.ls3{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.352000pt;}
.ls4{letter-spacing:0.410667pt;}
.ls1{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.528000pt;}
.ls5{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.762667pt;}
.ls0{letter-spacing:0.821333pt;}
.ls1f{letter-spacing:1.114667pt;}
.ls22{letter-spacing:1.173333pt;}
.ls11{letter-spacing:1.466667pt;}
.ls8{letter-spacing:21.333333pt;}
.lse{letter-spacing:21.354667pt;}
.ws1a{word-spacing:-16.133333pt;}
.ws2b{word-spacing:-15.781333pt;}
.ws2e{word-spacing:-15.136000pt;}
.ws31{word-spacing:-14.960000pt;}
.ws2d{word-spacing:-14.784000pt;}
.ws2c{word-spacing:-14.725333pt;}
.ws14{word-spacing:-14.666667pt;}
.ws18{word-spacing:-14.608000pt;}
.ws1e{word-spacing:-14.549333pt;}
.ws0{word-spacing:-14.490667pt;}
.ws1c{word-spacing:-14.373333pt;}
.ws30{word-spacing:-14.314667pt;}
.ws2f{word-spacing:-14.256000pt;}
.ws1d{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.962667pt;}
.ws16{word-spacing:-13.552000pt;}
.ws13{word-spacing:-6.997333pt;}
.ws1b{word-spacing:-0.880000pt;}
.ws29{word-spacing:-0.762667pt;}
.wsd{word-spacing:-0.704000pt;}
.ws1f{word-spacing:-0.645333pt;}
.wsf{word-spacing:-0.586667pt;}
.ws5{word-spacing:-0.528000pt;}
.ws26{word-spacing:-0.469333pt;}
.ws22{word-spacing:-0.410667pt;}
.ws28{word-spacing:-0.352000pt;}
.ws32{word-spacing:-0.293333pt;}
.ws10{word-spacing:-0.234667pt;}
.ws27{word-spacing:-0.176000pt;}
.ws19{word-spacing:-0.117333pt;}
.ws6{word-spacing:0.000000pt;}
.ws11{word-spacing:0.058667pt;}
.ws12{word-spacing:0.117333pt;}
.ws2a{word-spacing:0.234667pt;}
.ws4{word-spacing:0.293333pt;}
.ws21{word-spacing:0.352000pt;}
.ws15{word-spacing:0.410667pt;}
.ws33{word-spacing:0.469333pt;}
.ws24{word-spacing:0.528000pt;}
.ws1{word-spacing:0.586667pt;}
.ws7{word-spacing:0.645333pt;}
.ws9{word-spacing:0.880000pt;}
.wsb{word-spacing:0.938667pt;}
.ws2{word-spacing:0.997333pt;}
.ws23{word-spacing:1.056000pt;}
.wse{word-spacing:1.114667pt;}
.wsc{word-spacing:1.173333pt;}
.ws3{word-spacing:1.232000pt;}
.ws8{word-spacing:1.290667pt;}
.wsa{word-spacing:1.408000pt;}
.ws25{word-spacing:3.930667pt;}
.ws20{word-spacing:31.914667pt;}
._4{margin-left:-7.040000pt;}
._7{margin-left:-5.397333pt;}
._1{margin-left:-4.341333pt;}
._2{margin-left:-3.168000pt;}
._0{margin-left:-1.349333pt;}
._3{width:1.056000pt;}
._6{width:20.282667pt;}
._5{width:42.624000pt;}
._9{width:889.866667pt;}
._8{width:1033.386667pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:49.065333pt;}
.y1e{bottom:49.346667pt;}
.y4c{bottom:64.392000pt;}
.y1d{bottom:64.673333pt;}
.y4b{bottom:79.718667pt;}
.y1c{bottom:80.000000pt;}
.y4a{bottom:95.045333pt;}
.y1b{bottom:95.326667pt;}
.y49{bottom:110.372000pt;}
.y1a{bottom:110.653333pt;}
.y48{bottom:125.698667pt;}
.y19{bottom:125.980000pt;}
.y47{bottom:141.025333pt;}
.y18{bottom:141.452000pt;}
.y46{bottom:156.352000pt;}
.y45{bottom:171.678667pt;}
.y17{bottom:172.120000pt;}
.y44{bottom:187.005333pt;}
.y16{bottom:187.446667pt;}
.y43{bottom:202.332000pt;}
.y15{bottom:202.773333pt;}
.y42{bottom:217.658667pt;}
.y14{bottom:218.100000pt;}
.y41{bottom:232.985333pt;}
.y13{bottom:233.426667pt;}
.y40{bottom:248.312000pt;}
.y12{bottom:248.753333pt;}
.y11{bottom:264.080000pt;}
.y3f{bottom:278.980000pt;}
.y10{bottom:279.406667pt;}
.y50{bottom:294.292000pt;}
.y3e{bottom:294.306667pt;}
.yf{bottom:294.733333pt;}
.y4f{bottom:309.618667pt;}
.y3d{bottom:309.633333pt;}
.ye{bottom:310.060000pt;}
.y4e{bottom:324.945333pt;}
.y3c{bottom:324.960000pt;}
.yd{bottom:325.386667pt;}
.y3b{bottom:340.286667pt;}
.yc{bottom:340.713333pt;}
.y3a{bottom:355.613333pt;}
.yb{bottom:356.040000pt;}
.y39{bottom:370.940000pt;}
.ya{bottom:371.366667pt;}
.y38{bottom:386.266667pt;}
.y9{bottom:386.693333pt;}
.y37{bottom:401.593333pt;}
.y8{bottom:402.020000pt;}
.y36{bottom:416.920000pt;}
.y7{bottom:417.346667pt;}
.y35{bottom:432.246667pt;}
.y6{bottom:432.673333pt;}
.y34{bottom:447.573333pt;}
.y5{bottom:448.000000pt;}
.y33{bottom:462.900000pt;}
.y4{bottom:463.326667pt;}
.y32{bottom:478.226667pt;}
.y3{bottom:478.653333pt;}
.y31{bottom:493.553333pt;}
.y2{bottom:493.980000pt;}
.y30{bottom:508.880000pt;}
.y1{bottom:509.306667pt;}
.y2f{bottom:524.206667pt;}
.y2e{bottom:539.533333pt;}
.y2d{bottom:554.860000pt;}
.y2c{bottom:570.186667pt;}
.y2b{bottom:585.513333pt;}
.y2a{bottom:600.840000pt;}
.y29{bottom:616.166667pt;}
.y28{bottom:631.493333pt;}
.y27{bottom:646.820000pt;}
.y26{bottom:662.146667pt;}
.y25{bottom:677.473333pt;}
.y24{bottom:692.800000pt;}
.y23{bottom:708.126667pt;}
.y20{bottom:720.093333pt;}
.y22{bottom:723.453333pt;}
.y1f{bottom:765.426667pt;}
.y21{bottom:821.333333pt;}
.h2{height:36.949333pt;}
.h4{height:41.854167pt;}
.h1{height:49.925333pt;}
.h3{height:72.618667pt;}
.h0{height:793.333333pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x4{left:4.000000pt;}
.x1{left:66.400000pt;}
.x6{left:67.489333pt;}
.x2{left:86.405333pt;}
.x5{left:87.480000pt;}
.x9{left:154.238667pt;}
.x8{left:296.109333pt;}
.x7{left:373.872000pt;}
.x3{left:382.466667pt;}
}




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