
    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_10ba73c4b0703f08b3dcee21.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061035;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_a74d2876013d073c031ba608.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e1deb2008a54a61a3c9aa610.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d4dd25bb73242324710d754b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_5a18328f41b079399dfeb496.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_cbbbfca545de58e01d2187a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_fb55ad99bd265ad4763486ec.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v2{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.ls7{letter-spacing:7.344000px;}
.ls0{letter-spacing:1154.316000px;}
.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;}
}
.ws6{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws3{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-14.878200px;}
.ws0{word-spacing:-14.158200px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-5.181120px;}
._e{margin-left:-3.784320px;}
._4{margin-left:-2.649600px;}
._0{margin-left:-1.362240px;}
._1{width:1.284480px;}
._10{width:3.021120px;}
._2{width:4.305600px;}
._3{width:5.961600px;}
._14{width:7.070400px;}
._6{width:8.809920px;}
._5{width:10.068480px;}
._b{width:11.128320px;}
._c{width:12.133440px;}
._d{width:13.973520px;}
._18{width:15.192000px;}
._11{width:16.200000px;}
._25{width:17.789760px;}
._13{width:19.080000px;}
._12{width:20.304000px;}
._9{width:21.991680px;}
._15{width:23.992320px;}
._7{width:25.634880px;}
._8{width:27.092160px;}
._a{width:28.653120px;}
._1d{width:30.605760px;}
._16{width:31.608000px;}
._17{width:33.059520px;}
._23{width:35.078400px;}
._24{width:36.204480px;}
._20{width:37.440000px;}
._1a{width:39.816000px;}
._19{width:41.040000px;}
._1e{width:43.848000px;}
._1f{width:44.928000px;}
._1b{width:47.232000px;}
._1c{width:48.473760px;}
._21{width:51.108480px;}
._22{width:52.349760px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y36{bottom:5.220000px;}
.y69{bottom:120.960000px;}
.y34{bottom:121.140000px;}
.y71{bottom:122.580000px;}
.y98{bottom:125.820000px;}
.y68{bottom:141.696000px;}
.y33{bottom:141.876000px;}
.y70{bottom:143.316000px;}
.y97{bottom:144.756000px;}
.y67{bottom:162.390000px;}
.y32{bottom:162.570000px;}
.y96{bottom:163.830000px;}
.y6f{bottom:164.010000px;}
.y95{bottom:182.730000px;}
.y66{bottom:183.090000px;}
.y31{bottom:183.270000px;}
.y6e{bottom:184.710000px;}
.y94{bottom:201.810000px;}
.y65{bottom:203.790000px;}
.y30{bottom:203.970000px;}
.y6d{bottom:205.410000px;}
.y93{bottom:220.710000px;}
.y64{bottom:224.490000px;}
.y2f{bottom:224.670000px;}
.y6c{bottom:226.110000px;}
.y92{bottom:239.610000px;}
.y63{bottom:245.190000px;}
.y2e{bottom:245.370000px;}
.y6b{bottom:246.810000px;}
.y91{bottom:258.690000px;}
.y62{bottom:265.890000px;}
.y2d{bottom:266.070000px;}
.y6a{bottom:267.330000px;}
.y90{bottom:277.590000px;}
.y61{bottom:286.590000px;}
.y2c{bottom:286.770000px;}
.y8f{bottom:296.670000px;}
.y60{bottom:307.290000px;}
.y2b{bottom:307.470000px;}
.y8e{bottom:315.570000px;}
.y5f{bottom:327.990000px;}
.y2a{bottom:328.170000px;}
.y8d{bottom:334.470000px;}
.y5e{bottom:348.690000px;}
.y29{bottom:348.870000px;}
.y8c{bottom:353.550000px;}
.y5d{bottom:369.390000px;}
.y28{bottom:369.570000px;}
.y8b{bottom:372.450000px;}
.y5c{bottom:390.135000px;}
.y27{bottom:390.315000px;}
.y8a{bottom:391.575000px;}
.y89{bottom:410.475000px;}
.y5b{bottom:410.835000px;}
.y26{bottom:411.015000px;}
.y88{bottom:429.555000px;}
.y5a{bottom:431.535000px;}
.y25{bottom:432.075000px;}
.y87{bottom:448.455000px;}
.y59{bottom:452.235000px;}
.y24{bottom:454.575000px;}
.y86{bottom:467.355000px;}
.y58{bottom:472.935000px;}
.y23{bottom:473.655000px;}
.y85{bottom:486.435000px;}
.y22{bottom:492.555000px;}
.y57{bottom:493.635000px;}
.y84{bottom:505.335000px;}
.y21{bottom:511.635000px;}
.y56{bottom:514.335000px;}
.y83{bottom:524.415000px;}
.y20{bottom:530.535000px;}
.y55{bottom:535.035000px;}
.y82{bottom:543.315000px;}
.y1f{bottom:549.435000px;}
.y54{bottom:555.735000px;}
.y81{bottom:562.215000px;}
.y1e{bottom:568.515000px;}
.y53{bottom:576.435000px;}
.y80{bottom:581.295000px;}
.y1d{bottom:587.415000px;}
.y52{bottom:597.135000px;}
.y7f{bottom:600.195000px;}
.y1c{bottom:606.495000px;}
.y51{bottom:617.835000px;}
.y7e{bottom:619.275000px;}
.y1b{bottom:625.395000px;}
.y7d{bottom:638.175000px;}
.y50{bottom:638.535000px;}
.y1a{bottom:644.325000px;}
.y7c{bottom:657.105000px;}
.y4f{bottom:659.265000px;}
.y7b{bottom:676.185000px;}
.y4e{bottom:679.965000px;}
.y19{bottom:682.305000px;}
.y7a{bottom:695.085000px;}
.y4d{bottom:700.665000px;}
.y18{bottom:701.385000px;}
.y79{bottom:714.165000px;}
.y17{bottom:720.285000px;}
.y4c{bottom:721.365000px;}
.y78{bottom:733.065000px;}
.y16{bottom:739.185000px;}
.y4b{bottom:742.065000px;}
.y77{bottom:751.965000px;}
.y15{bottom:758.265000px;}
.y4a{bottom:762.765000px;}
.y76{bottom:771.045000px;}
.y14{bottom:777.165000px;}
.y49{bottom:783.465000px;}
.y75{bottom:789.945000px;}
.y13{bottom:796.245000px;}
.y48{bottom:803.985000px;}
.y74{bottom:809.025000px;}
.y12{bottom:815.145000px;}
.y47{bottom:824.685000px;}
.y73{bottom:827.925000px;}
.y11{bottom:834.045000px;}
.y46{bottom:845.385000px;}
.y72{bottom:846.825000px;}
.y10{bottom:853.125000px;}
.y45{bottom:866.085000px;}
.yf{bottom:872.025000px;}
.y44{bottom:886.785000px;}
.ye{bottom:891.105000px;}
.y43{bottom:907.530000px;}
.yd{bottom:910.050000px;}
.y42{bottom:928.230000px;}
.yc{bottom:929.130000px;}
.yb{bottom:948.030000px;}
.y41{bottom:948.930000px;}
.ya{bottom:966.930000px;}
.y40{bottom:969.630000px;}
.y9{bottom:986.010000px;}
.y3f{bottom:990.330000px;}
.y8{bottom:1004.910000px;}
.y3e{bottom:1011.030000px;}
.y7{bottom:1023.990000px;}
.y3d{bottom:1031.730000px;}
.y9e{bottom:1041.810000px;}
.y6{bottom:1042.890000px;}
.y3c{bottom:1052.430000px;}
.y9d{bottom:1060.890000px;}
.y5{bottom:1064.130000px;}
.y3b{bottom:1073.130000px;}
.y9c{bottom:1079.790000px;}
.y4{bottom:1084.110000px;}
.y3a{bottom:1093.830000px;}
.y9b{bottom:1098.870000px;}
.y3{bottom:1108.230000px;}
.y39{bottom:1114.530000px;}
.y9a{bottom:1117.770000px;}
.y2{bottom:1132.350000px;}
.y38{bottom:1135.230000px;}
.y99{bottom:1136.670000px;}
.y35{bottom:1199.700000px;}
.y1{bottom:1204.920000px;}
.y37{bottom:1219.680000px;}
.h9{height:22.500000px;}
.hd{height:46.251562px;}
.ha{height:55.825312px;}
.hb{height:58.651172px;}
.h5{height:64.978594px;}
.h2{height:65.010937px;}
.h4{height:66.757500px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.hc{height:74.004654px;}
.h6{height:79.850391px;}
.h3{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:346.215000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.xf{left:3.060000px;}
.xd{left:111.095987px;}
.x17{left:113.075987px;}
.x11{left:120.095987px;}
.xe{left:124.596000px;}
.x16{left:126.935987px;}
.x13{left:144.935987px;}
.x14{left:151.589987px;}
.x10{left:153.569987px;}
.x2{left:163.289987px;}
.x15{left:165.089987px;}
.x12{left:178.589987px;}
.x6{left:185.609987px;}
.x3{left:190.109987px;}
.x8{left:198.389987px;}
.x7{left:238.709987px;}
.xa{left:335.774987px;}
.x4{left:338.654987px;}
.x9{left:344.774987px;}
.xc{left:406.154987px;}
.xb{left:446.684987px;}
.x5{left:448.664987px;}
.x1{left:607.289987px;}
@media print{
.v2{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls7{letter-spacing:6.528000pt;}
.ls0{letter-spacing:1026.058667pt;}
.ws6{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws3{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.225067pt;}
.ws0{word-spacing:-12.585067pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-4.605440pt;}
._e{margin-left:-3.363840pt;}
._4{margin-left:-2.355200pt;}
._0{margin-left:-1.210880pt;}
._1{width:1.141760pt;}
._10{width:2.685440pt;}
._2{width:3.827200pt;}
._3{width:5.299200pt;}
._14{width:6.284800pt;}
._6{width:7.831040pt;}
._5{width:8.949760pt;}
._b{width:9.891840pt;}
._c{width:10.785280pt;}
._d{width:12.420907pt;}
._18{width:13.504000pt;}
._11{width:14.400000pt;}
._25{width:15.813120pt;}
._13{width:16.960000pt;}
._12{width:18.048000pt;}
._9{width:19.548160pt;}
._15{width:21.326507pt;}
._7{width:22.786560pt;}
._8{width:24.081920pt;}
._a{width:25.469440pt;}
._1d{width:27.205120pt;}
._16{width:28.096000pt;}
._17{width:29.386240pt;}
._23{width:31.180800pt;}
._24{width:32.181760pt;}
._20{width:33.280000pt;}
._1a{width:35.392000pt;}
._19{width:36.480000pt;}
._1e{width:38.976000pt;}
._1f{width:39.936000pt;}
._1b{width:41.984000pt;}
._1c{width:43.087787pt;}
._21{width:45.429760pt;}
._22{width:46.533120pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:4.640000pt;}
.y69{bottom:107.520000pt;}
.y34{bottom:107.680000pt;}
.y71{bottom:108.960000pt;}
.y98{bottom:111.840000pt;}
.y68{bottom:125.952000pt;}
.y33{bottom:126.112000pt;}
.y70{bottom:127.392000pt;}
.y97{bottom:128.672000pt;}
.y67{bottom:144.346667pt;}
.y32{bottom:144.506667pt;}
.y96{bottom:145.626667pt;}
.y6f{bottom:145.786667pt;}
.y95{bottom:162.426667pt;}
.y66{bottom:162.746667pt;}
.y31{bottom:162.906667pt;}
.y6e{bottom:164.186667pt;}
.y94{bottom:179.386667pt;}
.y65{bottom:181.146667pt;}
.y30{bottom:181.306667pt;}
.y6d{bottom:182.586667pt;}
.y93{bottom:196.186667pt;}
.y64{bottom:199.546667pt;}
.y2f{bottom:199.706667pt;}
.y6c{bottom:200.986667pt;}
.y92{bottom:212.986667pt;}
.y63{bottom:217.946667pt;}
.y2e{bottom:218.106667pt;}
.y6b{bottom:219.386667pt;}
.y91{bottom:229.946667pt;}
.y62{bottom:236.346667pt;}
.y2d{bottom:236.506667pt;}
.y6a{bottom:237.626667pt;}
.y90{bottom:246.746667pt;}
.y61{bottom:254.746667pt;}
.y2c{bottom:254.906667pt;}
.y8f{bottom:263.706667pt;}
.y60{bottom:273.146667pt;}
.y2b{bottom:273.306667pt;}
.y8e{bottom:280.506667pt;}
.y5f{bottom:291.546667pt;}
.y2a{bottom:291.706667pt;}
.y8d{bottom:297.306667pt;}
.y5e{bottom:309.946667pt;}
.y29{bottom:310.106667pt;}
.y8c{bottom:314.266667pt;}
.y5d{bottom:328.346667pt;}
.y28{bottom:328.506667pt;}
.y8b{bottom:331.066667pt;}
.y5c{bottom:346.786667pt;}
.y27{bottom:346.946667pt;}
.y8a{bottom:348.066667pt;}
.y89{bottom:364.866667pt;}
.y5b{bottom:365.186667pt;}
.y26{bottom:365.346667pt;}
.y88{bottom:381.826667pt;}
.y5a{bottom:383.586667pt;}
.y25{bottom:384.066667pt;}
.y87{bottom:398.626667pt;}
.y59{bottom:401.986667pt;}
.y24{bottom:404.066667pt;}
.y86{bottom:415.426667pt;}
.y58{bottom:420.386667pt;}
.y23{bottom:421.026667pt;}
.y85{bottom:432.386667pt;}
.y22{bottom:437.826667pt;}
.y57{bottom:438.786667pt;}
.y84{bottom:449.186667pt;}
.y21{bottom:454.786667pt;}
.y56{bottom:457.186667pt;}
.y83{bottom:466.146667pt;}
.y20{bottom:471.586667pt;}
.y55{bottom:475.586667pt;}
.y82{bottom:482.946667pt;}
.y1f{bottom:488.386667pt;}
.y54{bottom:493.986667pt;}
.y81{bottom:499.746667pt;}
.y1e{bottom:505.346667pt;}
.y53{bottom:512.386667pt;}
.y80{bottom:516.706667pt;}
.y1d{bottom:522.146667pt;}
.y52{bottom:530.786667pt;}
.y7f{bottom:533.506667pt;}
.y1c{bottom:539.106667pt;}
.y51{bottom:549.186667pt;}
.y7e{bottom:550.466667pt;}
.y1b{bottom:555.906667pt;}
.y7d{bottom:567.266667pt;}
.y50{bottom:567.586667pt;}
.y1a{bottom:572.733333pt;}
.y7c{bottom:584.093333pt;}
.y4f{bottom:586.013333pt;}
.y7b{bottom:601.053333pt;}
.y4e{bottom:604.413333pt;}
.y19{bottom:606.493333pt;}
.y7a{bottom:617.853333pt;}
.y4d{bottom:622.813333pt;}
.y18{bottom:623.453333pt;}
.y79{bottom:634.813333pt;}
.y17{bottom:640.253333pt;}
.y4c{bottom:641.213333pt;}
.y78{bottom:651.613333pt;}
.y16{bottom:657.053333pt;}
.y4b{bottom:659.613333pt;}
.y77{bottom:668.413333pt;}
.y15{bottom:674.013333pt;}
.y4a{bottom:678.013333pt;}
.y76{bottom:685.373333pt;}
.y14{bottom:690.813333pt;}
.y49{bottom:696.413333pt;}
.y75{bottom:702.173333pt;}
.y13{bottom:707.773333pt;}
.y48{bottom:714.653333pt;}
.y74{bottom:719.133333pt;}
.y12{bottom:724.573333pt;}
.y47{bottom:733.053333pt;}
.y73{bottom:735.933333pt;}
.y11{bottom:741.373333pt;}
.y46{bottom:751.453333pt;}
.y72{bottom:752.733333pt;}
.y10{bottom:758.333333pt;}
.y45{bottom:769.853333pt;}
.yf{bottom:775.133333pt;}
.y44{bottom:788.253333pt;}
.ye{bottom:792.093333pt;}
.y43{bottom:806.693333pt;}
.yd{bottom:808.933333pt;}
.y42{bottom:825.093333pt;}
.yc{bottom:825.893333pt;}
.yb{bottom:842.693333pt;}
.y41{bottom:843.493333pt;}
.ya{bottom:859.493333pt;}
.y40{bottom:861.893333pt;}
.y9{bottom:876.453333pt;}
.y3f{bottom:880.293333pt;}
.y8{bottom:893.253333pt;}
.y3e{bottom:898.693333pt;}
.y7{bottom:910.213333pt;}
.y3d{bottom:917.093333pt;}
.y9e{bottom:926.053333pt;}
.y6{bottom:927.013333pt;}
.y3c{bottom:935.493333pt;}
.y9d{bottom:943.013333pt;}
.y5{bottom:945.893333pt;}
.y3b{bottom:953.893333pt;}
.y9c{bottom:959.813333pt;}
.y4{bottom:963.653333pt;}
.y3a{bottom:972.293333pt;}
.y9b{bottom:976.773333pt;}
.y3{bottom:985.093333pt;}
.y39{bottom:990.693333pt;}
.y9a{bottom:993.573333pt;}
.y2{bottom:1006.533333pt;}
.y38{bottom:1009.093333pt;}
.y99{bottom:1010.373333pt;}
.y35{bottom:1066.400000pt;}
.y1{bottom:1071.040000pt;}
.y37{bottom:1084.160000pt;}
.h9{height:20.000000pt;}
.hd{height:41.112500pt;}
.ha{height:49.622500pt;}
.hb{height:52.134375pt;}
.h5{height:57.758750pt;}
.h2{height:57.787500pt;}
.h4{height:59.340000pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.hc{height:65.781915pt;}
.h6{height:70.978125pt;}
.h3{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:307.746667pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.xf{left:2.720000pt;}
.xd{left:98.751988pt;}
.x17{left:100.511988pt;}
.x11{left:106.751988pt;}
.xe{left:110.752000pt;}
.x16{left:112.831988pt;}
.x13{left:128.831988pt;}
.x14{left:134.746655pt;}
.x10{left:136.506655pt;}
.x2{left:145.146655pt;}
.x15{left:146.746655pt;}
.x12{left:158.746655pt;}
.x6{left:164.986655pt;}
.x3{left:168.986655pt;}
.x8{left:176.346655pt;}
.x7{left:212.186655pt;}
.xa{left:298.466655pt;}
.x4{left:301.026655pt;}
.x9{left:306.466655pt;}
.xc{left:361.026655pt;}
.xb{left:397.053321pt;}
.x5{left:398.813321pt;}
.x1{left:539.813322pt;}
}




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