
    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_94c526483e2d2734b4b367ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666000;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_6c70eaf5d5b3eef7a1b0922d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.998000;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_5a897f2c3f22cc1247f69e6f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.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);}
.m2{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);}
.v2{vertical-align:-75.552000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.594000px;}
.v6{vertical-align:11.454000px;}
.v5{vertical-align:28.990041px;}
.v3{vertical-align:75.552000px;}
.v1{vertical-align:108.810000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.988426px;}
.ls1{letter-spacing:2.992764px;}
.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;}
}
.ws7{word-spacing:-83.953968px;}
.ws2{word-spacing:-58.767576px;}
.ws14{word-spacing:0.000000px;}
.ws4{word-spacing:6.662381px;}
.ws5{word-spacing:6.870580px;}
.ws1{word-spacing:9.594739px;}
.ws3{word-spacing:9.894575px;}
.ws0{word-spacing:17.100488px;}
.ws13{word-spacing:26.085697px;}
.wsb{word-spacing:34.406347px;}
.ws10{word-spacing:34.754380px;}
.wsc{word-spacing:39.263628px;}
.wsd{word-spacing:39.268460px;}
.ws11{word-spacing:39.660794px;}
.ws12{word-spacing:39.665675px;}
.wsa{word-spacing:908.630696px;}
.wsf{word-spacing:917.821841px;}
.ws9{word-spacing:958.544456px;}
.wse{word-spacing:968.240499px;}
.ws6{word-spacing:5378.348302px;}
.ws8{word-spacing:5992.648160px;}
._6{margin-left:-16.239553px;}
._0{margin-left:-12.954915px;}
._13{margin-left:-8.776390px;}
._3{margin-left:-7.495890px;}
._7{margin-left:-6.042962px;}
._5{margin-left:-4.996786px;}
._1b{margin-left:-2.127919px;}
._a{margin-left:-1.082082px;}
._4{width:2.693093px;}
._8{width:9.294904px;}
._2{width:13.473112px;}
._f{width:28.886802px;}
._e{width:34.406347px;}
._12{width:57.202639px;}
._11{width:141.210717px;}
._1a{width:142.555420px;}
._1{width:161.159143px;}
._15{width:163.291954px;}
._10{width:253.880833px;}
._19{width:257.089169px;}
._d{width:315.377651px;}
._18{width:318.567816px;}
._c{width:852.445236px;}
._17{width:861.068044px;}
._b{width:964.827199px;}
._16{width:974.586794px;}
._9{width:1014.740960px;}
._14{width:1025.005451px;}
._1c{width:4995.281543px;}
._1d{width:6640.477399px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:23.910600px;}
.fs8{font-size:123.690840px;}
.fsb{font-size:124.942020px;}
.fs4{font-size:145.738800px;}
.fs6{font-size:176.701200px;}
.fs9{font-size:178.488600px;}
.fs5{font-size:208.199400px;}
.fs3{font-size:209.884200px;}
.fs7{font-size:254.449728px;}
.fsa{font-size:257.023584px;}
.fs2{font-size:299.835600px;}
.fs1{font-size:518.196600px;}
.y0{bottom:0.000000px;}
.y26{bottom:18.923042px;}
.y51{bottom:19.114456px;}
.y5e{bottom:27.111000px;}
.y1{bottom:83.508000px;}
.y2{bottom:93.969000px;}
.y25{bottom:94.090076px;}
.y50{bottom:95.041833px;}
.y27{bottom:128.533005px;}
.y52{bottom:129.833165px;}
.y34{bottom:268.528192px;}
.y28{bottom:274.128170px;}
.y53{bottom:276.901081px;}
.y2d{bottom:288.752197px;}
.y32{bottom:306.180733px;}
.y58{bottom:309.277868px;}
.y29{bottom:419.723334px;}
.y54{bottom:423.968996px;}
.y2a{bottom:565.318499px;}
.y55{bottom:571.036911px;}
.y5d{bottom:579.003000px;}
.y2b{bottom:710.913664px;}
.y56{bottom:718.104826px;}
.y2c{bottom:856.508828px;}
.y31{bottom:862.530103px;}
.y57{bottom:865.172742px;}
.y30{bottom:869.777613px;}
.y5c{bottom:871.254924px;}
.y5b{bottom:878.575745px;}
.y2f{bottom:914.877834px;}
.y2e{bottom:922.125344px;}
.y5a{bottom:924.132172px;}
.y59{bottom:931.452993px;}
.y1d{bottom:1041.147167px;}
.y48{bottom:1051.678767px;}
.y1c{bottom:1116.314201px;}
.y47{bottom:1127.606144px;}
.y1e{bottom:1150.757130px;}
.y49{bottom:1162.397477px;}
.y24{bottom:1307.007447px;}
.y1f{bottom:1313.014927px;}
.y4f{bottom:1320.228325px;}
.y4a{bottom:1326.296574px;}
.y20{bottom:1475.272725px;}
.y4b{bottom:1490.195671px;}
.y33{bottom:1549.319974px;}
.y35{bottom:1549.327520px;}
.y21{bottom:1637.530522px;}
.y4c{bottom:1654.094768px;}
.y22{bottom:1799.788320px;}
.y4d{bottom:1817.993865px;}
.y23{bottom:1962.046118px;}
.y4e{bottom:1981.892962px;}
.y15{bottom:2063.371291px;}
.y40{bottom:2084.243078px;}
.y14{bottom:2138.538325px;}
.y3f{bottom:2160.170456px;}
.y1b{bottom:2329.231571px;}
.y16{bottom:2335.558781px;}
.y46{bottom:2352.792637px;}
.y41{bottom:2359.183849px;}
.y17{bottom:2498.197606px;}
.ya{bottom:2500.313907px;}
.y42{bottom:2523.467827px;}
.y18{bottom:2660.836431px;}
.y43{bottom:2687.751806px;}
.y19{bottom:2823.475256px;}
.y44{bottom:2852.035785px;}
.y1a{bottom:2986.114081px;}
.y45{bottom:3016.319763px;}
.yc{bottom:3085.595416px;}
.y37{bottom:3116.807390px;}
.yb{bottom:3160.762450px;}
.y36{bottom:3192.734767px;}
.yd{bottom:3233.919103px;}
.y38{bottom:3266.631428px;}
.y13{bottom:3351.455696px;}
.y3e{bottom:3385.356948px;}
.ye{bottom:3388.802923px;}
.y39{bottom:3423.081957px;}
.yf{bottom:3543.686744px;}
.y9{bottom:3549.483000px;}
.y3a{bottom:3579.532486px;}
.y8{bottom:3693.516000px;}
.y10{bottom:3698.570564px;}
.y3b{bottom:3735.983016px;}
.y11{bottom:3853.454385px;}
.y3c{bottom:3892.433545px;}
.y12{bottom:4008.338205px;}
.y3d{bottom:4048.884074px;}
.y7{bottom:4361.193000px;}
.y6{bottom:4533.265500px;}
.y5{bottom:4587.217500px;}
.y4{bottom:4745.143500px;}
.y3{bottom:4863.880500px;}
.h2{height:15.924460px;}
.h5{height:109.158361px;}
.h9{height:164.155415px;}
.he{height:165.815909px;}
.h11{height:167.395351px;}
.hb{height:193.145455px;}
.h10{height:195.099195px;}
.h7{height:214.682290px;}
.h6{height:221.276290px;}
.ha{height:236.383797px;}
.hf{height:238.774910px;}
.h4{height:266.013266px;}
.h3{height:388.129253px;}
.h8{height:1027.778112px;}
.hc{height:1028.065252px;}
.hd{height:1038.464524px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w2{width:1728.055658px;}
.w3{width:1745.535600px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x22{left:42.449307px;}
.x2b{left:62.556289px;}
.x2a{left:93.478999px;}
.x26{left:104.660872px;}
.x45{left:105.719556px;}
.x29{left:121.571729px;}
.x48{left:122.801473px;}
.x25{left:135.583582px;}
.x44{left:136.955061px;}
.x28{left:177.757188px;}
.x47{left:179.555270px;}
.x23{left:209.473673px;}
.x42{left:211.592579px;}
.x2c{left:297.469491px;}
.x49{left:300.478508px;}
.x38{left:323.612295px;}
.x54{left:326.885757px;}
.x2d{left:344.190047px;}
.x4a{left:347.671661px;}
.x2e{left:495.341760px;}
.x4b{left:500.352331px;}
.x1f{left:560.730000px;}
.x2f{left:572.622651px;}
.x4c{left:578.414948px;}
.x30{left:600.706753px;}
.x4d{left:606.783131px;}
.x31{left:640.007240px;}
.x4e{left:646.481157px;}
.x27{left:691.506598px;}
.x46{left:698.501451px;}
.x24{left:700.171525px;}
.x43{left:707.254027px;}
.x32{left:791.158953px;}
.x4f{left:799.161827px;}
.x1b{left:821.127000px;}
.x33{left:861.019774px;}
.x59{left:864.963000px;}
.x50{left:869.729317px;}
.x34{left:889.103876px;}
.x51{left:898.097500px;}
.x21{left:907.677000px;}
.x35{left:927.972963px;}
.x52{left:937.359763px;}
.x1d{left:959.371500px;}
.x1e{left:1009.321500px;}
.x1c{left:1021.993500px;}
.x3e{left:1086.892166px;}
.x39{left:1089.100931px;}
.x55{left:1096.770941px;}
.x36{left:1100.036619px;}
.x3f{left:1111.503503px;}
.x3a{left:1113.712268px;}
.x56{left:1121.631231px;}
.x37{left:1127.020653px;}
.x3b{left:1128.595547px;}
.x57{left:1136.665060px;}
.x53{left:1138.420896px;}
.x40{left:1190.164872px;}
.x3c{left:1192.373637px;}
.x58{left:1201.088289px;}
.x20{left:1665.058500px;}
.x41{left:1786.468799px;}
.x3d{left:1795.186354px;}
.x1{left:3380.863500px;}
.x2{left:3389.830500px;}
.x3{left:3401.785500px;}
.x4{left:3410.752500px;}
.x5{left:3412.867500px;}
.x6{left:3420.340500px;}
.x7{left:3427.812000px;}
.x8{left:3435.285000px;}
.x9{left:3442.756500px;}
.xa{left:3444.871500px;}
.xb{left:3452.344500px;}
.xc{left:3459.816000px;}
.xd{left:3467.289000px;}
.xe{left:3474.760500px;}
.xf{left:3476.875500px;}
.x10{left:3484.348500px;}
.x11{left:3491.820000px;}
.x12{left:3499.293000px;}
.x13{left:3506.764500px;}
.x14{left:3508.879500px;}
.x15{left:3522.330000px;}
.x16{left:3538.767000px;}
.x17{left:3540.883500px;}
.x18{left:3551.344500px;}
.x19{left:3560.311500px;}
.x1a{left:3570.772500px;}
@media print{
.v2{vertical-align:-67.157333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.861333pt;}
.v6{vertical-align:10.181333pt;}
.v5{vertical-align:25.768925pt;}
.v3{vertical-align:67.157333pt;}
.v1{vertical-align:96.720000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.656379pt;}
.ls1{letter-spacing:2.660235pt;}
.ws7{word-spacing:-74.625749pt;}
.ws2{word-spacing:-52.237845pt;}
.ws14{word-spacing:0.000000pt;}
.ws4{word-spacing:5.922116pt;}
.ws5{word-spacing:6.107182pt;}
.ws1{word-spacing:8.528657pt;}
.ws3{word-spacing:8.795178pt;}
.ws0{word-spacing:15.200434pt;}
.ws13{word-spacing:23.187286pt;}
.wsb{word-spacing:30.583419pt;}
.ws10{word-spacing:30.892782pt;}
.wsc{word-spacing:34.901003pt;}
.wsd{word-spacing:34.905297pt;}
.ws11{word-spacing:35.254039pt;}
.ws12{word-spacing:35.258378pt;}
.wsa{word-spacing:807.671729pt;}
.wsf{word-spacing:815.841637pt;}
.ws9{word-spacing:852.039517pt;}
.wse{word-spacing:860.658221pt;}
.ws6{word-spacing:4780.754046pt;}
.ws8{word-spacing:5326.798365pt;}
._6{margin-left:-14.435158pt;}
._0{margin-left:-11.515480pt;}
._13{margin-left:-7.801235pt;}
._3{margin-left:-6.663013pt;}
._7{margin-left:-5.371522pt;}
._5{margin-left:-4.441587pt;}
._1b{margin-left:-1.891483pt;}
._a{margin-left:-0.961850pt;}
._4{width:2.393861pt;}
._8{width:8.262137pt;}
._2{width:11.976099pt;}
._f{width:25.677158pt;}
._e{width:30.583419pt;}
._12{width:50.846790pt;}
._11{width:125.520637pt;}
._1a{width:126.715929pt;}
._1{width:143.252571pt;}
._15{width:145.148403pt;}
._10{width:225.671852pt;}
._19{width:228.523706pt;}
._d{width:280.335690pt;}
._18{width:283.171392pt;}
._c{width:757.729099pt;}
._17{width:765.393817pt;}
._b{width:857.624177pt;}
._16{width:866.299372pt;}
._9{width:901.991964pt;}
._14{width:911.115957pt;}
._1c{width:4440.250260pt;}
._1d{width:5902.646577pt;}
.fs0{font-size:21.253867pt;}
.fs8{font-size:109.947413pt;}
.fsb{font-size:111.059573pt;}
.fs4{font-size:129.545600pt;}
.fs6{font-size:157.067733pt;}
.fs9{font-size:158.656533pt;}
.fs5{font-size:185.066133pt;}
.fs3{font-size:186.563733pt;}
.fs7{font-size:226.177536pt;}
.fsa{font-size:228.465408pt;}
.fs2{font-size:266.520533pt;}
.fs1{font-size:460.619200pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:16.820482pt;}
.y51{bottom:16.990627pt;}
.y5e{bottom:24.098667pt;}
.y1{bottom:74.229333pt;}
.y2{bottom:83.528000pt;}
.y25{bottom:83.635623pt;}
.y50{bottom:84.481629pt;}
.y27{bottom:114.251560pt;}
.y52{bottom:115.407258pt;}
.y34{bottom:238.691726pt;}
.y28{bottom:243.669484pt;}
.y53{bottom:246.134294pt;}
.y2d{bottom:256.668619pt;}
.y32{bottom:272.160651pt;}
.y58{bottom:274.913660pt;}
.y29{bottom:373.087408pt;}
.y54{bottom:376.861330pt;}
.y2a{bottom:502.505332pt;}
.y55{bottom:507.588365pt;}
.y5d{bottom:514.669333pt;}
.y2b{bottom:631.923257pt;}
.y56{bottom:638.315401pt;}
.y2c{bottom:761.341181pt;}
.y31{bottom:766.693425pt;}
.y57{bottom:769.042437pt;}
.y30{bottom:773.135656pt;}
.y5c{bottom:774.448821pt;}
.y5b{bottom:780.956218pt;}
.y2f{bottom:813.224741pt;}
.y2e{bottom:819.666972pt;}
.y5a{bottom:821.450819pt;}
.y59{bottom:827.958216pt;}
.y1d{bottom:925.464148pt;}
.y48{bottom:934.825571pt;}
.y1c{bottom:992.279289pt;}
.y47{bottom:1002.316573pt;}
.y1e{bottom:1022.895226pt;}
.y49{bottom:1033.242202pt;}
.y24{bottom:1161.784397pt;}
.y1f{bottom:1167.124380pt;}
.y4f{bottom:1173.536289pt;}
.y4a{bottom:1178.930288pt;}
.y20{bottom:1311.353533pt;}
.y4b{bottom:1324.618374pt;}
.y33{bottom:1377.173310pt;}
.y35{bottom:1377.180018pt;}
.y21{bottom:1455.582687pt;}
.y4c{bottom:1470.306460pt;}
.y22{bottom:1599.811840pt;}
.y4d{bottom:1615.994547pt;}
.y23{bottom:1744.040993pt;}
.y4e{bottom:1761.682633pt;}
.y15{bottom:1834.107814pt;}
.y40{bottom:1852.660514pt;}
.y14{bottom:1900.922956pt;}
.y3f{bottom:1920.151516pt;}
.y1b{bottom:2070.428063pt;}
.y16{bottom:2076.052250pt;}
.y46{bottom:2091.371233pt;}
.y41{bottom:2097.052310pt;}
.y17{bottom:2220.620094pt;}
.ya{bottom:2222.501250pt;}
.y42{bottom:2243.082513pt;}
.y18{bottom:2365.187939pt;}
.y43{bottom:2389.112716pt;}
.y19{bottom:2509.755783pt;}
.y44{bottom:2535.142920pt;}
.y1a{bottom:2654.323627pt;}
.y45{bottom:2681.173123pt;}
.yc{bottom:2742.751481pt;}
.y37{bottom:2770.495458pt;}
.yb{bottom:2809.566622pt;}
.y36{bottom:2837.986460pt;}
.yd{bottom:2874.594758pt;}
.y38{bottom:2903.672380pt;}
.y13{bottom:2979.071730pt;}
.y3e{bottom:3009.206176pt;}
.ye{bottom:3012.269265pt;}
.y39{bottom:3042.739517pt;}
.yf{bottom:3149.943772pt;}
.y9{bottom:3155.096000pt;}
.y3a{bottom:3181.806655pt;}
.y8{bottom:3283.125333pt;}
.y10{bottom:3287.618280pt;}
.y3b{bottom:3320.873792pt;}
.y11{bottom:3425.292787pt;}
.y3c{bottom:3459.940929pt;}
.y12{bottom:3562.967294pt;}
.y3d{bottom:3599.008066pt;}
.y7{bottom:3876.616000pt;}
.y6{bottom:4029.569333pt;}
.y5{bottom:4077.526667pt;}
.y4{bottom:4217.905333pt;}
.y3{bottom:4323.449333pt;}
.h2{height:14.155075pt;}
.h5{height:97.029654pt;}
.h9{height:145.915924pt;}
.he{height:147.391919pt;}
.h11{height:148.795867pt;}
.hb{height:171.684849pt;}
.h10{height:173.421507pt;}
.h7{height:190.828702pt;}
.h6{height:196.690035pt;}
.ha{height:210.118931pt;}
.hf{height:212.244364pt;}
.h4{height:236.456236pt;}
.h3{height:345.003781pt;}
.h8{height:913.580544pt;}
.hc{height:913.835779pt;}
.hd{height:923.079577pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w2{width:1536.049474pt;}
.w3{width:1551.587200pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x22{left:37.732717pt;}
.x2b{left:55.605590pt;}
.x2a{left:83.092443pt;}
.x26{left:93.031886pt;}
.x45{left:93.972939pt;}
.x29{left:108.063759pt;}
.x48{left:109.156865pt;}
.x25{left:120.518739pt;}
.x44{left:121.737832pt;}
.x28{left:158.006390pt;}
.x47{left:159.604685pt;}
.x23{left:186.198821pt;}
.x42{left:188.082293pt;}
.x2c{left:264.417325pt;}
.x49{left:267.092007pt;}
.x38{left:287.655373pt;}
.x54{left:290.565117pt;}
.x2d{left:305.946708pt;}
.x4a{left:309.041476pt;}
.x2e{left:440.303787pt;}
.x4b{left:444.757627pt;}
.x1f{left:498.426667pt;}
.x2f{left:508.997912pt;}
.x4c{left:514.146620pt;}
.x30{left:533.961558pt;}
.x4d{left:539.362783pt;}
.x31{left:568.895324pt;}
.x4e{left:574.649917pt;}
.x27{left:614.672532pt;}
.x46{left:620.890179pt;}
.x24{left:622.374689pt;}
.x43{left:628.670246pt;}
.x32{left:703.252403pt;}
.x4f{left:710.366069pt;}
.x1b{left:729.890667pt;}
.x33{left:765.350910pt;}
.x59{left:768.856000pt;}
.x50{left:773.092726pt;}
.x34{left:790.314556pt;}
.x51{left:798.308889pt;}
.x21{left:806.824000pt;}
.x35{left:824.864856pt;}
.x52{left:833.208678pt;}
.x1d{left:852.774667pt;}
.x1e{left:897.174667pt;}
.x1c{left:908.438667pt;}
.x3e{left:966.126370pt;}
.x39{left:968.089716pt;}
.x55{left:974.907503pt;}
.x36{left:977.810328pt;}
.x3f{left:988.003113pt;}
.x3a{left:989.966460pt;}
.x56{left:997.005538pt;}
.x37{left:1001.796136pt;}
.x3b{left:1003.196042pt;}
.x57{left:1010.368943pt;}
.x53{left:1011.929686pt;}
.x40{left:1057.924330pt;}
.x3c{left:1059.887677pt;}
.x58{left:1067.634035pt;}
.x20{left:1480.052000pt;}
.x41{left:1587.972266pt;}
.x3d{left:1595.721204pt;}
.x1{left:3005.212000pt;}
.x2{left:3013.182667pt;}
.x3{left:3023.809333pt;}
.x4{left:3031.780000pt;}
.x5{left:3033.660000pt;}
.x6{left:3040.302667pt;}
.x7{left:3046.944000pt;}
.x8{left:3053.586667pt;}
.x9{left:3060.228000pt;}
.xa{left:3062.108000pt;}
.xb{left:3068.750667pt;}
.xc{left:3075.392000pt;}
.xd{left:3082.034667pt;}
.xe{left:3088.676000pt;}
.xf{left:3090.556000pt;}
.x10{left:3097.198667pt;}
.x11{left:3103.840000pt;}
.x12{left:3110.482667pt;}
.x13{left:3117.124000pt;}
.x14{left:3119.004000pt;}
.x15{left:3130.960000pt;}
.x16{left:3145.570667pt;}
.x17{left:3147.452000pt;}
.x18{left:3156.750667pt;}
.x19{left:3164.721333pt;}
.x1a{left:3174.020000pt;}
}




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