
    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_bbf59d6da90ac2846805851a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.057000;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_27e673d5d80de42e7d8c6d29.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_c96216d9c2fd85043601f7a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_c54cb5ccda6070ef0d206e71.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.525000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675000;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_044c3a22cd0ac881eafeed04.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.520000;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);}
.v3{vertical-align:-10.500000px;}
.v2{vertical-align:-8.910000px;}
.v1{vertical-align:-5.304000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:14.942355px;}
.ls2{letter-spacing:16.359238px;}
.ls3{letter-spacing:16.360877px;}
.ls7{letter-spacing:16.363650px;}
.ls4{letter-spacing:16.366309px;}
.ls5{letter-spacing:50.210496px;}
.ls1{letter-spacing:52.499421px;}
.ls8{letter-spacing:52.664496px;}
.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;}
}
.ws5{word-spacing:-17.932800px;}
.ws1{word-spacing:-16.363650px;}
.wsc{word-spacing:-0.785455px;}
.wse{word-spacing:-0.720001px;}
.wsd{word-spacing:-0.065455px;}
.ws4{word-spacing:-0.008261px;}
.ws8{word-spacing:-0.003556px;}
.ws2{word-spacing:-0.000947px;}
.ws3{word-spacing:-0.000844px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:0.001169px;}
.wsa{word-spacing:2.749093px;}
.ws9{word-spacing:16.294262px;}
.wsb{word-spacing:16.298195px;}
.ws6{word-spacing:16.299764px;}
._16{margin-left:-5.788699px;}
._8{margin-left:-4.399805px;}
._f{margin-left:-3.168107px;}
._0{margin-left:-2.065853px;}
._1{margin-left:-1.032926px;}
._4{width:1.371161px;}
._d{width:2.498078px;}
._c{width:3.726946px;}
._9{width:5.236368px;}
._6{width:7.643841px;}
._7{width:8.719809px;}
._14{width:10.071032px;}
._5{width:18.396128px;}
._a{width:20.029108px;}
._13{width:25.134542px;}
._12{width:27.294568px;}
._15{width:36.496733px;}
._3{width:79.836826px;}
._10{width:319.261480px;}
._17{width:575.660688px;}
._e{width:588.245390px;}
._2{width:592.340688px;}
._b{width:1367.291316px;}
._11{width:1496.553974px;}
.fc8{color:rgb(0,173,239);}
.fc7{color:transparent;}
.fca{color:rgb(235,109,93);}
.fc9{color:rgb(82,86,109);}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(254,250,248);}
.fc3{color:rgb(224,45,48);}
.fc2{color:rgb(252,230,223);}
.fc5{color:rgb(249,206,194);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:35.865600px;}
.fs6{font-size:42.351660px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.873000px;}
.y2d{bottom:16.317131px;}
.y81{bottom:19.833000px;}
.y3b{bottom:25.428000px;}
.y3e{bottom:25.753500px;}
.y41{bottom:26.850000px;}
.y5a{bottom:30.606000px;}
.y80{bottom:34.029000px;}
.y8a{bottom:38.923500px;}
.y2b{bottom:40.296000px;}
.y1e{bottom:43.947000px;}
.y3a{bottom:45.751500px;}
.y3d{bottom:46.077000px;}
.y40{bottom:47.173500px;}
.y7f{bottom:48.226500px;}
.y59{bottom:50.929500px;}
.y1d{bottom:61.879500px;}
.y89{bottom:62.095500px;}
.y2a{bottom:65.103000px;}
.y58{bottom:76.647000px;}
.y1c{bottom:82.801500px;}
.y7e{bottom:85.750500px;}
.y29{bottom:90.304500px;}
.y57{bottom:101.454000px;}
.y1b{bottom:105.217500px;}
.yd{bottom:107.268000px;}
.y88{bottom:108.898500px;}
.y7d{bottom:110.557500px;}
.y28{bottom:114.259500px;}
.y7{bottom:118.032000px;}
.y56{bottom:121.777500px;}
.y1a{bottom:130.024500px;}
.y87{bottom:133.705500px;}
.y7c{bottom:135.364500px;}
.y6{bottom:138.355500px;}
.y55{bottom:147.420000px;}
.y86{bottom:154.029000px;}
.y19{bottom:154.833000px;}
.y7b{bottom:155.688000px;}
.y5{bottom:158.679000px;}
.y64{bottom:160.024500px;}
.y3f{bottom:161.064000px;}
.y3c{bottom:162.159000px;}
.y39{bottom:162.484500px;}
.yc{bottom:162.496500px;}
.y85{bottom:178.836000px;}
.y63{bottom:180.348000px;}
.y7a{bottom:180.889500px;}
.y54{bottom:190.207500px;}
.y4{bottom:197.638500px;}
.y84{bottom:199.159500px;}
.y12{bottom:202.102500px;}
.y62{bottom:205.549500px;}
.y2f{bottom:206.229000px;}
.y45{bottom:209.799000px;}
.y3{bottom:211.834500px;}
.y53{bottom:215.014500px;}
.y71{bottom:217.275000px;}
.yb{bottom:217.725000px;}
.y83{bottom:223.966500px;}
.y68{bottom:226.471500px;}
.y11{bottom:226.909500px;}
.y6c{bottom:229.956000px;}
.y2e{bottom:230.956500px;}
.y23{bottom:241.095000px;}
.y70{bottom:242.445000px;}
.y2{bottom:245.550000px;}
.y82{bottom:248.776500px;}
.y4a{bottom:249.520500px;}
.y67{bottom:251.278500px;}
.y10{bottom:251.716500px;}
.y5e{bottom:252.013500px;}
.y6b{bottom:254.763000px;}
.y6f{bottom:260.377500px;}
.y22{bottom:261.420000px;}
.y49{bottom:267.453000px;}
.y2c{bottom:268.480500px;}
.ya{bottom:272.953500px;}
.y66{bottom:276.085500px;}
.y43{bottom:276.160500px;}
.y5d{bottom:276.820500px;}
.yf{bottom:276.918000px;}
.y6a{bottom:279.570000px;}
.y6e{bottom:283.924500px;}
.y48{bottom:285.385500px;}
.y21{bottom:286.227000px;}
.y42{bottom:296.484000px;}
.y65{bottom:300.892500px;}
.y5c{bottom:301.627500px;}
.y47{bottom:304.080000px;}
.y69{bottom:304.377000px;}
.y6d{bottom:306.340500px;}
.y20{bottom:306.550500px;}
.y1{bottom:310.383000px;}
.ye{bottom:320.302500px;}
.y5b{bottom:326.437500px;}
.y46{bottom:328.888500px;}
.y1f{bottom:331.359000px;}
.y9{bottom:362.751000px;}
.y79{bottom:3019.871685px;}
.y32{bottom:3025.466685px;}
.y35{bottom:3025.792185px;}
.y38{bottom:3026.888685px;}
.y52{bottom:3030.644685px;}
.y78{bottom:3034.067685px;}
.y27{bottom:3040.334685px;}
.y18{bottom:3043.985685px;}
.y31{bottom:3045.790185px;}
.y34{bottom:3046.115685px;}
.y37{bottom:3047.212185px;}
.y77{bottom:3048.265185px;}
.y51{bottom:3050.968185px;}
.y17{bottom:3061.918185px;}
.y26{bottom:3065.141685px;}
.y50{bottom:3076.685685px;}
.y16{bottom:3082.840185px;}
.y76{bottom:3085.789185px;}
.y25{bottom:3090.343185px;}
.y4f{bottom:3101.492685px;}
.y15{bottom:3105.256185px;}
.y75{bottom:3110.596185px;}
.y24{bottom:3114.298185px;}
.y4e{bottom:3121.816185px;}
.y14{bottom:3130.063185px;}
.y74{bottom:3135.403185px;}
.y4d{bottom:3147.458685px;}
.y13{bottom:3154.871685px;}
.y73{bottom:3155.726685px;}
.y61{bottom:3160.063185px;}
.y36{bottom:3161.102685px;}
.y33{bottom:3162.197685px;}
.y30{bottom:3162.523185px;}
.y60{bottom:3180.386685px;}
.y72{bottom:3180.928185px;}
.y4c{bottom:3190.246185px;}
.y5f{bottom:3205.588185px;}
.y44{bottom:3209.837685px;}
.y4b{bottom:3215.053185px;}
.ha{height:28.206206px;}
.h6{height:29.409792px;}
.h5{height:33.713523px;}
.h4{height:39.212892px;}
.hb{height:40.105992px;}
.hc{height:43.172772px;}
.h7{height:48.368772px;}
.h8{height:49.015992px;}
.h3{height:53.672772px;}
.h2{height:70.583304px;}
.h9{height:72.840146px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w2{width:333.363113px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x9{left:18.136500px;}
.x20{left:21.259500px;}
.x10{left:28.347000px;}
.x1d{left:36.141000px;}
.xa{left:43.275000px;}
.xb{left:51.151500px;}
.x26{left:57.912000px;}
.x11{left:61.074000px;}
.x25{left:70.995000px;}
.x16{left:75.247500px;}
.x1{left:77.503500px;}
.xf{left:83.878500px;}
.x23{left:91.252500px;}
.x18{left:96.786303px;}
.x27{left:107.974500px;}
.x8{left:136.401000px;}
.x19{left:141.831000px;}
.x17{left:173.481000px;}
.x4{left:206.259000px;}
.x7{left:210.148500px;}
.x22{left:240.814500px;}
.x1e{left:250.866000px;}
.x6{left:252.162000px;}
.x3{left:268.803000px;}
.x2{left:278.695500px;}
.x5{left:300.885000px;}
.x1f{left:465.589500px;}
.x15{left:517.996500px;}
.xc{left:3018.463185px;}
.x1a{left:3036.179685px;}
.x13{left:3042.557685px;}
.xd{left:3051.190185px;}
.x24{left:3071.033685px;}
.x14{left:3075.286185px;}
.xe{left:3083.917185px;}
.x21{left:3240.853185px;}
.x1b{left:3250.904685px;}
.x1c{left:3465.628185px;}
.x12{left:3518.035185px;}
@media print{
.v3{vertical-align:-9.333333pt;}
.v2{vertical-align:-7.920000pt;}
.v1{vertical-align:-4.714667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:13.282093pt;}
.ls2{letter-spacing:14.541545pt;}
.ls3{letter-spacing:14.543002pt;}
.ls7{letter-spacing:14.545467pt;}
.ls4{letter-spacing:14.547831pt;}
.ls5{letter-spacing:44.631552pt;}
.ls1{letter-spacing:46.666152pt;}
.ls8{letter-spacing:46.812885pt;}
.ws5{word-spacing:-15.940267pt;}
.ws1{word-spacing:-14.545467pt;}
.wsc{word-spacing:-0.698182pt;}
.wse{word-spacing:-0.640001pt;}
.wsd{word-spacing:-0.058182pt;}
.ws4{word-spacing:-0.007343pt;}
.ws8{word-spacing:-0.003161pt;}
.ws2{word-spacing:-0.000842pt;}
.ws3{word-spacing:-0.000750pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:0.001039pt;}
.wsa{word-spacing:2.443638pt;}
.ws9{word-spacing:14.483789pt;}
.wsb{word-spacing:14.487285pt;}
.ws6{word-spacing:14.488679pt;}
._16{margin-left:-5.145510pt;}
._8{margin-left:-3.910938pt;}
._f{margin-left:-2.816095pt;}
._0{margin-left:-1.836314pt;}
._1{margin-left:-0.918157pt;}
._4{width:1.218810pt;}
._d{width:2.220514pt;}
._c{width:3.312841pt;}
._9{width:4.654549pt;}
._6{width:6.794525pt;}
._7{width:7.750941pt;}
._14{width:8.952029pt;}
._5{width:16.352114pt;}
._a{width:17.803651pt;}
._13{width:22.341815pt;}
._12{width:24.261838pt;}
._15{width:32.441540pt;}
._3{width:70.966067pt;}
._10{width:283.787982pt;}
._17{width:511.698389pt;}
._e{width:522.884791pt;}
._2{width:526.525056pt;}
._b{width:1215.370059pt;}
._11{width:1330.270199pt;}
.fs3{font-size:31.880533pt;}
.fs6{font-size:37.645920pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.442667pt;}
.y2d{bottom:14.504117pt;}
.y81{bottom:17.629333pt;}
.y3b{bottom:22.602667pt;}
.y3e{bottom:22.892000pt;}
.y41{bottom:23.866667pt;}
.y5a{bottom:27.205333pt;}
.y80{bottom:30.248000pt;}
.y8a{bottom:34.598667pt;}
.y2b{bottom:35.818667pt;}
.y1e{bottom:39.064000pt;}
.y3a{bottom:40.668000pt;}
.y3d{bottom:40.957333pt;}
.y40{bottom:41.932000pt;}
.y7f{bottom:42.868000pt;}
.y59{bottom:45.270667pt;}
.y1d{bottom:55.004000pt;}
.y89{bottom:55.196000pt;}
.y2a{bottom:57.869333pt;}
.y58{bottom:68.130667pt;}
.y1c{bottom:73.601333pt;}
.y7e{bottom:76.222667pt;}
.y29{bottom:80.270667pt;}
.y57{bottom:90.181333pt;}
.y1b{bottom:93.526667pt;}
.yd{bottom:95.349333pt;}
.y88{bottom:96.798667pt;}
.y7d{bottom:98.273333pt;}
.y28{bottom:101.564000pt;}
.y7{bottom:104.917333pt;}
.y56{bottom:108.246667pt;}
.y1a{bottom:115.577333pt;}
.y87{bottom:118.849333pt;}
.y7c{bottom:120.324000pt;}
.y6{bottom:122.982667pt;}
.y55{bottom:131.040000pt;}
.y86{bottom:136.914667pt;}
.y19{bottom:137.629333pt;}
.y7b{bottom:138.389333pt;}
.y5{bottom:141.048000pt;}
.y64{bottom:142.244000pt;}
.y3f{bottom:143.168000pt;}
.y3c{bottom:144.141333pt;}
.y39{bottom:144.430667pt;}
.yc{bottom:144.441333pt;}
.y85{bottom:158.965333pt;}
.y63{bottom:160.309333pt;}
.y7a{bottom:160.790667pt;}
.y54{bottom:169.073333pt;}
.y4{bottom:175.678667pt;}
.y84{bottom:177.030667pt;}
.y12{bottom:179.646667pt;}
.y62{bottom:182.710667pt;}
.y2f{bottom:183.314667pt;}
.y45{bottom:186.488000pt;}
.y3{bottom:188.297333pt;}
.y53{bottom:191.124000pt;}
.y71{bottom:193.133333pt;}
.yb{bottom:193.533333pt;}
.y83{bottom:199.081333pt;}
.y68{bottom:201.308000pt;}
.y11{bottom:201.697333pt;}
.y6c{bottom:204.405333pt;}
.y2e{bottom:205.294667pt;}
.y23{bottom:214.306667pt;}
.y70{bottom:215.506667pt;}
.y2{bottom:218.266667pt;}
.y82{bottom:221.134667pt;}
.y4a{bottom:221.796000pt;}
.y67{bottom:223.358667pt;}
.y10{bottom:223.748000pt;}
.y5e{bottom:224.012000pt;}
.y6b{bottom:226.456000pt;}
.y6f{bottom:231.446667pt;}
.y22{bottom:232.373333pt;}
.y49{bottom:237.736000pt;}
.y2c{bottom:238.649333pt;}
.ya{bottom:242.625333pt;}
.y66{bottom:245.409333pt;}
.y43{bottom:245.476000pt;}
.y5d{bottom:246.062667pt;}
.yf{bottom:246.149333pt;}
.y6a{bottom:248.506667pt;}
.y6e{bottom:252.377333pt;}
.y48{bottom:253.676000pt;}
.y21{bottom:254.424000pt;}
.y42{bottom:263.541333pt;}
.y65{bottom:267.460000pt;}
.y5c{bottom:268.113333pt;}
.y47{bottom:270.293333pt;}
.y69{bottom:270.557333pt;}
.y6d{bottom:272.302667pt;}
.y20{bottom:272.489333pt;}
.y1{bottom:275.896000pt;}
.ye{bottom:284.713333pt;}
.y5b{bottom:290.166667pt;}
.y46{bottom:292.345333pt;}
.y1f{bottom:294.541333pt;}
.y9{bottom:322.445333pt;}
.y79{bottom:2684.330387pt;}
.y32{bottom:2689.303720pt;}
.y35{bottom:2689.593053pt;}
.y38{bottom:2690.567720pt;}
.y52{bottom:2693.906387pt;}
.y78{bottom:2696.949053pt;}
.y27{bottom:2702.519720pt;}
.y18{bottom:2705.765053pt;}
.y31{bottom:2707.369053pt;}
.y34{bottom:2707.658387pt;}
.y37{bottom:2708.633053pt;}
.y77{bottom:2709.569053pt;}
.y51{bottom:2711.971720pt;}
.y17{bottom:2721.705053pt;}
.y26{bottom:2724.570387pt;}
.y50{bottom:2734.831720pt;}
.y16{bottom:2740.302387pt;}
.y76{bottom:2742.923720pt;}
.y25{bottom:2746.971720pt;}
.y4f{bottom:2756.882387pt;}
.y15{bottom:2760.227720pt;}
.y75{bottom:2764.974387pt;}
.y24{bottom:2768.265053pt;}
.y4e{bottom:2774.947720pt;}
.y14{bottom:2782.278387pt;}
.y74{bottom:2787.025053pt;}
.y4d{bottom:2797.741053pt;}
.y13{bottom:2804.330387pt;}
.y73{bottom:2805.090387pt;}
.y61{bottom:2808.945053pt;}
.y36{bottom:2809.869053pt;}
.y33{bottom:2810.842387pt;}
.y30{bottom:2811.131720pt;}
.y60{bottom:2827.010387pt;}
.y72{bottom:2827.491720pt;}
.y4c{bottom:2835.774387pt;}
.y5f{bottom:2849.411720pt;}
.y44{bottom:2853.189053pt;}
.y4b{bottom:2857.825053pt;}
.ha{height:25.072183pt;}
.h6{height:26.142037pt;}
.h5{height:29.967576pt;}
.h4{height:34.855904pt;}
.hb{height:35.649771pt;}
.hc{height:38.375797pt;}
.h7{height:42.994464pt;}
.h8{height:43.569771pt;}
.h3{height:47.709131pt;}
.h2{height:62.740715pt;}
.h9{height:64.746796pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w2{width:296.322767pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x9{left:16.121333pt;}
.x20{left:18.897333pt;}
.x10{left:25.197333pt;}
.x1d{left:32.125333pt;}
.xa{left:38.466667pt;}
.xb{left:45.468000pt;}
.x26{left:51.477333pt;}
.x11{left:54.288000pt;}
.x25{left:63.106667pt;}
.x16{left:66.886667pt;}
.x1{left:68.892000pt;}
.xf{left:74.558667pt;}
.x23{left:81.113333pt;}
.x18{left:86.032269pt;}
.x27{left:95.977333pt;}
.x8{left:121.245333pt;}
.x19{left:126.072000pt;}
.x17{left:154.205333pt;}
.x4{left:183.341333pt;}
.x7{left:186.798667pt;}
.x22{left:214.057333pt;}
.x1e{left:222.992000pt;}
.x6{left:224.144000pt;}
.x3{left:238.936000pt;}
.x2{left:247.729333pt;}
.x5{left:267.453333pt;}
.x1f{left:413.857333pt;}
.x15{left:460.441333pt;}
.xc{left:2683.078387pt;}
.x1a{left:2698.826387pt;}
.x13{left:2704.495720pt;}
.xd{left:2712.169053pt;}
.x24{left:2729.807720pt;}
.x14{left:2733.587720pt;}
.xe{left:2741.259720pt;}
.x21{left:2880.758387pt;}
.x1b{left:2889.693053pt;}
.x1c{left:3080.558387pt;}
.x12{left:3127.142387pt;}
}




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