
    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_6c86be1d0b8021cab5524b65.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_1cbc3c1e60a69702f471cf5d.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ce76edfa4f4a76c8927cd90e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_00ac501ac833914b3b858398.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_ca1a51e671d0ff46d51effc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_986831a5f6f5f6eb20aacce0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_24b521f80a6101caa4aee066.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4f78222818d0a88900e806aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d4ad16bf5eb366e3ed18d68d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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);}
.v2{vertical-align:-23.754000px;}
.v4{vertical-align:-10.668000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.242000px;}
.v3{vertical-align:44.280000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:2.290911px;}
.ls5{letter-spacing:2.356366px;}
.ls2{letter-spacing:2.880002px;}
.ls0{letter-spacing:2.986053px;}
.ls6{letter-spacing:7.156265px;}
.ls3{letter-spacing:18.196379px;}
.lsa{letter-spacing:19.243652px;}
.lsb{letter-spacing:19.905275px;}
.lsc{letter-spacing:19.965050px;}
.ls9{letter-spacing:24.741839px;}
.ls4{letter-spacing:34.089183px;}
.ls7{letter-spacing:1042.233596px;}
.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;}
}
.ws1e{word-spacing:-42.637126px;}
.ws36{word-spacing:-18.183288px;}
.ws22{word-spacing:-3.652367px;}
.ws1c{word-spacing:-3.194184px;}
.ws37{word-spacing:-3.128730px;}
.ws34{word-spacing:-2.539638px;}
.ws7{word-spacing:-2.081456px;}
.ws29{word-spacing:-1.819638px;}
.ws21{word-spacing:-1.296001px;}
.ws1f{word-spacing:-1.230546px;}
.ws1b{word-spacing:-0.837819px;}
.ws17{word-spacing:-0.706910px;}
.wsa{word-spacing:-0.576000px;}
.ws1d{word-spacing:-0.379637px;}
.ws10{word-spacing:-0.071731px;}
.ws2a{word-spacing:-0.052364px;}
.wsf{word-spacing:0.000000px;}
.ws26{word-spacing:0.602182px;}
.ws28{word-spacing:0.864001px;}
.ws19{word-spacing:0.994910px;}
.ws9{word-spacing:1.191274px;}
.ws2c{word-spacing:1.584001px;}
.ws8{word-spacing:1.649456px;}
.wsc{word-spacing:2.042184px;}
.ws18{word-spacing:2.631275px;}
.ws2d{word-spacing:3.154912px;}
.ws38{word-spacing:3.299613px;}
.ws4{word-spacing:3.613094px;}
.ws12{word-spacing:3.678549px;}
.ws1a{word-spacing:4.398549px;}
.ws16{word-spacing:4.464004px;}
.ws3a{word-spacing:4.686407px;}
.wsb{word-spacing:4.725822px;}
.ws33{word-spacing:4.922186px;}
.ws23{word-spacing:5.314914px;}
.ws15{word-spacing:5.707641px;}
.ws39{word-spacing:6.121021px;}
.ws27{word-spacing:6.689460px;}
.ws24{word-spacing:6.754915px;}
.ws2f{word-spacing:7.409461px;}
.ws31{word-spacing:7.474915px;}
.wse{word-spacing:8.980371px;}
.wsd{word-spacing:9.176735px;}
.ws5{word-spacing:10.878555px;}
.ws32{word-spacing:11.140373px;}
.ws30{word-spacing:13.496739px;}
.ws25{word-spacing:14.020375px;}
.ws35{word-spacing:14.151285px;}
.ws3b{word-spacing:19.845499px;}
.ws20{word-spacing:19.856981px;}
.ws11{word-spacing:25.003657px;}
.ws2b{word-spacing:25.069112px;}
.ws2{word-spacing:26.253619px;}
.ws14{word-spacing:26.827469px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws6{word-spacing:43.193759px;}
.ws1{word-spacing:54.283749px;}
.ws13{word-spacing:60.480050px;}
.ws2e{word-spacing:80.625869px;}
._1{margin-left:-13.533757px;}
._d{margin-left:-6.283642px;}
._2{margin-left:-4.610401px;}
._1c{margin-left:-3.600003px;}
._3{margin-left:-2.223667px;}
._7{margin-left:-1.050852px;}
._5{width:1.139518px;}
._4{width:2.223667px;}
._0{width:4.610401px;}
._24{width:10.472736px;}
._21{width:13.545524px;}
._22{width:14.596376px;}
._27{width:16.952741px;}
._1e{width:18.176746px;}
._1d{width:19.178198px;}
._1f{width:20.819930px;}
._e{width:26.089596px;}
._6{width:28.072867px;}
._9{width:29.396272px;}
._8{width:32.594602px;}
._25{width:34.883723px;}
._23{width:39.115061px;}
._26{width:40.516397px;}
._a{width:44.701913px;}
._b{width:60.545505px;}
._10{width:66.894601px;}
._20{width:75.272790px;}
._1b{width:80.697600px;}
._f{width:932.132450px;}
._14{width:1560.825024px;}
._11{width:1562.270393px;}
._13{width:1685.194132px;}
._12{width:1716.090492px;}
._16{width:1808.705173px;}
._17{width:1854.390694px;}
._15{width:1933.790702px;}
._c{width:1937.781644px;}
._19{width:2028.567174px;}
._1a{width:2134.278142px;}
._18{width:2251.989534px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2f{bottom:93.813000px;}
.y2e{bottom:252.580500px;}
.y2d{bottom:272.905500px;}
.y2c{bottom:293.229000px;}
.y4d{bottom:295.965000px;}
.y2b{bottom:313.552500px;}
.y4c{bottom:316.288500px;}
.y2a{bottom:333.876000px;}
.y4b{bottom:345.067500px;}
.y29{bottom:370.404000px;}
.y4a{bottom:381.595500px;}
.y49{bottom:401.919000px;}
.y69{bottom:403.636500px;}
.y10{bottom:415.420500px;}
.y28{bottom:415.984500px;}
.y68{bottom:429.040500px;}
.y48{bottom:430.696500px;}
.yf{bottom:435.744000px;}
.y27{bottom:436.309500px;}
.y67{bottom:446.973000px;}
.ye{bottom:456.067500px;}
.y26{bottom:456.633000px;}
.y47{bottom:467.226000px;}
.y66{bottom:472.378500px;}
.yd{bottom:476.391000px;}
.y25{bottom:476.956500px;}
.y46{bottom:487.549500px;}
.y65{bottom:490.311000px;}
.yc{bottom:496.716000px;}
.y24{bottom:497.280000px;}
.y64{bottom:515.715000px;}
.y45{bottom:516.327000px;}
.yb{bottom:517.039500px;}
.y23{bottom:517.603500px;}
.y63{bottom:533.649000px;}
.ya{bottom:537.363000px;}
.y22{bottom:537.928500px;}
.y44{bottom:552.856500px;}
.y9{bottom:557.686500px;}
.y21{bottom:558.252000px;}
.y62{bottom:567.786000px;}
.y8{bottom:578.010000px;}
.y20{bottom:578.575500px;}
.y43{bottom:589.384500px;}
.y61{bottom:613.366500px;}
.y1f{bottom:615.103500px;}
.y7{bottom:617.761500px;}
.y60{bottom:633.690000px;}
.y42{bottom:634.965000px;}
.y5f{bottom:654.013500px;}
.y6{bottom:654.484500px;}
.y41{bottom:655.288500px;}
.y1e{bottom:660.684000px;}
.y5e{bottom:674.337000px;}
.y40{bottom:675.612000px;}
.y5{bottom:683.215500px;}
.y5d{bottom:694.662000px;}
.y3f{bottom:695.935500px;}
.y1d{bottom:707.211000px;}
.y3e{bottom:716.260500px;}
.y5c{bottom:731.190000px;}
.y1c{bottom:743.899500px;}
.y3d{bottom:752.788500px;}
.y5b{bottom:776.770500px;}
.y1b{bottom:780.586500px;}
.y5a{bottom:797.094000px;}
.y3c{bottom:798.369000px;}
.y4{bottom:808.476000px;}
.y1a{bottom:817.273500px;}
.y59{bottom:817.417500px;}
.y3b{bottom:818.692500px;}
.y19{bottom:837.597000px;}
.y58{bottom:837.741000px;}
.y3a{bottom:839.016000px;}
.y3{bottom:845.757000px;}
.y18{bottom:857.922000px;}
.y57{bottom:858.066000px;}
.y39{bottom:859.339500px;}
.y17{bottom:878.245500px;}
.y56{bottom:878.389500px;}
.y38{bottom:879.664500px;}
.y2{bottom:890.589000px;}
.y55{bottom:914.917500px;}
.y16{bottom:914.932500px;}
.y37{bottom:916.192500px;}
.y15{bottom:951.619500px;}
.y54{bottom:960.498000px;}
.y36{bottom:961.773000px;}
.y53{bottom:980.821500px;}
.y35{bottom:982.096500px;}
.y14{bottom:988.308000px;}
.y52{bottom:1001.145000px;}
.y34{bottom:1002.420000px;}
.y13{bottom:1008.631500px;}
.y51{bottom:1021.470000px;}
.y33{bottom:1036.716000px;}
.y50{bottom:1041.793500px;}
.y12{bottom:1045.318500px;}
.y32{bottom:1047.942000px;}
.y4f{bottom:1062.117000px;}
.y11{bottom:1082.007000px;}
.y4e{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y31{bottom:1090.191000px;}
.y30{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.hc{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:72.726266px;}
.ha{height:89.705492px;}
.hb{height:93.994950px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.xa{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.xb{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.x8{left:421.620000px;}
.x7{left:438.466500px;}
.x9{left:454.981500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v4{vertical-align:-9.482667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.770667pt;}
.v3{vertical-align:39.360000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:2.036365pt;}
.ls5{letter-spacing:2.094547pt;}
.ls2{letter-spacing:2.560002pt;}
.ls0{letter-spacing:2.654270pt;}
.ls6{letter-spacing:6.361125pt;}
.ls3{letter-spacing:16.174559pt;}
.lsa{letter-spacing:17.105469pt;}
.lsb{letter-spacing:17.693578pt;}
.lsc{letter-spacing:17.746711pt;}
.ls9{letter-spacing:21.992746pt;}
.ls4{letter-spacing:30.301496pt;}
.ls7{letter-spacing:926.429863pt;}
.ws1e{word-spacing:-37.899668pt;}
.ws36{word-spacing:-16.162923pt;}
.ws22{word-spacing:-3.246548pt;}
.ws1c{word-spacing:-2.839275pt;}
.ws37{word-spacing:-2.781093pt;}
.ws34{word-spacing:-2.257456pt;}
.ws7{word-spacing:-1.850183pt;}
.ws29{word-spacing:-1.617456pt;}
.ws21{word-spacing:-1.152001pt;}
.ws1f{word-spacing:-1.093819pt;}
.ws1b{word-spacing:-0.744728pt;}
.ws17{word-spacing:-0.628364pt;}
.wsa{word-spacing:-0.512000pt;}
.ws1d{word-spacing:-0.337455pt;}
.ws10{word-spacing:-0.063761pt;}
.ws2a{word-spacing:-0.046545pt;}
.wsf{word-spacing:0.000000pt;}
.ws26{word-spacing:0.535273pt;}
.ws28{word-spacing:0.768001pt;}
.ws19{word-spacing:0.884364pt;}
.ws9{word-spacing:1.058910pt;}
.ws2c{word-spacing:1.408001pt;}
.ws8{word-spacing:1.466183pt;}
.wsc{word-spacing:1.815274pt;}
.ws18{word-spacing:2.338911pt;}
.ws2d{word-spacing:2.804366pt;}
.ws38{word-spacing:2.932989pt;}
.ws4{word-spacing:3.211639pt;}
.ws12{word-spacing:3.269821pt;}
.ws1a{word-spacing:3.909821pt;}
.ws16{word-spacing:3.968003pt;}
.ws3a{word-spacing:4.165695pt;}
.wsb{word-spacing:4.200731pt;}
.ws33{word-spacing:4.375276pt;}
.ws23{word-spacing:4.724368pt;}
.ws15{word-spacing:5.073459pt;}
.ws39{word-spacing:5.440908pt;}
.ws27{word-spacing:5.946187pt;}
.ws24{word-spacing:6.004369pt;}
.ws2f{word-spacing:6.586187pt;}
.ws31{word-spacing:6.644369pt;}
.wse{word-spacing:7.982552pt;}
.wsd{word-spacing:8.157098pt;}
.ws5{word-spacing:9.669826pt;}
.ws32{word-spacing:9.902554pt;}
.ws30{word-spacing:11.997101pt;}
.ws25{word-spacing:12.462556pt;}
.ws35{word-spacing:12.578920pt;}
.ws3b{word-spacing:17.640444pt;}
.ws20{word-spacing:17.650650pt;}
.ws11{word-spacing:22.225473pt;}
.ws2b{word-spacing:22.283655pt;}
.ws2{word-spacing:23.336550pt;}
.ws14{word-spacing:23.846639pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws6{word-spacing:38.394453pt;}
.ws1{word-spacing:48.252221pt;}
.ws13{word-spacing:53.760045pt;}
.ws2e{word-spacing:71.667439pt;}
._1{margin-left:-12.030006pt;}
._d{margin-left:-5.585459pt;}
._2{margin-left:-4.098134pt;}
._1c{margin-left:-3.200003pt;}
._3{margin-left:-1.976593pt;}
._7{margin-left:-0.934091pt;}
._5{width:1.012905pt;}
._4{width:1.976593pt;}
._0{width:4.098134pt;}
._24{width:9.309099pt;}
._21{width:12.040466pt;}
._22{width:12.974556pt;}
._27{width:15.069103pt;}
._1e{width:16.157108pt;}
._1d{width:17.047287pt;}
._1f{width:18.506605pt;}
._e{width:23.190752pt;}
._6{width:24.953659pt;}
._9{width:26.130020pt;}
._8{width:28.972979pt;}
._25{width:31.007754pt;}
._23{width:34.768943pt;}
._26{width:36.014575pt;}
._a{width:39.735034pt;}
._b{width:53.818227pt;}
._10{width:59.461868pt;}
._20{width:66.909147pt;}
._1b{width:71.731200pt;}
._f{width:828.562178pt;}
._14{width:1387.400021pt;}
._11{width:1388.684794pt;}
._13{width:1497.950339pt;}
._12{width:1525.413771pt;}
._16{width:1607.737931pt;}
._17{width:1648.347284pt;}
._15{width:1718.925069pt;}
._c{width:1722.472572pt;}
._19{width:1803.170821pt;}
._1a{width:1897.136126pt;}
._18{width:2001.768475pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:83.389333pt;}
.y2e{bottom:224.516000pt;}
.y2d{bottom:242.582667pt;}
.y2c{bottom:260.648000pt;}
.y4d{bottom:263.080000pt;}
.y2b{bottom:278.713333pt;}
.y4c{bottom:281.145333pt;}
.y2a{bottom:296.778667pt;}
.y4b{bottom:306.726667pt;}
.y29{bottom:329.248000pt;}
.y4a{bottom:339.196000pt;}
.y49{bottom:357.261333pt;}
.y69{bottom:358.788000pt;}
.y10{bottom:369.262667pt;}
.y28{bottom:369.764000pt;}
.y68{bottom:381.369333pt;}
.y48{bottom:382.841333pt;}
.yf{bottom:387.328000pt;}
.y27{bottom:387.830667pt;}
.y67{bottom:397.309333pt;}
.ye{bottom:405.393333pt;}
.y26{bottom:405.896000pt;}
.y47{bottom:415.312000pt;}
.y66{bottom:419.892000pt;}
.yd{bottom:423.458667pt;}
.y25{bottom:423.961333pt;}
.y46{bottom:433.377333pt;}
.y65{bottom:435.832000pt;}
.yc{bottom:441.525333pt;}
.y24{bottom:442.026667pt;}
.y64{bottom:458.413333pt;}
.y45{bottom:458.957333pt;}
.yb{bottom:459.590667pt;}
.y23{bottom:460.092000pt;}
.y63{bottom:474.354667pt;}
.ya{bottom:477.656000pt;}
.y22{bottom:478.158667pt;}
.y44{bottom:491.428000pt;}
.y9{bottom:495.721333pt;}
.y21{bottom:496.224000pt;}
.y62{bottom:504.698667pt;}
.y8{bottom:513.786667pt;}
.y20{bottom:514.289333pt;}
.y43{bottom:523.897333pt;}
.y61{bottom:545.214667pt;}
.y1f{bottom:546.758667pt;}
.y7{bottom:549.121333pt;}
.y60{bottom:563.280000pt;}
.y42{bottom:564.413333pt;}
.y5f{bottom:581.345333pt;}
.y6{bottom:581.764000pt;}
.y41{bottom:582.478667pt;}
.y1e{bottom:587.274667pt;}
.y5e{bottom:599.410667pt;}
.y40{bottom:600.544000pt;}
.y5{bottom:607.302667pt;}
.y5d{bottom:617.477333pt;}
.y3f{bottom:618.609333pt;}
.y1d{bottom:628.632000pt;}
.y3e{bottom:636.676000pt;}
.y5c{bottom:649.946667pt;}
.y1c{bottom:661.244000pt;}
.y3d{bottom:669.145333pt;}
.y5b{bottom:690.462667pt;}
.y1b{bottom:693.854667pt;}
.y5a{bottom:708.528000pt;}
.y3c{bottom:709.661333pt;}
.y4{bottom:718.645333pt;}
.y1a{bottom:726.465333pt;}
.y59{bottom:726.593333pt;}
.y3b{bottom:727.726667pt;}
.y19{bottom:744.530667pt;}
.y58{bottom:744.658667pt;}
.y3a{bottom:745.792000pt;}
.y3{bottom:751.784000pt;}
.y18{bottom:762.597333pt;}
.y57{bottom:762.725333pt;}
.y39{bottom:763.857333pt;}
.y17{bottom:780.662667pt;}
.y56{bottom:780.790667pt;}
.y38{bottom:781.924000pt;}
.y2{bottom:791.634667pt;}
.y55{bottom:813.260000pt;}
.y16{bottom:813.273333pt;}
.y37{bottom:814.393333pt;}
.y15{bottom:845.884000pt;}
.y54{bottom:853.776000pt;}
.y36{bottom:854.909333pt;}
.y53{bottom:871.841333pt;}
.y35{bottom:872.974667pt;}
.y14{bottom:878.496000pt;}
.y52{bottom:889.906667pt;}
.y34{bottom:891.040000pt;}
.y13{bottom:896.561333pt;}
.y51{bottom:907.973333pt;}
.y33{bottom:921.525333pt;}
.y50{bottom:926.038667pt;}
.y12{bottom:929.172000pt;}
.y32{bottom:931.504000pt;}
.y4f{bottom:944.104000pt;}
.y11{bottom:961.784000pt;}
.y4e{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y31{bottom:969.058667pt;}
.y30{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.hc{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:64.645570pt;}
.ha{height:79.738215pt;}
.hb{height:83.551067pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.xa{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.xb{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.x8{left:374.773333pt;}
.x7{left:389.748000pt;}
.x9{left:404.428000pt;}
}




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