
    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_6f4f47b83c1d9213872f2f49.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_97678e0ed0d401d99d78139b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926270;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_4673ed9e85ec9632764806c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.754395;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_5a4dcf94a957bf97cd9394ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975098;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_4d15d146242f22ea178dfd29.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_1a5734909046ae898f814fc2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_dbd8bea1e9ddcbf264c7ef65.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.754395;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;}
.m5{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);}
.m6{transform:matrix(0.000000,-0.250013,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250013,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250013,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.081807,-0.236249,0.236236,0.081807,0,0);-ms-transform:matrix(0.081807,-0.236249,0.236236,0.081807,0,0);-webkit-transform:matrix(0.081807,-0.236249,0.236236,0.081807,0,0);}
.m2{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);}
.m9{transform:matrix(0.176783,-0.176783,0.176777,0.176777,0,0);-ms-transform:matrix(0.176783,-0.176783,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176783,-0.176783,0.176777,0.176777,0,0);}
.m8{transform:matrix(0.190960,0.161373,-0.161367,0.190947,0,0);-ms-transform:matrix(0.190960,0.161373,-0.161367,0.190947,0,0);-webkit-transform:matrix(0.190960,0.161373,-0.161367,0.190947,0,0);}
.m3{transform:matrix(0.197274,-0.153568,0.153568,0.197274,0,0);-ms-transform:matrix(0.197274,-0.153568,0.153568,0.197274,0,0);-webkit-transform:matrix(0.197274,-0.153568,0.153568,0.197274,0,0);}
.m4{transform:matrix(0.198070,0.152539,-0.152539,0.198070,0,0);-ms-transform:matrix(0.198070,0.152539,-0.152539,0.198070,0,0);-webkit-transform:matrix(0.198070,0.152539,-0.152539,0.198070,0,0);}
.m1{transform:matrix(0.211782,0.132847,-0.132847,0.211782,0,0);-ms-transform:matrix(0.211782,0.132847,-0.132847,0.211782,0,0);-webkit-transform:matrix(0.211782,0.132847,-0.132847,0.211782,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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.740664px;}
.lsf{letter-spacing:-0.575100px;}
.ls10{letter-spacing:-0.501120px;}
.ls12{letter-spacing:-0.416988px;}
.lse{letter-spacing:-0.089856px;}
.lsc{letter-spacing:-0.051840px;}
.lsd{letter-spacing:-0.006912px;}
.lsa{letter-spacing:-0.005832px;}
.ls16{letter-spacing:-0.005652px;}
.ls13{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.016951px;}
.ls9{letter-spacing:0.029340px;}
.ls0{letter-spacing:0.033901px;}
.ls14{letter-spacing:0.033912px;}
.ls5{letter-spacing:0.045203px;}
.ls17{letter-spacing:0.045216px;}
.ls18{letter-spacing:0.092232px;}
.ls15{letter-spacing:0.135649px;}
.ls19{letter-spacing:0.227473px;}
.ls1b{letter-spacing:0.227519px;}
.ls6{letter-spacing:0.237315px;}
.ls4{letter-spacing:0.242959px;}
.ls2{letter-spacing:0.254259px;}
.ls3{letter-spacing:0.339012px;}
.ls1a{letter-spacing:0.341209px;}
.ls11{letter-spacing:0.349056px;}
.ls1{letter-spacing:0.468967px;}
.ls8{letter-spacing:64.263960px;}
.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;}
}
.ws11{word-spacing:-16.155263px;}
.ws12{word-spacing:-15.695642px;}
.ws6{word-spacing:-15.656167px;}
.ws5{word-spacing:-15.651057px;}
.ws7{word-spacing:-15.651052px;}
.ws0{word-spacing:-15.472296px;}
.ws4{word-spacing:-9.956736px;}
.ws10{word-spacing:-9.573494px;}
.ws1{word-spacing:-9.555840px;}
.ws2{word-spacing:-9.517824px;}
.ws3{word-spacing:-9.106560px;}
.wse{word-spacing:-0.032940px;}
.wsf{word-spacing:-0.017604px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:0.124416px;}
.wsd{word-spacing:0.146952px;}
.wsc{word-spacing:0.158256px;}
.wsb{word-spacing:0.595188px;}
.wsa{word-spacing:0.874152px;}
._2{margin-left:-157.925061px;}
._1{margin-left:-1.821312px;}
._0{width:1.119744px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:34.560000px;}
.fsb{font-size:34.561350px;}
.fs3{font-size:35.640000px;}
.fs7{font-size:56.501995px;}
.fs4{font-size:56.502012px;}
.fs8{font-size:56.503478px;}
.fs6{font-size:56.520000px;}
.fs5{font-size:56.520459px;}
.fs12{font-size:56.865439px;}
.fs11{font-size:56.868268px;}
.fsf{font-size:56.879676px;}
.fs13{font-size:56.879808px;}
.fs10{font-size:56.882250px;}
.fs0{font-size:58.320000px;}
.fsc{font-size:58.322250px;}
.fsa{font-size:58.680000px;}
.fse{font-size:65.522700px;}
.fs9{font-size:65.880000px;}
.fsd{font-size:76.323145px;}
.fs2{font-size:76.680000px;}
.y0{bottom:0.000000px;}
.y12{bottom:7.950450px;}
.y17{bottom:40.140060px;}
.y7{bottom:40.260450px;}
.y4{bottom:40.260882px;}
.y13{bottom:57.960022px;}
.y6{bottom:58.080450px;}
.y15{bottom:62.640060px;}
.y2{bottom:62.670990px;}
.y1{bottom:70.500450px;}
.y14{bottom:70.560104px;}
.y16{bottom:85.140060px;}
.y3{bottom:85.350450px;}
.y5{bottom:120.630450px;}
.y18{bottom:120.780052px;}
.ya{bottom:299.820450px;}
.y22{bottom:318.240074px;}
.y21{bottom:364.136329px;}
.y24{bottom:427.494588px;}
.yc{bottom:436.890450px;}
.y8{bottom:456.600450px;}
.y26{bottom:468.358128px;}
.yd{bottom:532.920450px;}
.y25{bottom:534.242633px;}
.y23{bottom:553.862436px;}
.yb{bottom:579.540450px;}
.y9{bottom:599.160450px;}
.y1b{bottom:699.296262px;}
.y1f{bottom:716.039244px;}
.y20{bottom:758.157710px;}
.y10{bottom:788.970450px;}
.y1d{bottom:820.797651px;}
.y1a{bottom:850.314394px;}
.yf{bottom:875.910450px;}
.y1e{bottom:985.140060px;}
.y1c{bottom:1027.080059px;}
.ye{bottom:1029.450450px;}
.y19{bottom:1125.000068px;}
.y11{bottom:1150.950450px;}
.h2{height:25.177500px;}
.h4{height:25.964297px;}
.he{height:31.000586px;}
.h7{height:41.617266px;}
.h8{height:41.617604px;}
.h5{height:41.801778px;}
.h15{height:41.871622px;}
.h6{height:41.871946px;}
.h14{height:41.873705px;}
.ha{height:41.876317px;}
.h12{height:41.882105px;}
.h16{height:41.882202px;}
.h13{height:41.884000px;}
.h9{height:41.886518px;}
.h17{height:42.451000px;}
.h1{height:42.487031px;}
.hc{height:43.436953px;}
.hb{height:47.994609px;}
.hf{height:52.313464px;}
.h3{height:54.889102px;}
.h10{height:57.391428px;}
.h11{height:58.772070px;}
.hd{height:1262.880060px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:892.980015px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:44.550000px;}
.x10{left:121.950000px;}
.x12{left:145.259994px;}
.xe{left:198.000000px;}
.x16{left:223.741537px;}
.x1c{left:245.515799px;}
.x13{left:287.995026px;}
.xc{left:355.140000px;}
.x15{left:394.560001px;}
.xd{left:424.260000px;}
.xa{left:434.610000px;}
.x1a{left:472.860008px;}
.x18{left:480.594024px;}
.x5{left:499.499856px;}
.x4{left:500.579856px;}
.x1e{left:506.697465px;}
.x6{left:507.780000px;}
.x2{left:575.999712px;}
.x7{left:595.350288px;}
.x1d{left:604.260856px;}
.x19{left:612.188052px;}
.x1b{left:623.880660px;}
.x17{left:638.277701px;}
.xb{left:674.100000px;}
.x3{left:686.250000px;}
.x9{left:693.810000px;}
.x8{left:695.520000px;}
.x14{left:699.478719px;}
.xf{left:711.450000px;}
.x1{left:727.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.658368pt;}
.lsf{letter-spacing:-0.511200pt;}
.ls10{letter-spacing:-0.445440pt;}
.ls12{letter-spacing:-0.370656pt;}
.lse{letter-spacing:-0.079872pt;}
.lsc{letter-spacing:-0.046080pt;}
.lsd{letter-spacing:-0.006144pt;}
.lsa{letter-spacing:-0.005184pt;}
.ls16{letter-spacing:-0.005024pt;}
.ls13{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.015068pt;}
.ls9{letter-spacing:0.026080pt;}
.ls0{letter-spacing:0.030134pt;}
.ls14{letter-spacing:0.030144pt;}
.ls5{letter-spacing:0.040180pt;}
.ls17{letter-spacing:0.040192pt;}
.ls18{letter-spacing:0.081984pt;}
.ls15{letter-spacing:0.120577pt;}
.ls19{letter-spacing:0.202198pt;}
.ls1b{letter-spacing:0.202239pt;}
.ls6{letter-spacing:0.210946pt;}
.ls4{letter-spacing:0.215963pt;}
.ls2{letter-spacing:0.226008pt;}
.ls3{letter-spacing:0.301344pt;}
.ls1a{letter-spacing:0.303297pt;}
.ls11{letter-spacing:0.310272pt;}
.ls1{letter-spacing:0.416859pt;}
.ls8{letter-spacing:57.123520pt;}
.ws11{word-spacing:-14.360234pt;}
.ws12{word-spacing:-13.951682pt;}
.ws6{word-spacing:-13.916593pt;}
.ws5{word-spacing:-13.912051pt;}
.ws7{word-spacing:-13.912047pt;}
.ws0{word-spacing:-13.753152pt;}
.ws4{word-spacing:-8.850432pt;}
.ws10{word-spacing:-8.509772pt;}
.ws1{word-spacing:-8.494080pt;}
.ws2{word-spacing:-8.460288pt;}
.ws3{word-spacing:-8.094720pt;}
.wse{word-spacing:-0.029280pt;}
.wsf{word-spacing:-0.015648pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:0.110592pt;}
.wsd{word-spacing:0.130624pt;}
.wsc{word-spacing:0.140672pt;}
.wsb{word-spacing:0.529056pt;}
.wsa{word-spacing:0.777024pt;}
._2{margin-left:-140.377832pt;}
._1{margin-left:-1.618944pt;}
._0{width:0.995328pt;}
.fs1{font-size:30.720000pt;}
.fsb{font-size:30.721200pt;}
.fs3{font-size:31.680000pt;}
.fs7{font-size:50.223995pt;}
.fs4{font-size:50.224011pt;}
.fs8{font-size:50.225314pt;}
.fs6{font-size:50.240000pt;}
.fs5{font-size:50.240408pt;}
.fs12{font-size:50.547057pt;}
.fs11{font-size:50.549571pt;}
.fsf{font-size:50.559712pt;}
.fs13{font-size:50.559829pt;}
.fs10{font-size:50.562000pt;}
.fs0{font-size:51.840000pt;}
.fsc{font-size:51.842000pt;}
.fsa{font-size:52.160000pt;}
.fse{font-size:58.242400pt;}
.fs9{font-size:58.560000pt;}
.fsd{font-size:67.842796pt;}
.fs2{font-size:68.160000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:7.067067pt;}
.y17{bottom:35.680054pt;}
.y7{bottom:35.787067pt;}
.y4{bottom:35.787451pt;}
.y13{bottom:51.520020pt;}
.y6{bottom:51.627067pt;}
.y15{bottom:55.680054pt;}
.y2{bottom:55.707547pt;}
.y1{bottom:62.667067pt;}
.y14{bottom:62.720093pt;}
.y16{bottom:75.680054pt;}
.y3{bottom:75.867067pt;}
.y5{bottom:107.227067pt;}
.y18{bottom:107.360047pt;}
.ya{bottom:266.507067pt;}
.y22{bottom:282.880066pt;}
.y21{bottom:323.676737pt;}
.y24{bottom:379.995189pt;}
.yc{bottom:388.347067pt;}
.y8{bottom:405.867067pt;}
.y26{bottom:416.318336pt;}
.yd{bottom:473.707067pt;}
.y25{bottom:474.882340pt;}
.y23{bottom:492.322166pt;}
.yb{bottom:515.147067pt;}
.y9{bottom:532.587067pt;}
.y1b{bottom:621.596677pt;}
.y1f{bottom:636.479328pt;}
.y20{bottom:673.917964pt;}
.y10{bottom:701.307067pt;}
.y1d{bottom:729.597912pt;}
.y1a{bottom:755.835017pt;}
.yf{bottom:778.587067pt;}
.y1e{bottom:875.680054pt;}
.y1c{bottom:912.960053pt;}
.ye{bottom:915.067067pt;}
.y19{bottom:1000.000061pt;}
.y11{bottom:1023.067067pt;}
.h2{height:22.380000pt;}
.h4{height:23.079375pt;}
.he{height:27.556076pt;}
.h7{height:36.993125pt;}
.h8{height:36.993426pt;}
.h5{height:37.157136pt;}
.h15{height:37.219220pt;}
.h6{height:37.219507pt;}
.h14{height:37.221071pt;}
.ha{height:37.223393pt;}
.h12{height:37.228538pt;}
.h16{height:37.228624pt;}
.h13{height:37.230223pt;}
.h9{height:37.232460pt;}
.h17{height:37.734222pt;}
.h1{height:37.766250pt;}
.hc{height:38.610625pt;}
.hb{height:42.661875pt;}
.hf{height:46.500856pt;}
.h3{height:48.790312pt;}
.h10{height:51.014602pt;}
.h11{height:52.241840pt;}
.hd{height:1122.560053pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:793.760013pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:39.600000pt;}
.x10{left:108.400000pt;}
.x12{left:129.119995pt;}
.xe{left:176.000000pt;}
.x16{left:198.881366pt;}
.x1c{left:218.236266pt;}
.x13{left:255.995579pt;}
.xc{left:315.680000pt;}
.x15{left:350.720001pt;}
.xd{left:377.120000pt;}
.xa{left:386.320000pt;}
.x1a{left:420.320007pt;}
.x18{left:427.194688pt;}
.x5{left:443.999872pt;}
.x4{left:444.959872pt;}
.x1e{left:450.397746pt;}
.x6{left:451.360000pt;}
.x2{left:511.999744pt;}
.x7{left:529.200256pt;}
.x1d{left:537.120761pt;}
.x19{left:544.167158pt;}
.x1b{left:554.560587pt;}
.x17{left:567.357957pt;}
.xb{left:599.200000pt;}
.x3{left:610.000000pt;}
.x9{left:616.720000pt;}
.x8{left:618.240000pt;}
.x14{left:621.758861pt;}
.xf{left:632.400000pt;}
.x1{left:646.960000pt;}
}




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