
    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_c608b70ad58a3f9c25d4998f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_7a3330aa1688f063d6dde372.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_f36830714af561c3aaf64fff.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_664b096d1ddabeb5dc4c5501.woff')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_408d4e7d9c0391dbef425a40.woff')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_49d7b0dc9020d0f6a22450c1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.942000px;}
.lse{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.152400px;}
.ls10{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.034560px;}
.ls8{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.lsa{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.684000px;}
.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;}
}
.ws3{word-spacing:-20.124000px;}
.ws9{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.450800px;}
.wsa{word-spacing:-16.407600px;}
.ws0{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.680200px;}
.ws2{word-spacing:-13.860000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._18{margin-left:-12.960000px;}
._14{margin-left:-3.532800px;}
._5{margin-left:-2.464080px;}
._2{margin-left:-1.254240px;}
._0{width:1.015920px;}
._6{width:2.562960px;}
._b{width:3.757920px;}
._d{width:5.617440px;}
._c{width:6.871680px;}
._7{width:8.246880px;}
._8{width:9.621360px;}
._9{width:10.936080px;}
._a{width:12.669120px;}
._15{width:13.888800px;}
._16{width:15.094080px;}
._e{width:16.222800px;}
._17{width:18.348480px;}
._11{width:19.601280px;}
._f{width:20.796480px;}
._13{width:21.844080px;}
._10{width:23.441280px;}
._19{width:30.072960px;}
._1a{width:38.882880px;}
._12{width:167.352960px;}
._1b{width:218.965440px;}
._4{width:443.820000px;}
._3{width:1042.168800px;}
._1{width:1281.216000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:6.120000px;}
.y45{bottom:6.300000px;}
.y48{bottom:58.500000px;}
.y6{bottom:59.220000px;}
.y5{bottom:75.780000px;}
.y80{bottom:92.520000px;}
.y7f{bottom:113.580000px;}
.y40{bottom:123.660000px;}
.y7e{bottom:132.480000px;}
.y3f{bottom:142.596000px;}
.y7d{bottom:151.590000px;}
.yb5{bottom:153.030000px;}
.y3e{bottom:161.670000px;}
.y7c{bottom:170.490000px;}
.yb4{bottom:171.930000px;}
.y3d{bottom:180.570000px;}
.y7b{bottom:189.390000px;}
.yb3{bottom:191.010000px;}
.y3c{bottom:199.650000px;}
.y7a{bottom:208.470000px;}
.yb2{bottom:209.910000px;}
.y3b{bottom:218.550000px;}
.y79{bottom:227.370000px;}
.yb1{bottom:228.810000px;}
.y3a{bottom:237.450000px;}
.y78{bottom:246.450000px;}
.yb0{bottom:247.890000px;}
.y39{bottom:256.530000px;}
.y77{bottom:265.350000px;}
.yaf{bottom:266.790000px;}
.y38{bottom:275.430000px;}
.y76{bottom:284.250000px;}
.yae{bottom:285.870000px;}
.y37{bottom:294.510000px;}
.y75{bottom:303.330000px;}
.yad{bottom:304.770000px;}
.y36{bottom:313.410000px;}
.y74{bottom:322.230000px;}
.yac{bottom:323.670000px;}
.y35{bottom:331.230000px;}
.y73{bottom:341.310000px;}
.yab{bottom:342.750000px;}
.y34{bottom:345.090000px;}
.y33{bottom:359.490000px;}
.y72{bottom:360.210000px;}
.yaa{bottom:361.650000px;}
.y32{bottom:376.770000px;}
.y71{bottom:379.110000px;}
.ya9{bottom:380.730000px;}
.y31{bottom:394.095000px;}
.y70{bottom:398.235000px;}
.ya8{bottom:399.675000px;}
.y30{bottom:411.375000px;}
.y6f{bottom:417.135000px;}
.ya7{bottom:418.755000px;}
.y2f{bottom:428.655000px;}
.y6e{bottom:436.215000px;}
.ya6{bottom:437.655000px;}
.y2e{bottom:445.755000px;}
.y6d{bottom:455.115000px;}
.ya5{bottom:456.555000px;}
.y2d{bottom:463.035000px;}
.y6c{bottom:474.015000px;}
.ya4{bottom:475.635000px;}
.y2c{bottom:480.315000px;}
.y6b{bottom:493.095000px;}
.ya3{bottom:494.535000px;}
.y2b{bottom:497.595000px;}
.y6a{bottom:511.995000px;}
.ya2{bottom:513.615000px;}
.y2a{bottom:514.875000px;}
.y69{bottom:531.075000px;}
.y29{bottom:532.155000px;}
.ya1{bottom:532.515000px;}
.y28{bottom:549.255000px;}
.y68{bottom:549.975000px;}
.ya0{bottom:551.415000px;}
.y27{bottom:566.535000px;}
.y67{bottom:568.875000px;}
.y9f{bottom:570.495000px;}
.y26{bottom:583.815000px;}
.y66{bottom:587.955000px;}
.y9e{bottom:589.395000px;}
.y25{bottom:601.095000px;}
.y65{bottom:606.855000px;}
.y9d{bottom:608.475000px;}
.y24{bottom:618.375000px;}
.y64{bottom:625.935000px;}
.y9c{bottom:627.375000px;}
.y23{bottom:635.475000px;}
.y63{bottom:644.865000px;}
.y9b{bottom:646.305000px;}
.y22{bottom:652.785000px;}
.y62{bottom:663.945000px;}
.y9a{bottom:665.385000px;}
.y21{bottom:670.065000px;}
.y61{bottom:682.845000px;}
.y99{bottom:684.285000px;}
.y20{bottom:687.345000px;}
.y60{bottom:701.745000px;}
.y98{bottom:703.365000px;}
.y1f{bottom:704.625000px;}
.y5f{bottom:720.825000px;}
.y1e{bottom:721.905000px;}
.y97{bottom:722.265000px;}
.y1d{bottom:739.005000px;}
.y5e{bottom:739.725000px;}
.y96{bottom:741.165000px;}
.y1c{bottom:756.285000px;}
.y5d{bottom:758.805000px;}
.y95{bottom:760.245000px;}
.y1b{bottom:773.565000px;}
.y5c{bottom:777.705000px;}
.y94{bottom:779.145000px;}
.y1a{bottom:790.845000px;}
.y5b{bottom:796.605000px;}
.y93{bottom:798.225000px;}
.y19{bottom:808.125000px;}
.y5a{bottom:815.685000px;}
.y92{bottom:817.125000px;}
.y18{bottom:825.405000px;}
.y59{bottom:834.585000px;}
.y91{bottom:836.025000px;}
.y17{bottom:842.505000px;}
.y58{bottom:853.665000px;}
.y90{bottom:855.105000px;}
.y16{bottom:859.785000px;}
.y57{bottom:872.565000px;}
.y8f{bottom:874.005000px;}
.y15{bottom:877.065000px;}
.y56{bottom:891.465000px;}
.y8e{bottom:893.130000px;}
.y14{bottom:894.750000px;}
.y55{bottom:910.590000px;}
.y8d{bottom:912.030000px;}
.y13{bottom:913.290000px;}
.y54{bottom:929.490000px;}
.y8c{bottom:931.110000px;}
.y12{bottom:935.790000px;}
.y11{bottom:948.210000px;}
.y53{bottom:948.570000px;}
.y8b{bottom:950.010000px;}
.y10{bottom:967.290000px;}
.y52{bottom:967.470000px;}
.y8a{bottom:968.910000px;}
.y51{bottom:986.370000px;}
.yf{bottom:986.730000px;}
.y89{bottom:987.990000px;}
.y50{bottom:1005.450000px;}
.y88{bottom:1006.890000px;}
.ye{bottom:1009.050000px;}
.y4f{bottom:1024.350000px;}
.y87{bottom:1025.970000px;}
.yd{bottom:1031.550000px;}
.y4e{bottom:1043.430000px;}
.y86{bottom:1044.870000px;}
.yc{bottom:1053.510000px;}
.y4d{bottom:1062.330000px;}
.y85{bottom:1063.770000px;}
.yb{bottom:1072.050000px;}
.y4c{bottom:1081.230000px;}
.y84{bottom:1082.850000px;}
.ya{bottom:1089.330000px;}
.y4b{bottom:1100.310000px;}
.y83{bottom:1101.750000px;}
.y9{bottom:1106.610000px;}
.y4a{bottom:1119.210000px;}
.y82{bottom:1120.830000px;}
.y8{bottom:1123.710000px;}
.y49{bottom:1138.290000px;}
.y81{bottom:1139.730000px;}
.y7{bottom:1140.990000px;}
.y47{bottom:1156.860000px;}
.y46{bottom:1174.140000px;}
.y4{bottom:1175.940000px;}
.y44{bottom:1188.000000px;}
.y2{bottom:1189.980000px;}
.y43{bottom:1214.640000px;}
.y42{bottom:1231.740000px;}
.y1{bottom:1233.720000px;}
.y41{bottom:1249.020000px;}
.h3{height:23.220000px;}
.he{height:23.400000px;}
.ha{height:27.147656px;}
.hc{height:33.683203px;}
.h2{height:34.036523px;}
.h6{height:36.768867px;}
.h5{height:41.726953px;}
.h4{height:41.843672px;}
.h7{height:42.164648px;}
.hb{height:45.549492px;}
.hd{height:46.251562px;}
.h8{height:46.736719px;}
.hf{height:50.488594px;}
.h9{height:54.864844px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:62.100000px;}
.w4{width:618.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.920000px;}
.x3{left:16.020000px;}
.x12{left:102.455987px;}
.x2{left:108.036000px;}
.x6{left:113.255987px;}
.x7{left:122.435987px;}
.x13{left:140.075987px;}
.x11{left:155.549987px;}
.x10{left:157.529987px;}
.xf{left:161.129987px;}
.x8{left:165.269987px;}
.x4{left:170.130000px;}
.xb{left:182.729987px;}
.xc{left:324.794987px;}
.xa{left:376.814987px;}
.xd{left:418.574987px;}
.xe{left:420.194987px;}
.x1{left:445.034987px;}
.x9{left:446.474987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.837333pt;}
.lse{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.135467pt;}
.ls10{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.lsa{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.608000pt;}
.ws3{word-spacing:-17.888000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.622933pt;}
.wsa{word-spacing:-14.584533pt;}
.ws0{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.320000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._18{margin-left:-11.520000pt;}
._14{margin-left:-3.140267pt;}
._5{margin-left:-2.190293pt;}
._2{margin-left:-1.114880pt;}
._0{width:0.903040pt;}
._6{width:2.278187pt;}
._b{width:3.340373pt;}
._d{width:4.993280pt;}
._c{width:6.108160pt;}
._7{width:7.330560pt;}
._8{width:8.552320pt;}
._9{width:9.720960pt;}
._a{width:11.261440pt;}
._15{width:12.345600pt;}
._16{width:13.416960pt;}
._e{width:14.420267pt;}
._17{width:16.309760pt;}
._11{width:17.423360pt;}
._f{width:18.485760pt;}
._13{width:19.416960pt;}
._10{width:20.836693pt;}
._19{width:26.731520pt;}
._1a{width:34.562560pt;}
._12{width:148.758187pt;}
._1b{width:194.635947pt;}
._4{width:394.506667pt;}
._3{width:926.372267pt;}
._1{width:1138.858667pt;}
.fs4{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:5.440000pt;}
.y45{bottom:5.600000pt;}
.y48{bottom:52.000000pt;}
.y6{bottom:52.640000pt;}
.y5{bottom:67.360000pt;}
.y80{bottom:82.240000pt;}
.y7f{bottom:100.960000pt;}
.y40{bottom:109.920000pt;}
.y7e{bottom:117.760000pt;}
.y3f{bottom:126.752000pt;}
.y7d{bottom:134.746667pt;}
.yb5{bottom:136.026667pt;}
.y3e{bottom:143.706667pt;}
.y7c{bottom:151.546667pt;}
.yb4{bottom:152.826667pt;}
.y3d{bottom:160.506667pt;}
.y7b{bottom:168.346667pt;}
.yb3{bottom:169.786667pt;}
.y3c{bottom:177.466667pt;}
.y7a{bottom:185.306667pt;}
.yb2{bottom:186.586667pt;}
.y3b{bottom:194.266667pt;}
.y79{bottom:202.106667pt;}
.yb1{bottom:203.386667pt;}
.y3a{bottom:211.066667pt;}
.y78{bottom:219.066667pt;}
.yb0{bottom:220.346667pt;}
.y39{bottom:228.026667pt;}
.y77{bottom:235.866667pt;}
.yaf{bottom:237.146667pt;}
.y38{bottom:244.826667pt;}
.y76{bottom:252.666667pt;}
.yae{bottom:254.106667pt;}
.y37{bottom:261.786667pt;}
.y75{bottom:269.626667pt;}
.yad{bottom:270.906667pt;}
.y36{bottom:278.586667pt;}
.y74{bottom:286.426667pt;}
.yac{bottom:287.706667pt;}
.y35{bottom:294.426667pt;}
.y73{bottom:303.386667pt;}
.yab{bottom:304.666667pt;}
.y34{bottom:306.746667pt;}
.y33{bottom:319.546667pt;}
.y72{bottom:320.186667pt;}
.yaa{bottom:321.466667pt;}
.y32{bottom:334.906667pt;}
.y71{bottom:336.986667pt;}
.ya9{bottom:338.426667pt;}
.y31{bottom:350.306667pt;}
.y70{bottom:353.986667pt;}
.ya8{bottom:355.266667pt;}
.y30{bottom:365.666667pt;}
.y6f{bottom:370.786667pt;}
.ya7{bottom:372.226667pt;}
.y2f{bottom:381.026667pt;}
.y6e{bottom:387.746667pt;}
.ya6{bottom:389.026667pt;}
.y2e{bottom:396.226667pt;}
.y6d{bottom:404.546667pt;}
.ya5{bottom:405.826667pt;}
.y2d{bottom:411.586667pt;}
.y6c{bottom:421.346667pt;}
.ya4{bottom:422.786667pt;}
.y2c{bottom:426.946667pt;}
.y6b{bottom:438.306667pt;}
.ya3{bottom:439.586667pt;}
.y2b{bottom:442.306667pt;}
.y6a{bottom:455.106667pt;}
.ya2{bottom:456.546667pt;}
.y2a{bottom:457.666667pt;}
.y69{bottom:472.066667pt;}
.y29{bottom:473.026667pt;}
.ya1{bottom:473.346667pt;}
.y28{bottom:488.226667pt;}
.y68{bottom:488.866667pt;}
.ya0{bottom:490.146667pt;}
.y27{bottom:503.586667pt;}
.y67{bottom:505.666667pt;}
.y9f{bottom:507.106667pt;}
.y26{bottom:518.946667pt;}
.y66{bottom:522.626667pt;}
.y9e{bottom:523.906667pt;}
.y25{bottom:534.306667pt;}
.y65{bottom:539.426667pt;}
.y9d{bottom:540.866667pt;}
.y24{bottom:549.666667pt;}
.y64{bottom:556.386667pt;}
.y9c{bottom:557.666667pt;}
.y23{bottom:564.866667pt;}
.y63{bottom:573.213333pt;}
.y9b{bottom:574.493333pt;}
.y22{bottom:580.253333pt;}
.y62{bottom:590.173333pt;}
.y9a{bottom:591.453333pt;}
.y21{bottom:595.613333pt;}
.y61{bottom:606.973333pt;}
.y99{bottom:608.253333pt;}
.y20{bottom:610.973333pt;}
.y60{bottom:623.773333pt;}
.y98{bottom:625.213333pt;}
.y1f{bottom:626.333333pt;}
.y5f{bottom:640.733333pt;}
.y1e{bottom:641.693333pt;}
.y97{bottom:642.013333pt;}
.y1d{bottom:656.893333pt;}
.y5e{bottom:657.533333pt;}
.y96{bottom:658.813333pt;}
.y1c{bottom:672.253333pt;}
.y5d{bottom:674.493333pt;}
.y95{bottom:675.773333pt;}
.y1b{bottom:687.613333pt;}
.y5c{bottom:691.293333pt;}
.y94{bottom:692.573333pt;}
.y1a{bottom:702.973333pt;}
.y5b{bottom:708.093333pt;}
.y93{bottom:709.533333pt;}
.y19{bottom:718.333333pt;}
.y5a{bottom:725.053333pt;}
.y92{bottom:726.333333pt;}
.y18{bottom:733.693333pt;}
.y59{bottom:741.853333pt;}
.y91{bottom:743.133333pt;}
.y17{bottom:748.893333pt;}
.y58{bottom:758.813333pt;}
.y90{bottom:760.093333pt;}
.y16{bottom:764.253333pt;}
.y57{bottom:775.613333pt;}
.y8f{bottom:776.893333pt;}
.y15{bottom:779.613333pt;}
.y56{bottom:792.413333pt;}
.y8e{bottom:793.893333pt;}
.y14{bottom:795.333333pt;}
.y55{bottom:809.413333pt;}
.y8d{bottom:810.693333pt;}
.y13{bottom:811.813333pt;}
.y54{bottom:826.213333pt;}
.y8c{bottom:827.653333pt;}
.y12{bottom:831.813333pt;}
.y11{bottom:842.853333pt;}
.y53{bottom:843.173333pt;}
.y8b{bottom:844.453333pt;}
.y10{bottom:859.813333pt;}
.y52{bottom:859.973333pt;}
.y8a{bottom:861.253333pt;}
.y51{bottom:876.773333pt;}
.yf{bottom:877.093333pt;}
.y89{bottom:878.213333pt;}
.y50{bottom:893.733333pt;}
.y88{bottom:895.013333pt;}
.ye{bottom:896.933333pt;}
.y4f{bottom:910.533333pt;}
.y87{bottom:911.973333pt;}
.yd{bottom:916.933333pt;}
.y4e{bottom:927.493333pt;}
.y86{bottom:928.773333pt;}
.yc{bottom:936.453333pt;}
.y4d{bottom:944.293333pt;}
.y85{bottom:945.573333pt;}
.yb{bottom:952.933333pt;}
.y4c{bottom:961.093333pt;}
.y84{bottom:962.533333pt;}
.ya{bottom:968.293333pt;}
.y4b{bottom:978.053333pt;}
.y83{bottom:979.333333pt;}
.y9{bottom:983.653333pt;}
.y4a{bottom:994.853333pt;}
.y82{bottom:996.293333pt;}
.y8{bottom:998.853333pt;}
.y49{bottom:1011.813333pt;}
.y81{bottom:1013.093333pt;}
.y7{bottom:1014.213333pt;}
.y47{bottom:1028.320000pt;}
.y46{bottom:1043.680000pt;}
.y4{bottom:1045.280000pt;}
.y44{bottom:1056.000000pt;}
.y2{bottom:1057.760000pt;}
.y43{bottom:1079.680000pt;}
.y42{bottom:1094.880000pt;}
.y1{bottom:1096.640000pt;}
.y41{bottom:1110.240000pt;}
.h3{height:20.640000pt;}
.he{height:20.800000pt;}
.ha{height:24.131250pt;}
.hc{height:29.940625pt;}
.h2{height:30.254687pt;}
.h6{height:32.683437pt;}
.h5{height:37.090625pt;}
.h4{height:37.194375pt;}
.h7{height:37.479688pt;}
.hb{height:40.488438pt;}
.hd{height:41.112500pt;}
.h8{height:41.543750pt;}
.hf{height:44.878750pt;}
.h9{height:48.768750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:55.200000pt;}
.w4{width:549.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.040000pt;}
.x3{left:14.240000pt;}
.x12{left:91.071988pt;}
.x2{left:96.032000pt;}
.x6{left:100.671988pt;}
.x7{left:108.831988pt;}
.x13{left:124.511988pt;}
.x11{left:138.266655pt;}
.x10{left:140.026655pt;}
.xf{left:143.226655pt;}
.x8{left:146.906655pt;}
.x4{left:151.226667pt;}
.xb{left:162.426655pt;}
.xc{left:288.706655pt;}
.xa{left:334.946655pt;}
.xd{left:372.066655pt;}
.xe{left:373.506655pt;}
.x1{left:395.586655pt;}
.x9{left:396.866655pt;}
}




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