
    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_8ca34ed685607c736de7e9e3.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_33afdb61d6a1e2f1f17385b4.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c84564789fd85a53bff245f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707031;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_4e6db0dcf1694be09d5b3665.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_429943118f99abe268284c5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752441;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);}
.v3{vertical-align:-79.919968px;}
.v4{vertical-align:-37.439985px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.159999px;}
.v5{vertical-align:30.239988px;}
.v2{vertical-align:57.599977px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.115312px;}
.ls2{letter-spacing:0.152578px;}
.ls4{letter-spacing:0.190195px;}
.ls6{letter-spacing:2139.464744px;}
.ls5{letter-spacing:2533.866186px;}
.ls3{letter-spacing:2714.758914px;}
.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:-128.702829px;}
.ws9{word-spacing:-117.093553px;}
.ws2{word-spacing:-78.177681px;}
.ws1{word-spacing:-78.062369px;}
.wsd{word-spacing:-70.256132px;}
.ws8{word-spacing:-62.449895px;}
.wse{word-spacing:-54.643658px;}
.ws5{word-spacing:-46.837421px;}
.ws4{word-spacing:-39.031184px;}
.ws3{word-spacing:-31.415142px;}
.ws6{word-spacing:-27.221749px;}
.wsc{word-spacing:-0.417830px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:1.476089px;}
.ws7{word-spacing:445.946137px;}
._5{margin-left:-42.037903px;}
._3{margin-left:-7.275548px;}
._6{margin-left:-2.579893px;}
._1{margin-left:-1.504863px;}
._0{width:1.292519px;}
._2{width:3.076333px;}
._8{width:322.685781px;}
._b{width:653.906981px;}
._7{width:1439.207250px;}
._a{width:1847.605661px;}
._9{width:2075.226600px;}
._4{width:2967.740788px;}
.fc7{color:rgb(0,128,0);}
.fc6{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(255,213,0);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:97.919961px;}
.fs9{font-size:112.319955px;}
.fs8{font-size:125.999950px;}
.fsa{font-size:140.399944px;}
.fs5{font-size:168.479933px;}
.fs7{font-size:196.559921px;}
.fsb{font-size:224.639910px;}
.fs0{font-size:238.319905px;}
.fs2{font-size:252.719899px;}
.fs6{font-size:280.799888px;}
.fs4{font-size:308.879876px;}
.fs3{font-size:378.719849px;}
.fsc{font-size:421.199832px;}
.fsd{font-size:462.959815px;}
.fse{font-size:561.599775px;}
.y25{bottom:-270.179714px;}
.y15{bottom:-269.999714px;}
.y59{bottom:-260.999717px;}
.yf{bottom:-47.159803px;}
.y3e{bottom:-43.199804px;}
.y2b{bottom:-10.079818px;}
.y2a{bottom:-4.859820px;}
.y0{bottom:0.000000px;}
.y60{bottom:0.540283px;}
.y1d{bottom:0.540286px;}
.y35{bottom:7.560180px;}
.y37{bottom:9.180182px;}
.y40{bottom:11.880196px;}
.yc{bottom:13.320137px;}
.ye{bottom:13.320167px;}
.y11{bottom:13.320197px;}
.y56{bottom:13.320323px;}
.y1a{bottom:14.760173px;}
.y5{bottom:17.280172px;}
.y7{bottom:19.980172px;}
.y24{bottom:19.980173px;}
.y46{bottom:24.480151px;}
.y55{bottom:72.240000px;}
.y2e{bottom:73.320328px;}
.y1b{bottom:73.500328px;}
.y5c{bottom:73.860327px;}
.y5e{bottom:81.420324px;}
.y38{bottom:82.320324px;}
.y2{bottom:82.500324px;}
.y57{bottom:85.560323px;}
.y4a{bottom:106.620314px;}
.y30{bottom:110.760313px;}
.y1e{bottom:110.940313px;}
.y5d{bottom:139.020301px;}
.y22{bottom:152.880296px;}
.y31{bottom:162.960292px;}
.y62{bottom:163.140292px;}
.y61{bottom:173.760287px;}
.y2f{bottom:175.740000px;}
.y1c{bottom:175.920000px;}
.y8{bottom:181.140285px;}
.y5f{bottom:184.920000px;}
.y21{bottom:186.540282px;}
.y43{bottom:200.940277px;}
.y20{bottom:220.200269px;}
.y54{bottom:231.180265px;}
.y14{bottom:236.220263px;}
.y52{bottom:248.100258px;}
.y1f{bottom:253.860255px;}
.y32{bottom:257.100254px;}
.y33{bottom:261.060253px;}
.y42{bottom:268.440250px;}
.y53{bottom:298.680238px;}
.y4b{bottom:304.980235px;}
.y51{bottom:315.600231px;}
.y12{bottom:323.520228px;}
.y9{bottom:326.220227px;}
.y41{bottom:335.760223px;}
.y13{bottom:344.400219px;}
.y10{bottom:385.980000px;}
.y3f{bottom:391.380000px;}
.y36{bottom:427.200000px;}
.y34{bottom:434.040000px;}
.y23{bottom:441.240000px;}
.y6{bottom:443.760000px;}
.y4{bottom:446.460000px;}
.y47{bottom:459.960173px;}
.yd{bottom:461.940000px;}
.y3d{bottom:470.580169px;}
.y45{bottom:491.460000px;}
.y5a{bottom:499.560157px;}
.y5b{bottom:502.980156px;}
.y44{bottom:519.720149px;}
.yb{bottom:537.720000px;}
.y3c{bottom:537.900142px;}
.ya{bottom:551.040137px;}
.y4d{bottom:565.440131px;}
.y4f{bottom:568.860129px;}
.y29{bottom:578.940125px;}
.y3b{bottom:605.400115px;}
.y48{bottom:616.560110px;}
.y4c{bottom:627.720106px;}
.y28{bottom:629.340105px;}
.y2d{bottom:633.120104px;}
.y4e{bottom:644.640099px;}
.y3a{bottom:672.720088px;}
.y49{bottom:705.660075px;}
.y19{bottom:711.060073px;}
.y39{bottom:721.500068px;}
.y2c{bottom:725.460067px;}
.y27{bottom:725.820067px;}
.y18{bottom:744.720059px;}
.y3{bottom:744.900059px;}
.y58{bottom:758.220054px;}
.y1{bottom:765.420051px;}
.y17{bottom:778.380046px;}
.y26{bottom:785.940043px;}
.y16{bottom:786.120043px;}
.y50{bottom:788.460042px;}
.h6{height:2.700000px;}
.h14{height:5.220000px;}
.h1e{height:7.560000px;}
.ha{height:10.080000px;}
.h1a{height:12.420000px;}
.h1b{height:19.260000px;}
.h17{height:26.640000px;}
.h18{height:27.720000px;}
.h1f{height:55.080000px;}
.hb{height:60.480000px;}
.h9{height:70.560000px;}
.hf{height:86.624965px;}
.h13{height:88.784964px;}
.h11{height:100.440000px;}
.h2{height:102.127459px;}
.h4{height:102.960000px;}
.h10{height:117.146203px;}
.h21{height:129.240000px;}
.h24{height:131.414010px;}
.h16{height:146.432754px;}
.h23{height:153.370486px;}
.h8{height:175.719305px;}
.h26{height:198.534296px;}
.he{height:205.005855px;}
.h28{height:228.774283px;}
.h1d{height:234.292406px;}
.h1{height:248.560213px;}
.h29{height:261.540000px;}
.h3{height:263.578957px;}
.h12{height:270.540000px;}
.h19{height:270.720000px;}
.h1c{height:291.892383px;}
.hc{height:292.865508px;}
.h27{height:308.520000px;}
.h7{height:322.152059px;}
.h15{height:354.240000px;}
.hd{height:354.420000px;}
.h5{height:394.992967px;}
.h20{height:439.298262px;}
.h22{height:482.852619px;}
.h25{height:585.731016px;}
.h0{height:892.500000px;}
.wa{width:48.600000px;}
.w8{width:57.600000px;}
.w5{width:84.420000px;}
.w4{width:122.580000px;}
.w3{width:366.614400px;}
.w7{width:370.034400px;}
.w6{width:410.580000px;}
.wc{width:411.120000px;}
.wb{width:419.220000px;}
.w2{width:464.894400px;}
.we{width:525.014400px;}
.wd{width:589.814400px;}
.w9{width:631.980000px;}
.w1{width:979.200000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:12.765925px;}
.x1{left:21.945891px;}
.x2a{left:23.025891px;}
.x3{left:37.245885px;}
.x2c{left:39.225884px;}
.x13{left:40.485884px;}
.x11{left:45.900775px;}
.x14{left:63.885874px;}
.x41{left:98.805960px;}
.x33{left:105.466458px;}
.x4{left:111.585960px;}
.x35{left:120.946452px;}
.x45{left:133.546447px;}
.x40{left:139.305844px;}
.x32{left:147.406441px;}
.x7{left:152.445839px;}
.x2f{left:160.726436px;}
.x46{left:200.326420px;}
.x30{left:203.026419px;}
.x34{left:211.486415px;}
.x5{left:221.746411px;}
.x48{left:235.426406px;}
.x3e{left:241.186404px;}
.x37{left:246.586401px;}
.x31{left:251.446399px;}
.x10{left:266.745600px;}
.xa{left:275.385600px;}
.x2d{left:281.865787px;}
.x3d{left:298.966380px;}
.x36{left:305.806378px;}
.x43{left:308.146377px;}
.x12{left:313.906374px;}
.x3a{left:321.286371px;}
.x17{left:330.106368px;}
.x1c{left:371.506351px;}
.x1b{left:372.946351px;}
.x16{left:378.886348px;}
.xb{left:397.965600px;}
.x15{left:399.765600px;}
.x44{left:401.206340px;}
.x27{left:458.986316px;}
.x6{left:463.126315px;}
.x25{left:466.546313px;}
.xc{left:482.385600px;}
.x28{left:491.926303px;}
.x26{left:500.926300px;}
.x24{left:527.566289px;}
.x23{left:538.546285px;}
.x29{left:614.686254px;}
.x1d{left:653.565600px;}
.x42{left:656.806237px;}
.x2b{left:673.185600px;}
.xe{left:692.806223px;}
.x39{left:705.406218px;}
.xf{left:734.566206px;}
.x3f{left:737.985600px;}
.x47{left:741.406203px;}
.x1e{left:751.305600px;}
.x3b{left:759.046196px;}
.x38{left:768.766192px;}
.x3c{left:781.906187px;}
.x8{left:798.105600px;}
.x22{left:824.566170px;}
.x20{left:885.226146px;}
.xd{left:892.965600px;}
.x9{left:896.385600px;}
.x2e{left:898.186141px;}
.x21{left:932.386127px;}
.x1f{left:939.586124px;}
.x18{left:1037.326085px;}
.x19{left:1049.926080px;}
.x1a{left:1068.106073px;}
@media print{
.v3{vertical-align:-71.039972pt;}
.v4{vertical-align:-33.279987pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.919999pt;}
.v5{vertical-align:26.879989pt;}
.v2{vertical-align:51.199980pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.102500pt;}
.ls2{letter-spacing:0.135625pt;}
.ls4{letter-spacing:0.169062pt;}
.ls6{letter-spacing:1901.746439pt;}
.ls5{letter-spacing:2252.325499pt;}
.ls3{letter-spacing:2413.119035pt;}
.wsa{word-spacing:-114.402514pt;}
.ws9{word-spacing:-104.083158pt;}
.ws2{word-spacing:-69.491272pt;}
.ws1{word-spacing:-69.388772pt;}
.wsd{word-spacing:-62.449895pt;}
.ws8{word-spacing:-55.511018pt;}
.wse{word-spacing:-48.572141pt;}
.ws5{word-spacing:-41.633263pt;}
.ws4{word-spacing:-34.694386pt;}
.ws3{word-spacing:-27.924571pt;}
.ws6{word-spacing:-24.197110pt;}
.wsc{word-spacing:-0.371405pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:1.312079pt;}
.ws7{word-spacing:396.396567pt;}
._5{margin-left:-37.367025pt;}
._3{margin-left:-6.467154pt;}
._6{margin-left:-2.293239pt;}
._1{margin-left:-1.337656pt;}
._0{width:1.148906pt;}
._2{width:2.734518pt;}
._8{width:286.831805pt;}
._b{width:581.250650pt;}
._7{width:1279.295333pt;}
._a{width:1642.316143pt;}
._9{width:1844.645867pt;}
._4{width:2637.991812pt;}
.fs1{font-size:87.039965pt;}
.fs9{font-size:99.839960pt;}
.fs8{font-size:111.999955pt;}
.fsa{font-size:124.799950pt;}
.fs5{font-size:149.759940pt;}
.fs7{font-size:174.719930pt;}
.fsb{font-size:199.679920pt;}
.fs0{font-size:211.839915pt;}
.fs2{font-size:224.639910pt;}
.fs6{font-size:249.599900pt;}
.fs4{font-size:274.559890pt;}
.fs3{font-size:336.639865pt;}
.fsc{font-size:374.399850pt;}
.fsd{font-size:411.519835pt;}
.fse{font-size:499.199800pt;}
.y25{bottom:-240.159745pt;}
.y15{bottom:-239.999745pt;}
.y59{bottom:-231.999749pt;}
.yf{bottom:-41.919825pt;}
.y3e{bottom:-38.399826pt;}
.y2b{bottom:-8.959838pt;}
.y2a{bottom:-4.319840pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:0.480251pt;}
.y1d{bottom:0.480255pt;}
.y35{bottom:6.720160pt;}
.y37{bottom:8.160162pt;}
.y40{bottom:10.560174pt;}
.yc{bottom:11.840121pt;}
.ye{bottom:11.840148pt;}
.y11{bottom:11.840175pt;}
.y56{bottom:11.840287pt;}
.y1a{bottom:13.120153pt;}
.y5{bottom:15.360152pt;}
.y7{bottom:17.760152pt;}
.y24{bottom:17.760153pt;}
.y46{bottom:21.760134pt;}
.y55{bottom:64.213333pt;}
.y2e{bottom:65.173625pt;}
.y1b{bottom:65.333625pt;}
.y5c{bottom:65.653624pt;}
.y5e{bottom:72.373622pt;}
.y38{bottom:73.173621pt;}
.y2{bottom:73.333621pt;}
.y57{bottom:76.053620pt;}
.y4a{bottom:94.773613pt;}
.y30{bottom:98.453611pt;}
.y1e{bottom:98.613611pt;}
.y5d{bottom:123.573601pt;}
.y22{bottom:135.893596pt;}
.y31{bottom:144.853593pt;}
.y62{bottom:145.013593pt;}
.y61{bottom:154.453589pt;}
.y2f{bottom:156.213333pt;}
.y1c{bottom:156.373333pt;}
.y8{bottom:161.013586pt;}
.y5f{bottom:164.373333pt;}
.y21{bottom:165.813584pt;}
.y43{bottom:178.613579pt;}
.y20{bottom:195.733572pt;}
.y54{bottom:205.493568pt;}
.y14{bottom:209.973567pt;}
.y52{bottom:220.533562pt;}
.y1f{bottom:225.653560pt;}
.y32{bottom:228.533559pt;}
.y33{bottom:232.053558pt;}
.y42{bottom:238.613555pt;}
.y53{bottom:265.493544pt;}
.y4b{bottom:271.093542pt;}
.y51{bottom:280.533538pt;}
.y12{bottom:287.573536pt;}
.y9{bottom:289.973535pt;}
.y41{bottom:298.453531pt;}
.y13{bottom:306.133528pt;}
.y10{bottom:343.093333pt;}
.y3f{bottom:347.893333pt;}
.y36{bottom:379.733333pt;}
.y34{bottom:385.813333pt;}
.y23{bottom:392.213333pt;}
.y6{bottom:394.453333pt;}
.y4{bottom:396.853333pt;}
.y47{bottom:408.853487pt;}
.yd{bottom:410.613333pt;}
.y3d{bottom:418.293483pt;}
.y45{bottom:436.853333pt;}
.y5a{bottom:444.053473pt;}
.y5b{bottom:447.093472pt;}
.y44{bottom:461.973466pt;}
.yb{bottom:477.973333pt;}
.y3c{bottom:478.133459pt;}
.ya{bottom:489.813455pt;}
.y4d{bottom:502.613450pt;}
.y4f{bottom:505.653448pt;}
.y29{bottom:514.613445pt;}
.y3b{bottom:538.133435pt;}
.y48{bottom:548.053431pt;}
.y4c{bottom:557.973427pt;}
.y28{bottom:559.413427pt;}
.y2d{bottom:562.773426pt;}
.y4e{bottom:573.013421pt;}
.y3a{bottom:597.973411pt;}
.y49{bottom:627.253400pt;}
.y19{bottom:632.053398pt;}
.y39{bottom:641.333394pt;}
.y2c{bottom:644.853393pt;}
.y27{bottom:645.173393pt;}
.y18{bottom:661.973386pt;}
.y3{bottom:662.133386pt;}
.y58{bottom:673.973381pt;}
.y1{bottom:680.373379pt;}
.y17{bottom:691.893374pt;}
.y26{bottom:698.613371pt;}
.y16{bottom:698.773371pt;}
.y50{bottom:700.853370pt;}
.h6{height:2.400000pt;}
.h14{height:4.640000pt;}
.h1e{height:6.720000pt;}
.ha{height:8.960000pt;}
.h1a{height:11.040000pt;}
.h1b{height:17.120000pt;}
.h17{height:23.680000pt;}
.h18{height:24.640000pt;}
.h1f{height:48.960000pt;}
.hb{height:53.760000pt;}
.h9{height:62.720000pt;}
.hf{height:76.999969pt;}
.h13{height:78.919968pt;}
.h11{height:89.280000pt;}
.h2{height:90.779964pt;}
.h4{height:91.520000pt;}
.h10{height:104.129958pt;}
.h21{height:114.880000pt;}
.h24{height:116.812453pt;}
.h16{height:130.162448pt;}
.h23{height:136.329320pt;}
.h8{height:156.194938pt;}
.h26{height:176.474929pt;}
.he{height:182.227427pt;}
.h28{height:203.354919pt;}
.h1d{height:208.259917pt;}
.h1{height:220.942412pt;}
.h29{height:232.480000pt;}
.h3{height:234.292406pt;}
.h12{height:240.480000pt;}
.h19{height:240.640000pt;}
.h1c{height:259.459896pt;}
.hc{height:260.324896pt;}
.h27{height:274.240000pt;}
.h7{height:286.357385pt;}
.h15{height:314.880000pt;}
.hd{height:315.040000pt;}
.h5{height:351.104860pt;}
.h20{height:390.487344pt;}
.h22{height:429.202328pt;}
.h25{height:520.649792pt;}
.h0{height:793.333333pt;}
.wa{width:43.200000pt;}
.w8{width:51.200000pt;}
.w5{width:75.040000pt;}
.w4{width:108.960000pt;}
.w3{width:325.879467pt;}
.w7{width:328.919467pt;}
.w6{width:364.960000pt;}
.wc{width:365.440000pt;}
.wb{width:372.640000pt;}
.w2{width:413.239467pt;}
.we{width:466.679467pt;}
.wd{width:524.279467pt;}
.w9{width:561.760000pt;}
.w1{width:870.400000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:11.347489pt;}
.x1{left:19.507459pt;}
.x2a{left:20.467458pt;}
.x3{left:33.107453pt;}
.x2c{left:34.867453pt;}
.x13{left:35.987452pt;}
.x11{left:40.800689pt;}
.x14{left:56.787444pt;}
.x41{left:87.827520pt;}
.x33{left:93.747963pt;}
.x4{left:99.187520pt;}
.x35{left:107.507957pt;}
.x45{left:118.707953pt;}
.x40{left:123.827417pt;}
.x32{left:131.027948pt;}
.x7{left:135.507412pt;}
.x2f{left:142.867943pt;}
.x46{left:178.067929pt;}
.x30{left:180.467928pt;}
.x34{left:187.987925pt;}
.x5{left:197.107921pt;}
.x48{left:209.267916pt;}
.x3e{left:214.387914pt;}
.x37{left:219.187912pt;}
.x31{left:223.507911pt;}
.x10{left:237.107200pt;}
.xa{left:244.787200pt;}
.x2d{left:250.547366pt;}
.x3d{left:265.747894pt;}
.x36{left:271.827891pt;}
.x43{left:273.907890pt;}
.x12{left:279.027888pt;}
.x3a{left:285.587886pt;}
.x17{left:293.427883pt;}
.x1c{left:330.227868pt;}
.x1b{left:331.507867pt;}
.x16{left:336.787865pt;}
.xb{left:353.747200pt;}
.x15{left:355.347200pt;}
.x44{left:356.627857pt;}
.x27{left:407.987837pt;}
.x6{left:411.667835pt;}
.x25{left:414.707834pt;}
.xc{left:428.787200pt;}
.x28{left:437.267825pt;}
.x26{left:445.267822pt;}
.x24{left:468.947812pt;}
.x23{left:478.707809pt;}
.x29{left:546.387781pt;}
.x1d{left:580.947200pt;}
.x42{left:583.827766pt;}
.x2b{left:598.387200pt;}
.xe{left:615.827754pt;}
.x39{left:627.027749pt;}
.xf{left:652.947739pt;}
.x3f{left:655.987200pt;}
.x47{left:659.027736pt;}
.x1e{left:667.827200pt;}
.x3b{left:674.707730pt;}
.x38{left:683.347727pt;}
.x3c{left:695.027722pt;}
.x8{left:709.427200pt;}
.x22{left:732.947707pt;}
.x20{left:786.867685pt;}
.xd{left:793.747200pt;}
.x9{left:796.787200pt;}
.x2e{left:798.387681pt;}
.x21{left:828.787668pt;}
.x1f{left:835.187666pt;}
.x18{left:922.067631pt;}
.x19{left:933.267627pt;}
.x1a{left:949.427620pt;}
}




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