
    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_df2fa242db75ab0226b67a26.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_613203b64455f163e5e67e30.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_3d256f41224e1abd87045637.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_77f4cc4e38efb6803d684622.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_bf9f690b19954d331a70ae6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_4ea604f763ef90818707dbb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.900000px;}
.v1{vertical-align:21.600000px;}
.v3{vertical-align:57.600000px;}
.ls12{letter-spacing:-0.322800px;}
.lsc{letter-spacing:-0.301200px;}
.lse{letter-spacing:-0.252000px;}
.lsf{letter-spacing:-0.058320px;}
.ls9{letter-spacing:-0.032400px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.ls13{letter-spacing:0.085800px;}
.lsd{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.140400px;}
.lsa{letter-spacing:0.143400px;}
.ls8{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.243600px;}
.lsb{letter-spacing:0.249000px;}
.ls4{letter-spacing:0.249600px;}
.ls11{letter-spacing:0.303000px;}
.ls2{letter-spacing:33.910560px;}
.ls1{letter-spacing:60.444000px;}
.ls5{letter-spacing:626.644320px;}
.ls6{letter-spacing:906.196320px;}
.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;}
}
.ws1{word-spacing:-16.272000px;}
.wsf{word-spacing:-13.808760px;}
.wse{word-spacing:-13.755360px;}
.ws6{word-spacing:-13.754760px;}
.wsd{word-spacing:-13.749360px;}
.ws5{word-spacing:-13.649160px;}
.wsc{word-spacing:-13.646160px;}
.ws8{word-spacing:-13.631904px;}
.wsb{word-spacing:-13.538304px;}
.ws3{word-spacing:-13.505760px;}
.ws4{word-spacing:-13.473360px;}
.ws7{word-spacing:-13.204560px;}
.ws2{word-spacing:-12.204000px;}
.ws0{word-spacing:-10.902240px;}
.ws9{word-spacing:-8.136000px;}
.ws13{word-spacing:0.000000px;}
.ws12{word-spacing:48.999000px;}
.wsa{word-spacing:49.311360px;}
.ws11{word-spacing:357.389280px;}
.ws10{word-spacing:417.044160px;}
._3{margin-left:-9.288000px;}
._5{margin-left:-6.392640px;}
._0{margin-left:-4.824000px;}
._4{margin-left:-2.619360px;}
._1{margin-left:-1.524000px;}
._2{width:1.020000px;}
._6{width:2.980320px;}
._d{width:4.200000px;}
._10{width:8.035920px;}
._8{width:16.023600px;}
._7{width:17.640000px;}
._f{width:22.257120px;}
._e{width:24.166800px;}
._b{width:39.378816px;}
._c{width:40.539456px;}
._9{width:42.100560px;}
._a{width:111.349440px;}
._12{width:118.592160px;}
._11{width:252.594000px;}
._14{width:258.970560px;}
._13{width:347.510640px;}
._15{width:511.546320px;}
.fc1{color:rgb(229,30,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:59.904000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y63{bottom:119.772000px;}
.y83{bottom:128.916000px;}
.y62{bottom:137.772000px;}
.y82{bottom:146.916000px;}
.y61{bottom:155.775000px;}
.y81{bottom:164.910000px;}
.y60{bottom:173.775000px;}
.y80{bottom:182.910000px;}
.y5f{bottom:191.775000px;}
.y7f{bottom:200.910000px;}
.y5e{bottom:209.775000px;}
.y7e{bottom:218.190000px;}
.y5d{bottom:227.805000px;}
.y7d{bottom:232.590000px;}
.y5c{bottom:245.805000px;}
.y7c{bottom:246.990000px;}
.y7b{bottom:262.110000px;}
.y7a{bottom:280.110000px;}
.y5b{bottom:281.805000px;}
.y79{bottom:298.110000px;}
.y5a{bottom:299.805000px;}
.y78{bottom:316.110000px;}
.y59{bottom:317.805000px;}
.y77{bottom:334.110000px;}
.y58{bottom:335.805000px;}
.y57{bottom:353.805000px;}
.y56{bottom:371.805000px;}
.y2b{bottom:380.235000px;}
.y55{bottom:389.805000px;}
.y2a{bottom:398.235000px;}
.y54{bottom:407.805000px;}
.y29{bottom:416.235000px;}
.y53{bottom:425.805000px;}
.y28{bottom:434.235000px;}
.y52{bottom:443.805000px;}
.y27{bottom:452.235000px;}
.y51{bottom:461.805000px;}
.y26{bottom:470.235000px;}
.y25{bottom:488.235000px;}
.y65{bottom:500.430000px;}
.y24{bottom:506.235000px;}
.y64{bottom:520.230000px;}
.y23{bottom:524.235000px;}
.y22{bottom:542.235000px;}
.y3a{bottom:553.755000px;}
.y21{bottom:560.235000px;}
.y20{bottom:578.235000px;}
.y39{bottom:595.080000px;}
.y1f{bottom:596.235000px;}
.y46{bottom:611.820000px;}
.y1e{bottom:617.730000px;}
.y3f{bottom:619.770000px;}
.y3e{bottom:630.570000px;}
.y45{bottom:644.250000px;}
.y44{bottom:655.050000px;}
.y3d{bottom:662.970000px;}
.y43{bottom:665.850000px;}
.y3c{bottom:673.770000px;}
.y42{bottom:676.650000px;}
.y3b{bottom:684.570000px;}
.y41{bottom:687.450000px;}
.y40{bottom:698.250000px;}
.y37{bottom:698.835000px;}
.y36{bottom:716.865000px;}
.y35{bottom:734.865000px;}
.y66{bottom:745.350000px;}
.y34{bottom:752.865000px;}
.y1c{bottom:804.930000px;}
.y1b{bottom:822.165000px;}
.y50{bottom:860.370000px;}
.y33{bottom:868.425000px;}
.y4f{bottom:872.970000px;}
.y32{bottom:886.425000px;}
.y4e{bottom:886.830000px;}
.y4d{bottom:903.570000px;}
.y31{bottom:904.425000px;}
.y4c{bottom:916.170000px;}
.y30{bottom:922.425000px;}
.y4b{bottom:930.030000px;}
.y2f{bottom:940.425000px;}
.y4a{bottom:948.030000px;}
.y2e{bottom:958.425000px;}
.y49{bottom:966.030000px;}
.y48{bottom:984.030000px;}
.y47{bottom:1002.030000px;}
.y1a{bottom:1041.120000px;}
.y76{bottom:1054.110000px;}
.y19{bottom:1059.120000px;}
.y75{bottom:1070.310000px;}
.y18{bottom:1077.150000px;}
.y74{bottom:1086.510000px;}
.y17{bottom:1095.150000px;}
.y73{bottom:1102.710000px;}
.y16{bottom:1113.150000px;}
.y72{bottom:1118.910000px;}
.y15{bottom:1131.150000px;}
.y71{bottom:1135.110000px;}
.y14{bottom:1149.150000px;}
.y70{bottom:1151.355000px;}
.y13{bottom:1167.150000px;}
.y6f{bottom:1167.555000px;}
.y6e{bottom:1183.755000px;}
.y12{bottom:1185.150000px;}
.y6d{bottom:1199.955000px;}
.y11{bottom:1203.150000px;}
.y6c{bottom:1216.155000px;}
.y10{bottom:1221.150000px;}
.yf{bottom:1239.150000px;}
.y2d{bottom:1251.615000px;}
.y2c{bottom:1269.615000px;}
.ye{bottom:1278.750000px;}
.yd{bottom:1296.750000px;}
.y6b{bottom:1304.460000px;}
.yc{bottom:1314.750000px;}
.y6a{bottom:1329.660000px;}
.yb{bottom:1332.750000px;}
.ya{bottom:1350.750000px;}
.y69{bottom:1358.565000px;}
.y9{bottom:1368.750000px;}
.y68{bottom:1383.765000px;}
.y8{bottom:1386.750000px;}
.y67{bottom:1398.165000px;}
.y7{bottom:1404.750000px;}
.y6{bottom:1422.795000px;}
.y1d{bottom:1423.590000px;}
.y84{bottom:1466.925000px;}
.y5{bottom:1467.825000px;}
.y38{bottom:1468.545000px;}
.y3{bottom:1499.940000px;}
.y2{bottom:1521.540000px;}
.y1{bottom:1543.140000px;}
.y4{bottom:1587.270000px;}
.hb{height:36.519609px;}
.ha{height:36.861328px;}
.h12{height:42.186445px;}
.hf{height:47.980898px;}
.hd{height:49.394180px;}
.h9{height:52.260820px;}
.h4{height:53.709961px;}
.h11{height:53.853187px;}
.h10{height:55.291992px;}
.h7{height:59.439023px;}
.h8{height:59.582250px;}
.h6{height:61.189805px;}
.h5{height:61.337250px;}
.h2{height:71.613281px;}
.hc{height:72.784219px;}
.he{height:106.994180px;}
.h3{height:110.583984px;}
.h1{height:1785.750000px;}
.h0{height:1785.780000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6{left:7.991984px;}
.x18{left:10.835984px;}
.x8{left:15.299984px;}
.x16{left:16.523984px;}
.x2{left:17.531984px;}
.x11{left:26.351984px;}
.x7{left:28.331984px;}
.x14{left:34.523984px;}
.x19{left:37.835984px;}
.x9{left:43.055984px;}
.x4{left:62.171984px;}
.x17{left:70.523984px;}
.x1{left:104.507984px;}
.x12{left:157.319984px;}
.x13{left:198.644984px;}
.x15{left:281.729984px;}
.x3{left:395.429984px;}
.x1e{left:506.879984px;}
.xb{left:559.589984px;}
.x1b{left:561.059984px;}
.xd{left:564.584984px;}
.xa{left:567.329984px;}
.xf{left:572.609984px;}
.xc{left:579.749984px;}
.xe{left:584.924984px;}
.x1c{left:588.089984px;}
.x10{left:592.949984px;}
.x1d{left:615.089984px;}
.x1a{left:738.644984px;}
.x5{left:783.539984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.133333pt;}
.v1{vertical-align:19.200000pt;}
.v3{vertical-align:51.200000pt;}
.ls12{letter-spacing:-0.286933pt;}
.lsc{letter-spacing:-0.267733pt;}
.lse{letter-spacing:-0.224000pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls9{letter-spacing:-0.028800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.ls13{letter-spacing:0.076267pt;}
.lsd{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.124800pt;}
.lsa{letter-spacing:0.127467pt;}
.ls8{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.216533pt;}
.lsb{letter-spacing:0.221333pt;}
.ls4{letter-spacing:0.221867pt;}
.ls11{letter-spacing:0.269333pt;}
.ls2{letter-spacing:30.142720pt;}
.ls1{letter-spacing:53.728000pt;}
.ls5{letter-spacing:557.017173pt;}
.ls6{letter-spacing:805.507840pt;}
.ws1{word-spacing:-14.464000pt;}
.wsf{word-spacing:-12.274453pt;}
.wse{word-spacing:-12.226987pt;}
.ws6{word-spacing:-12.226453pt;}
.wsd{word-spacing:-12.221653pt;}
.ws5{word-spacing:-12.132587pt;}
.wsc{word-spacing:-12.129920pt;}
.ws8{word-spacing:-12.117248pt;}
.wsb{word-spacing:-12.034048pt;}
.ws3{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.976320pt;}
.ws7{word-spacing:-11.737387pt;}
.ws2{word-spacing:-10.848000pt;}
.ws0{word-spacing:-9.690880pt;}
.ws9{word-spacing:-7.232000pt;}
.ws13{word-spacing:0.000000pt;}
.ws12{word-spacing:43.554667pt;}
.wsa{word-spacing:43.832320pt;}
.ws11{word-spacing:317.679360pt;}
.ws10{word-spacing:370.705920pt;}
._3{margin-left:-8.256000pt;}
._5{margin-left:-5.682347pt;}
._0{margin-left:-4.288000pt;}
._4{margin-left:-2.328320pt;}
._1{margin-left:-1.354667pt;}
._2{width:0.906667pt;}
._6{width:2.649173pt;}
._d{width:3.733333pt;}
._10{width:7.143040pt;}
._8{width:14.243200pt;}
._7{width:15.680000pt;}
._f{width:19.784107pt;}
._e{width:21.481600pt;}
._b{width:35.003392pt;}
._c{width:36.035072pt;}
._9{width:37.422720pt;}
._a{width:98.977280pt;}
._12{width:105.415253pt;}
._11{width:224.528000pt;}
._14{width:230.196053pt;}
._13{width:308.898347pt;}
._15{width:454.707840pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:53.248000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:106.464000pt;}
.y83{bottom:114.592000pt;}
.y62{bottom:122.464000pt;}
.y82{bottom:130.592000pt;}
.y61{bottom:138.466667pt;}
.y81{bottom:146.586667pt;}
.y60{bottom:154.466667pt;}
.y80{bottom:162.586667pt;}
.y5f{bottom:170.466667pt;}
.y7f{bottom:178.586667pt;}
.y5e{bottom:186.466667pt;}
.y7e{bottom:193.946667pt;}
.y5d{bottom:202.493333pt;}
.y7d{bottom:206.746667pt;}
.y5c{bottom:218.493333pt;}
.y7c{bottom:219.546667pt;}
.y7b{bottom:232.986667pt;}
.y7a{bottom:248.986667pt;}
.y5b{bottom:250.493333pt;}
.y79{bottom:264.986667pt;}
.y5a{bottom:266.493333pt;}
.y78{bottom:280.986667pt;}
.y59{bottom:282.493333pt;}
.y77{bottom:296.986667pt;}
.y58{bottom:298.493333pt;}
.y57{bottom:314.493333pt;}
.y56{bottom:330.493333pt;}
.y2b{bottom:337.986667pt;}
.y55{bottom:346.493333pt;}
.y2a{bottom:353.986667pt;}
.y54{bottom:362.493333pt;}
.y29{bottom:369.986667pt;}
.y53{bottom:378.493333pt;}
.y28{bottom:385.986667pt;}
.y52{bottom:394.493333pt;}
.y27{bottom:401.986667pt;}
.y51{bottom:410.493333pt;}
.y26{bottom:417.986667pt;}
.y25{bottom:433.986667pt;}
.y65{bottom:444.826667pt;}
.y24{bottom:449.986667pt;}
.y64{bottom:462.426667pt;}
.y23{bottom:465.986667pt;}
.y22{bottom:481.986667pt;}
.y3a{bottom:492.226667pt;}
.y21{bottom:497.986667pt;}
.y20{bottom:513.986667pt;}
.y39{bottom:528.960000pt;}
.y1f{bottom:529.986667pt;}
.y46{bottom:543.840000pt;}
.y1e{bottom:549.093333pt;}
.y3f{bottom:550.906667pt;}
.y3e{bottom:560.506667pt;}
.y45{bottom:572.666667pt;}
.y44{bottom:582.266667pt;}
.y3d{bottom:589.306667pt;}
.y43{bottom:591.866667pt;}
.y3c{bottom:598.906667pt;}
.y42{bottom:601.466667pt;}
.y3b{bottom:608.506667pt;}
.y41{bottom:611.066667pt;}
.y40{bottom:620.666667pt;}
.y37{bottom:621.186667pt;}
.y36{bottom:637.213333pt;}
.y35{bottom:653.213333pt;}
.y66{bottom:662.533333pt;}
.y34{bottom:669.213333pt;}
.y1c{bottom:715.493333pt;}
.y1b{bottom:730.813333pt;}
.y50{bottom:764.773333pt;}
.y33{bottom:771.933333pt;}
.y4f{bottom:775.973333pt;}
.y32{bottom:787.933333pt;}
.y4e{bottom:788.293333pt;}
.y4d{bottom:803.173333pt;}
.y31{bottom:803.933333pt;}
.y4c{bottom:814.373333pt;}
.y30{bottom:819.933333pt;}
.y4b{bottom:826.693333pt;}
.y2f{bottom:835.933333pt;}
.y4a{bottom:842.693333pt;}
.y2e{bottom:851.933333pt;}
.y49{bottom:858.693333pt;}
.y48{bottom:874.693333pt;}
.y47{bottom:890.693333pt;}
.y1a{bottom:925.440000pt;}
.y76{bottom:936.986667pt;}
.y19{bottom:941.440000pt;}
.y75{bottom:951.386667pt;}
.y18{bottom:957.466667pt;}
.y74{bottom:965.786667pt;}
.y17{bottom:973.466667pt;}
.y73{bottom:980.186667pt;}
.y16{bottom:989.466667pt;}
.y72{bottom:994.586667pt;}
.y15{bottom:1005.466667pt;}
.y71{bottom:1008.986667pt;}
.y14{bottom:1021.466667pt;}
.y70{bottom:1023.426667pt;}
.y13{bottom:1037.466667pt;}
.y6f{bottom:1037.826667pt;}
.y6e{bottom:1052.226667pt;}
.y12{bottom:1053.466667pt;}
.y6d{bottom:1066.626667pt;}
.y11{bottom:1069.466667pt;}
.y6c{bottom:1081.026667pt;}
.y10{bottom:1085.466667pt;}
.yf{bottom:1101.466667pt;}
.y2d{bottom:1112.546667pt;}
.y2c{bottom:1128.546667pt;}
.ye{bottom:1136.666667pt;}
.yd{bottom:1152.666667pt;}
.y6b{bottom:1159.520000pt;}
.yc{bottom:1168.666667pt;}
.y6a{bottom:1181.920000pt;}
.yb{bottom:1184.666667pt;}
.ya{bottom:1200.666667pt;}
.y69{bottom:1207.613333pt;}
.y9{bottom:1216.666667pt;}
.y68{bottom:1230.013333pt;}
.y8{bottom:1232.666667pt;}
.y67{bottom:1242.813333pt;}
.y7{bottom:1248.666667pt;}
.y6{bottom:1264.706667pt;}
.y1d{bottom:1265.413333pt;}
.y84{bottom:1303.933333pt;}
.y5{bottom:1304.733333pt;}
.y38{bottom:1305.373333pt;}
.y3{bottom:1333.280000pt;}
.y2{bottom:1352.480000pt;}
.y1{bottom:1371.680000pt;}
.y4{bottom:1410.906667pt;}
.hb{height:32.461875pt;}
.ha{height:32.765625pt;}
.h12{height:37.499062pt;}
.hf{height:42.649687pt;}
.hd{height:43.905937pt;}
.h9{height:46.454062pt;}
.h4{height:47.742188pt;}
.h11{height:47.869500pt;}
.h10{height:49.148438pt;}
.h7{height:52.834688pt;}
.h8{height:52.962000pt;}
.h6{height:54.390938pt;}
.h5{height:54.522000pt;}
.h2{height:63.656250pt;}
.hc{height:64.697083pt;}
.he{height:95.105938pt;}
.h3{height:98.296875pt;}
.h1{height:1587.333333pt;}
.h0{height:1587.360000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.103986pt;}
.x18{left:9.631986pt;}
.x8{left:13.599986pt;}
.x16{left:14.687986pt;}
.x2{left:15.583986pt;}
.x11{left:23.423986pt;}
.x7{left:25.183986pt;}
.x14{left:30.687986pt;}
.x19{left:33.631986pt;}
.x9{left:38.271986pt;}
.x4{left:55.263986pt;}
.x17{left:62.687986pt;}
.x1{left:92.895986pt;}
.x12{left:139.839986pt;}
.x13{left:176.573319pt;}
.x15{left:250.426652pt;}
.x3{left:351.493319pt;}
.x1e{left:450.559986pt;}
.xb{left:497.413319pt;}
.x1b{left:498.719986pt;}
.xd{left:501.853319pt;}
.xa{left:504.293319pt;}
.xf{left:508.986652pt;}
.xc{left:515.333319pt;}
.xe{left:519.933319pt;}
.x1c{left:522.746652pt;}
.x10{left:527.066652pt;}
.x1d{left:546.746652pt;}
.x1a{left:656.573319pt;}
.x5{left:696.479986pt;}
}




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