
    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_1f944937e977ffca20526341.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_769493eda595fb6b11da94a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_183d652276204567dfa3b378.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960938;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_844033f3c1e4d22db9f28ecf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_2c2eb8ba881bdc9a4a0f98ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_6b7e8b41e90951026de0b469.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_fd6301755322a00a9210d70a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939453;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_b46c8aaf88f1b969f3d6c5e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_625beb491b3556d54a6b88d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.762207;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;}
.m2{transform:matrix(0.000000,-0.240267,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.240267,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.240267,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.235515,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.235515,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.235515,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);}
.m1{transform:matrix(0.260127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260127,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.265376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265376,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.433876px;}
.v1{vertical-align:18.000000px;}
.lsa{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.118686px;}
.lsd{letter-spacing:-0.116874px;}
.lsc{letter-spacing:-0.102045px;}
.lse{letter-spacing:-0.100487px;}
.ls8{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.054720px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.126720px;}
.ls5{letter-spacing:0.136915px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:1.584000px;}
.ls3{letter-spacing:3.384000px;}
.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;}
}
.ws0{word-spacing:-24.624000px;}
.ws4{word-spacing:-16.416000px;}
.ws2{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.272000px;}
.ws1{word-spacing:-13.652640px;}
.ws7{word-spacing:-6.030885px;}
.wsb{word-spacing:-5.938810px;}
.ws8{word-spacing:-4.181426px;}
.wsc{word-spacing:-4.117588px;}
.wsd{word-spacing:0.000000px;}
.ws5{word-spacing:40.056777px;}
.ws6{word-spacing:44.089404px;}
.wsa{word-spacing:68.803958px;}
.ws9{word-spacing:74.436992px;}
._1{margin-left:-1.109520px;}
._0{width:1.005480px;}
._9{width:2.046360px;}
._6{width:3.065640px;}
._7{width:4.092720px;}
._d{width:5.472000px;}
._2{width:6.768000px;}
._3{width:7.824000px;}
._a{width:8.856000px;}
._b{width:10.224000px;}
._c{width:13.032000px;}
._4{width:14.112000px;}
._5{width:15.264000px;}
._8{width:17.568000px;}
._e{width:19.008000px;}
._f{width:20.018520px;}
._10{width:38.880000px;}
._11{width:40.152000px;}
._12{width:47.764051px;}
._13{width:55.558637px;}
._16{width:61.938406px;}
._14{width:70.763392px;}
._15{width:73.765943px;}
._19{width:86.068173px;}
._17{width:94.483805px;}
._18{width:98.024328px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fse{font-size:15.172931px;}
.fs9{font-size:15.408170px;}
.fsb{font-size:21.362626px;}
.fs6{font-size:21.693829px;}
.fsa{font-size:22.008128px;}
.fsd{font-size:26.005129px;}
.fs8{font-size:26.408309px;}
.fs7{font-size:27.478041px;}
.fsc{font-size:27.604574px;}
.fs2{font-size:47.880000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.050000px;}
.y4f{bottom:11.899989px;}
.y40{bottom:12.162981px;}
.y3{bottom:18.540000px;}
.y46{bottom:23.411944px;}
.y36{bottom:23.853416px;}
.y37{bottom:29.502785px;}
.y2{bottom:38.070000px;}
.y47{bottom:45.279479px;}
.y38{bottom:54.769917px;}
.y48{bottom:68.692196px;}
.y4e{bottom:69.620542px;}
.y3f{bottom:70.778426px;}
.y39{bottom:80.116330px;}
.y4c{bottom:91.331935px;}
.y49{bottom:92.028388px;}
.y3d{bottom:92.826430px;}
.y3a{bottom:105.381107px;}
.y4a{bottom:115.441105px;}
.y45{bottom:120.681581px;}
.y34{bottom:121.410000px;}
.y53{bottom:127.262250px;}
.y44{bottom:128.764331px;}
.y3b{bottom:130.727521px;}
.y52{bottom:135.220827px;}
.y43{bottom:136.847082px;}
.y4b{bottom:138.775751px;}
.y33{bottom:142.290000px;}
.y51{bottom:143.180177px;}
.y42{bottom:144.929832px;}
.y50{bottom:151.139527px;}
.y41{bottom:153.011798px;}
.y3c{bottom:155.992298px;}
.y32{bottom:162.810000px;}
.y4d{bottom:169.606733px;}
.y3e{bottom:172.236295px;}
.y31{bottom:183.420000px;}
.y30{bottom:204.390000px;}
.y2f{bottom:224.940000px;}
.y2e{bottom:245.550000px;}
.y2d{bottom:266.250000px;}
.y2c{bottom:286.860000px;}
.y2b{bottom:306.840000px;}
.y2a{bottom:324.120000px;}
.y35{bottom:329.910000px;}
.y29{bottom:341.310000px;}
.y28{bottom:358.500000px;}
.y27{bottom:375.690000px;}
.y26{bottom:393.600000px;}
.y25{bottom:414.210000px;}
.y24{bottom:434.910000px;}
.y23{bottom:455.520000px;}
.y22{bottom:476.220000px;}
.y21{bottom:505.830000px;}
.y20{bottom:535.530000px;}
.y1f{bottom:556.140000px;}
.y1e{bottom:576.840000px;}
.y1d{bottom:597.450000px;}
.y1c{bottom:618.150000px;}
.y1b{bottom:638.790000px;}
.y1a{bottom:659.490000px;}
.y19{bottom:680.100000px;}
.y18{bottom:700.800000px;}
.y17{bottom:721.410000px;}
.y16{bottom:742.110000px;}
.y15{bottom:771.720000px;}
.y14{bottom:792.420000px;}
.y13{bottom:813.030000px;}
.y12{bottom:833.730000px;}
.y11{bottom:854.340000px;}
.y10{bottom:875.040000px;}
.yf{bottom:895.650000px;}
.ye{bottom:916.350000px;}
.yd{bottom:946.320000px;}
.yc{bottom:966.030000px;}
.yb{bottom:990.960000px;}
.ya{bottom:1011.660000px;}
.y9{bottom:1035.600000px;}
.y8{bottom:1058.130000px;}
.y7{bottom:1089.090000px;}
.y6{bottom:1118.520000px;}
.y5{bottom:1139.220000px;}
.y1{bottom:1156.590000px;}
.h11{height:15.552576px;}
.hc{height:15.793701px;}
.h13{height:18.932445px;}
.he{height:19.225971px;}
.hd{height:20.004765px;}
.h12{height:20.096885px;}
.h14{height:25.259820px;}
.hf{height:25.651445px;}
.h5{height:36.611367px;}
.h8{height:43.827715px;}
.h4{height:45.970664px;}
.h7{height:46.991602px;}
.ha{height:52.417969px;}
.h9{height:52.488281px;}
.h2{height:53.100000px;}
.h3{height:70.664062px;}
.h6{height:78.626953px;}
.h10{height:183.901407px;}
.hb{height:186.752592px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:114.420000px;}
.w4{width:276.744712px;}
.w5{width:278.019087px;}
.w3{width:531.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.970000px;}
.x16{left:29.195030px;}
.x1b{left:30.973791px;}
.x13{left:34.102115px;}
.xf{left:35.655590px;}
.x12{left:37.210698px;}
.x10{left:38.764172px;}
.x11{left:40.317647px;}
.xe{left:43.590398px;}
.x19{left:65.808126px;}
.x1{left:119.520000px;}
.x4{left:127.650000px;}
.x8{left:141.960000px;}
.x15{left:143.033188px;}
.x7{left:163.020000px;}
.x5{left:164.190000px;}
.xd{left:166.545000px;}
.x9{left:210.900000px;}
.x17{left:212.793343px;}
.x1c{left:215.744939px;}
.xc{left:232.860000px;}
.x2{left:233.940000px;}
.x14{left:249.103156px;}
.x1a{left:250.250246px;}
.xa{left:329.880000px;}
.x6{left:387.510000px;}
.x18{left:441.495000px;}
.xb{left:733.050000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.830112pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.105499pt;}
.lsd{letter-spacing:-0.103888pt;}
.lsc{letter-spacing:-0.090707pt;}
.lse{letter-spacing:-0.089322pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.048640pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.112640pt;}
.ls5{letter-spacing:0.121702pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:1.408000pt;}
.ls3{letter-spacing:3.008000pt;}
.ws0{word-spacing:-21.888000pt;}
.ws4{word-spacing:-14.592000pt;}
.ws2{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws1{word-spacing:-12.135680pt;}
.ws7{word-spacing:-5.360786pt;}
.wsb{word-spacing:-5.278942pt;}
.ws8{word-spacing:-3.716823pt;}
.wsc{word-spacing:-3.660078pt;}
.wsd{word-spacing:0.000000pt;}
.ws5{word-spacing:35.606024pt;}
.ws6{word-spacing:39.190582pt;}
.wsa{word-spacing:61.159074pt;}
.ws9{word-spacing:66.166215pt;}
._1{margin-left:-0.986240pt;}
._0{width:0.893760pt;}
._9{width:1.818987pt;}
._6{width:2.725013pt;}
._7{width:3.637973pt;}
._d{width:4.864000pt;}
._2{width:6.016000pt;}
._3{width:6.954667pt;}
._a{width:7.872000pt;}
._b{width:9.088000pt;}
._c{width:11.584000pt;}
._4{width:12.544000pt;}
._5{width:13.568000pt;}
._8{width:15.616000pt;}
._e{width:16.896000pt;}
._f{width:17.794240pt;}
._10{width:34.560000pt;}
._11{width:35.690667pt;}
._12{width:42.456934pt;}
._13{width:49.385455pt;}
._16{width:55.056361pt;}
._14{width:62.900793pt;}
._15{width:65.569727pt;}
._19{width:76.505043pt;}
._17{width:83.985604pt;}
._18{width:87.132736pt;}
.fse{font-size:13.487050pt;}
.fs9{font-size:13.696151pt;}
.fsb{font-size:18.989001pt;}
.fs6{font-size:19.283404pt;}
.fsa{font-size:19.562780pt;}
.fsd{font-size:23.115670pt;}
.fs8{font-size:23.474053pt;}
.fs7{font-size:24.424925pt;}
.fsc{font-size:24.537399pt;}
.fs2{font-size:42.560000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.600000pt;}
.y4f{bottom:10.577768pt;}
.y40{bottom:10.811539pt;}
.y3{bottom:16.480000pt;}
.y46{bottom:20.810617pt;}
.y36{bottom:21.203036pt;}
.y37{bottom:26.224698pt;}
.y2{bottom:33.840000pt;}
.y47{bottom:40.248426pt;}
.y38{bottom:48.684371pt;}
.y48{bottom:61.059729pt;}
.y4e{bottom:61.884926pt;}
.y3f{bottom:62.914156pt;}
.y39{bottom:71.214516pt;}
.y4c{bottom:81.183942pt;}
.y49{bottom:81.803011pt;}
.y3d{bottom:82.512382pt;}
.y3a{bottom:93.672095pt;}
.y4a{bottom:102.614315pt;}
.y45{bottom:107.272516pt;}
.y34{bottom:107.920000pt;}
.y53{bottom:113.122000pt;}
.y44{bottom:114.457183pt;}
.y3b{bottom:116.202240pt;}
.y52{bottom:120.196291pt;}
.y43{bottom:121.641851pt;}
.y4b{bottom:123.356223pt;}
.y33{bottom:126.480000pt;}
.y51{bottom:127.271268pt;}
.y42{bottom:128.826518pt;}
.y50{bottom:134.346246pt;}
.y41{bottom:136.010487pt;}
.y3c{bottom:138.659820pt;}
.y32{bottom:144.720000pt;}
.y4d{bottom:150.761541pt;}
.y3e{bottom:153.098929pt;}
.y31{bottom:163.040000pt;}
.y30{bottom:181.680000pt;}
.y2f{bottom:199.946667pt;}
.y2e{bottom:218.266667pt;}
.y2d{bottom:236.666667pt;}
.y2c{bottom:254.986667pt;}
.y2b{bottom:272.746667pt;}
.y2a{bottom:288.106667pt;}
.y35{bottom:293.253333pt;}
.y29{bottom:303.386667pt;}
.y28{bottom:318.666667pt;}
.y27{bottom:333.946667pt;}
.y26{bottom:349.866667pt;}
.y25{bottom:368.186667pt;}
.y24{bottom:386.586667pt;}
.y23{bottom:404.906667pt;}
.y22{bottom:423.306667pt;}
.y21{bottom:449.626667pt;}
.y20{bottom:476.026667pt;}
.y1f{bottom:494.346667pt;}
.y1e{bottom:512.746667pt;}
.y1d{bottom:531.066667pt;}
.y1c{bottom:549.466667pt;}
.y1b{bottom:567.813333pt;}
.y1a{bottom:586.213333pt;}
.y19{bottom:604.533333pt;}
.y18{bottom:622.933333pt;}
.y17{bottom:641.253333pt;}
.y16{bottom:659.653333pt;}
.y15{bottom:685.973333pt;}
.y14{bottom:704.373333pt;}
.y13{bottom:722.693333pt;}
.y12{bottom:741.093333pt;}
.y11{bottom:759.413333pt;}
.y10{bottom:777.813333pt;}
.yf{bottom:796.133333pt;}
.ye{bottom:814.533333pt;}
.yd{bottom:841.173333pt;}
.yc{bottom:858.693333pt;}
.yb{bottom:880.853333pt;}
.ya{bottom:899.253333pt;}
.y9{bottom:920.533333pt;}
.y8{bottom:940.560000pt;}
.y7{bottom:968.080000pt;}
.y6{bottom:994.240000pt;}
.y5{bottom:1012.640000pt;}
.y1{bottom:1028.080000pt;}
.h11{height:13.824512pt;}
.hc{height:14.038845pt;}
.h13{height:16.828840pt;}
.he{height:17.089752pt;}
.hd{height:17.782013pt;}
.h12{height:17.863897pt;}
.h14{height:22.453173pt;}
.hf{height:22.801284pt;}
.h5{height:32.543437pt;}
.h8{height:38.957969pt;}
.h4{height:40.862812pt;}
.h7{height:41.770312pt;}
.ha{height:46.593750pt;}
.h9{height:46.656250pt;}
.h2{height:47.200000pt;}
.h3{height:62.812500pt;}
.h6{height:69.890625pt;}
.h10{height:163.467917pt;}
.hb{height:166.002304pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:101.706667pt;}
.w4{width:245.995299pt;}
.w5{width:247.128078pt;}
.w3{width:472.533333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.640000pt;}
.x16{left:25.951138pt;}
.x1b{left:27.532259pt;}
.x13{left:30.312991pt;}
.xf{left:31.693857pt;}
.x12{left:33.076176pt;}
.x10{left:34.457042pt;}
.x11{left:35.837908pt;}
.xe{left:38.747020pt;}
.x19{left:58.496112pt;}
.x1{left:106.240000pt;}
.x4{left:113.466667pt;}
.x8{left:126.186667pt;}
.x15{left:127.140611pt;}
.x7{left:144.906667pt;}
.x5{left:145.946667pt;}
.xd{left:148.040000pt;}
.x9{left:187.466667pt;}
.x17{left:189.149638pt;}
.x1c{left:191.773279pt;}
.xc{left:206.986667pt;}
.x2{left:207.946667pt;}
.x14{left:221.425027pt;}
.x1a{left:222.444663pt;}
.xa{left:293.226667pt;}
.x6{left:344.453333pt;}
.x18{left:392.440000pt;}
.xb{left:651.600000pt;}
}




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