
    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_0314a21328408a133a110380.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.709000;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_7bc3ee494a96b38aed7b0de8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_56f01c65dc47a8ea65a7bfbf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909000;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_2f4020b2a02492f71a2b70d5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9e1258c99c1542e61df78328.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_8fb3236bcbbc05df2edc8f60.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.735000;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_7f13457ea3e5acf2ab802b7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.046000;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_1f2612fc4322e355f7381e1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a1cd7c522c86d71ff98a16d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8fc33ddca3bc85ace32b71b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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:-9.842755px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.007560px;}
.lsf{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.007076px;}
.lse{letter-spacing:1.784948px;}
.ls1{letter-spacing:2.974067px;}
.lsb{letter-spacing:3.034083px;}
.ls5{letter-spacing:9.087720px;}
.ls7{letter-spacing:14.489268px;}
.ls6{letter-spacing:14.512974px;}
.ls9{letter-spacing:14.531142px;}
.lsa{letter-spacing:14.549285px;}
.ls8{letter-spacing:18.150293px;}
.ls10{letter-spacing:22.711179px;}
.lsc{letter-spacing:22.891230px;}
.ls2{letter-spacing:22.915326px;}
.lsd{letter-spacing:23.275427px;}
.ls0{letter-spacing:26.252525px;}
.ls11{letter-spacing:31.833733px;}
.ls4{letter-spacing:34.013969px;}
.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;}
}
.wsa{word-spacing:-0.065478px;}
.ws20{word-spacing:-0.053775px;}
.ws13{word-spacing:-0.047833px;}
.ws21{word-spacing:0.000000px;}
.ws3{word-spacing:13.282438px;}
.ws2b{word-spacing:16.238626px;}
.ws22{word-spacing:16.885187px;}
.ws6{word-spacing:17.024365px;}
.ws7{word-spacing:17.089844px;}
.ws29{word-spacing:17.941062px;}
.ws28{word-spacing:18.006540px;}
.ws1a{word-spacing:18.072019px;}
.ws1{word-spacing:18.283518px;}
.ws4{word-spacing:18.337293px;}
.ws11{word-spacing:19.185150px;}
.wsf{word-spacing:19.512542px;}
.ws2f{word-spacing:19.627894px;}
.ws8{word-spacing:19.951739px;}
.ws31{word-spacing:20.165645px;}
.ws27{word-spacing:20.232804px;}
.ws5{word-spacing:20.298282px;}
.ws17{word-spacing:20.560195px;}
.ws2a{word-spacing:20.691152px;}
.ws1f{word-spacing:21.214979px;}
.ws10{word-spacing:21.667637px;}
.ws19{word-spacing:21.738805px;}
.ws18{word-spacing:21.935240px;}
.wsb{word-spacing:22.667307px;}
.ws9{word-spacing:22.851937px;}
.ws25{word-spacing:24.619852px;}
.ws1c{word-spacing:24.750808px;}
.ws1d{word-spacing:24.816287px;}
.ws30{word-spacing:25.596925px;}
.ws16{word-spacing:25.602027px;}
.ws26{word-spacing:25.798462px;}
.ws1b{word-spacing:26.453245px;}
.ws15{word-spacing:26.649680px;}
.ws2c{word-spacing:27.042550px;}
.ws2d{word-spacing:27.108028px;}
.ws14{word-spacing:28.202152px;}
.ws1e{word-spacing:29.399770px;}
.ws2e{word-spacing:29.858118px;}
.ws2{word-spacing:29.927353px;}
.wse{word-spacing:32.084381px;}
.wsd{word-spacing:32.149859px;}
.wsc{word-spacing:32.223272px;}
.ws0{word-spacing:32.542729px;}
.ws24{word-spacing:118.575873px;}
.ws23{word-spacing:177.283843px;}
.ws12{word-spacing:646.575955px;}
._0{margin-left:-8.250269px;}
._1{margin-left:-6.154963px;}
._2{margin-left:-4.570879px;}
._15{margin-left:-3.339395px;}
._5{margin-left:-2.275597px;}
._3{margin-left:-1.129276px;}
._4{width:1.767915px;}
._c{width:4.648961px;}
._6{width:18.137497px;}
._14{width:21.329791px;}
._e{width:23.320170px;}
._7{width:24.685330px;}
._16{width:26.256810px;}
._b{width:28.483073px;}
._10{width:29.580060px;}
._a{width:31.176591px;}
._8{width:32.346294px;}
._f{width:38.304822px;}
._d{width:43.821146px;}
._17{width:45.333030px;}
._9{width:60.616788px;}
._12{width:148.961210px;}
._13{width:159.464106px;}
._11{width:844.833327px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.866870px;}
.fs2{font-size:47.833390px;}
.fs1{font-size:53.775053px;}
.fs0{font-size:65.478329px;}
.y0{bottom:0.000000px;}
.y1e{bottom:13.988322px;}
.y1c{bottom:35.508444px;}
.y1d{bottom:72.992313px;}
.y1f{bottom:129.403427px;}
.y19{bottom:197.987187px;}
.y18{bottom:217.837744px;}
.y2e{bottom:240.239014px;}
.y17{bottom:266.436347px;}
.y2d{bottom:266.541377px;}
.y16{bottom:297.525050px;}
.y2c{bottom:315.845178px;}
.y15{bottom:328.613752px;}
.y2b{bottom:351.870262px;}
.y14{bottom:359.687450px;}
.y13{bottom:390.776153px;}
.y2a{bottom:396.552770px;}
.y12{bottom:421.864855px;}
.y29{bottom:427.626468px;}
.y11{bottom:452.938553px;}
.y28{bottom:458.715170px;}
.y10{bottom:484.027256px;}
.y27{bottom:489.803873px;}
.yf{bottom:515.115958px;}
.y26{bottom:520.877571px;}
.ye{bottom:546.189656px;}
.y25{bottom:551.966273px;}
.y24{bottom:583.054976px;}
.yd{bottom:595.838554px;}
.y23{bottom:614.128674px;}
.y22{bottom:645.217376px;}
.yc{bottom:645.472448px;}
.y21{bottom:676.306079px;}
.yb{bottom:676.561150px;}
.ya{bottom:707.634848px;}
.y20{bottom:716.847427px;}
.y9{bottom:738.723551px;}
.y1b{bottom:765.821544px;}
.y8{bottom:769.812253px;}
.y7{bottom:800.885951px;}
.y6{bottom:831.974654px;}
.y5{bottom:890.010899px;}
.y4{bottom:916.313262px;}
.y3{bottom:960.140530px;}
.y2{bottom:1004.973080px;}
.y1{bottom:1025.888935px;}
.y1a{bottom:1109.582362px;}
.h5{height:34.153040px;}
.h7{height:37.408025px;}
.h9{height:38.502938px;}
.h2{height:40.331290px;}
.h1{height:45.703874px;}
.h8{height:46.882483px;}
.h3{height:49.108747px;}
.h4{height:59.342931px;}
.h6{height:322.801002px;}
.h0{height:1263.000000px;}
.w1{width:322.800831px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:9.684178px;}
.xa{left:31.204300px;}
.x9{left:47.366809px;}
.xb{left:141.391809px;}
.x6{left:190.012957px;}
.xf{left:196.914889px;}
.x5{left:207.942976px;}
.x4{left:243.803014px;}
.xd{left:279.993145px;}
.x8{left:297.339140px;}
.x1{left:325.575904px;}
.x2{left:328.066601px;}
.x3{left:402.952564px;}
.xe{left:411.294899px;}
.x7{left:455.827364px;}
@media print{
.v1{vertical-align:-8.749116pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.006720pt;}
.lsf{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.006290pt;}
.lse{letter-spacing:1.586620pt;}
.ls1{letter-spacing:2.643615pt;}
.lsb{letter-spacing:2.696963pt;}
.ls5{letter-spacing:8.077973pt;}
.ls7{letter-spacing:12.879349pt;}
.ls6{letter-spacing:12.900422pt;}
.ls9{letter-spacing:12.916570pt;}
.lsa{letter-spacing:12.932697pt;}
.ls8{letter-spacing:16.133593pt;}
.ls10{letter-spacing:20.187715pt;}
.lsc{letter-spacing:20.347760pt;}
.ls2{letter-spacing:20.369179pt;}
.lsd{letter-spacing:20.689269pt;}
.ls0{letter-spacing:23.335577pt;}
.ls11{letter-spacing:28.296652pt;}
.ls4{letter-spacing:30.234639pt;}
.wsa{word-spacing:-0.058203pt;}
.ws20{word-spacing:-0.047800pt;}
.ws13{word-spacing:-0.042519pt;}
.ws21{word-spacing:0.000000pt;}
.ws3{word-spacing:11.806612pt;}
.ws2b{word-spacing:14.434334pt;}
.ws22{word-spacing:15.009055pt;}
.ws6{word-spacing:15.132769pt;}
.ws7{word-spacing:15.190972pt;}
.ws29{word-spacing:15.947611pt;}
.ws28{word-spacing:16.005814pt;}
.ws1a{word-spacing:16.064017pt;}
.ws1{word-spacing:16.252016pt;}
.ws4{word-spacing:16.299816pt;}
.ws11{word-spacing:17.053467pt;}
.wsf{word-spacing:17.344482pt;}
.ws2f{word-spacing:17.447017pt;}
.ws8{word-spacing:17.734879pt;}
.ws31{word-spacing:17.925018pt;}
.ws27{word-spacing:17.984714pt;}
.ws5{word-spacing:18.042917pt;}
.ws17{word-spacing:18.275729pt;}
.ws2a{word-spacing:18.392135pt;}
.ws1f{word-spacing:18.857759pt;}
.ws10{word-spacing:19.260122pt;}
.ws19{word-spacing:19.323382pt;}
.ws18{word-spacing:19.497991pt;}
.wsb{word-spacing:20.148717pt;}
.ws9{word-spacing:20.312833pt;}
.ws25{word-spacing:21.884313pt;}
.ws1c{word-spacing:22.000718pt;}
.ws1d{word-spacing:22.058921pt;}
.ws30{word-spacing:22.752822pt;}
.ws16{word-spacing:22.757357pt;}
.ws26{word-spacing:22.931966pt;}
.ws1b{word-spacing:23.513995pt;}
.ws15{word-spacing:23.688604pt;}
.ws2c{word-spacing:24.037822pt;}
.ws2d{word-spacing:24.096025pt;}
.ws14{word-spacing:25.068580pt;}
.ws1e{word-spacing:26.133129pt;}
.ws2e{word-spacing:26.540549pt;}
.ws2{word-spacing:26.602092pt;}
.wse{word-spacing:28.519450pt;}
.wsd{word-spacing:28.577653pt;}
.wsc{word-spacing:28.642908pt;}
.ws0{word-spacing:28.926871pt;}
.ws24{word-spacing:105.400776pt;}
.ws23{word-spacing:157.585638pt;}
.ws12{word-spacing:574.734182pt;}
._0{margin-left:-7.333573pt;}
._1{margin-left:-5.471078pt;}
._2{margin-left:-4.063004pt;}
._15{margin-left:-2.968351pt;}
._5{margin-left:-2.022753pt;}
._3{margin-left:-1.003801pt;}
._4{width:1.571480pt;}
._c{width:4.132410pt;}
._6{width:16.122220pt;}
._14{width:18.959814pt;}
._e{width:20.729040pt;}
._7{width:21.942516pt;}
._16{width:23.339387pt;}
._b{width:25.318287pt;}
._10{width:26.293387pt;}
._a{width:27.712525pt;}
._8{width:28.752262pt;}
._f{width:34.048731pt;}
._d{width:38.952130pt;}
._17{width:40.296026pt;}
._9{width:53.881589pt;}
._12{width:132.409964pt;}
._13{width:141.745872pt;}
._11{width:750.962957pt;}
.fs3{font-size:31.881663pt;}
.fs2{font-size:42.518569pt;}
.fs1{font-size:47.800047pt;}
.fs0{font-size:58.202959pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:12.434064pt;}
.y1c{bottom:31.563061pt;}
.y1d{bottom:64.882056pt;}
.y1f{bottom:115.025269pt;}
.y19{bottom:175.988611pt;}
.y18{bottom:193.633550pt;}
.y2e{bottom:213.545790pt;}
.y17{bottom:236.832309pt;}
.y2d{bottom:236.925668pt;}
.y16{bottom:264.466711pt;}
.y2c{bottom:280.751269pt;}
.y15{bottom:292.101113pt;}
.y2b{bottom:312.773566pt;}
.y14{bottom:319.722178pt;}
.y13{bottom:347.356580pt;}
.y2a{bottom:352.491351pt;}
.y12{bottom:374.990982pt;}
.y29{bottom:380.112416pt;}
.y11{bottom:402.612047pt;}
.y28{bottom:407.746818pt;}
.y10{bottom:430.246450pt;}
.y27{bottom:435.381220pt;}
.yf{bottom:457.880852pt;}
.y26{bottom:463.002285pt;}
.ye{bottom:485.501917pt;}
.y25{bottom:490.636687pt;}
.y24{bottom:518.271090pt;}
.yd{bottom:529.634270pt;}
.y23{bottom:545.892155pt;}
.y22{bottom:573.526557pt;}
.yc{bottom:573.753287pt;}
.y21{bottom:601.160959pt;}
.yb{bottom:601.387689pt;}
.ya{bottom:629.008754pt;}
.y20{bottom:637.197713pt;}
.y9{bottom:656.643156pt;}
.y1b{bottom:680.730262pt;}
.y8{bottom:684.277558pt;}
.y7{bottom:711.898623pt;}
.y6{bottom:739.533026pt;}
.y5{bottom:791.120799pt;}
.y4{bottom:814.500677pt;}
.y3{bottom:853.458249pt;}
.y2{bottom:893.309404pt;}
.y1{bottom:911.901275pt;}
.y1a{bottom:986.295433pt;}
.h5{height:30.358258pt;}
.h7{height:33.251578pt;}
.h9{height:34.224834pt;}
.h2{height:35.850035pt;}
.h1{height:40.625665pt;}
.h8{height:41.673319pt;}
.h3{height:43.652219pt;}
.h4{height:52.749272pt;}
.h6{height:286.934224pt;}
.h0{height:1122.666667pt;}
.w1{width:286.934072pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:8.608158pt;}
.xa{left:27.737156pt;}
.x9{left:42.103830pt;}
.xb{left:125.681608pt;}
.x6{left:168.900406pt;}
.xf{left:175.035457pt;}
.x5{left:184.838201pt;}
.x4{left:216.713790pt;}
.xd{left:248.882795pt;}
.x8{left:264.301457pt;}
.x1{left:289.400804pt;}
.x2{left:291.614757pt;}
.x3{left:358.180057pt;}
.xe{left:365.595466pt;}
.x7{left:405.179879pt;}
}




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