
    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_49f425742ba654f7dbca5bf8.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_596c46aa3f357dc0d01d47b8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bfffe79698fdc1fe00383418.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_736da47d83d53b51941e9a46.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_ceda7701f6242228fdb46638.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_6648daeea3ee944b379ef8b5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b23a8b224234e45da33c2a3d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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:-61.920000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.ls1b{letter-spacing:-1.662000px;}
.ls12{letter-spacing:-1.392000px;}
.ls10{letter-spacing:-0.990000px;}
.ls18{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.828000px;}
.ls17{letter-spacing:-0.672000px;}
.ls4{letter-spacing:-0.630000px;}
.lse{letter-spacing:-0.496200px;}
.ls1c{letter-spacing:-0.486600px;}
.ls19{letter-spacing:-0.450600px;}
.ls16{letter-spacing:-0.405600px;}
.lsd{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.269400px;}
.lsb{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.181200px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.045360px;}
.ls8{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.089280px;}
.ls6{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.192960px;}
.ls11{letter-spacing:0.223800px;}
.ls13{letter-spacing:0.314400px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.900000px;}
.ls7{letter-spacing:1.080000px;}
.ls2{letter-spacing:3.060000px;}
.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;}
}
.ws7{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.672000px;}
.ws13{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.374400px;}
.wsf{word-spacing:-12.283800px;}
.ws15{word-spacing:-12.105360px;}
.ws6{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.878800px;}
.wsd{word-spacing:-11.790600px;}
.ws12{word-spacing:-11.700000px;}
.ws16{word-spacing:-11.654400px;}
.ws19{word-spacing:-11.609400px;}
.wsc{word-spacing:-11.563800px;}
.ws17{word-spacing:-11.388000px;}
.ws18{word-spacing:-11.160000px;}
.wse{word-spacing:-11.070000px;}
.ws10{word-spacing:-10.668000px;}
.ws1{word-spacing:-10.440000px;}
.ws1a{word-spacing:-10.398000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:-7.560000px;}
.ws1b{word-spacing:-7.073400px;}
.ws8{word-spacing:0.000000px;}
._7{margin-left:-3.884400px;}
._8{margin-left:-2.833200px;}
._1{margin-left:-1.162080px;}
._0{width:1.512000px;}
._2{width:2.628000px;}
._3{width:4.362240px;}
._6{width:6.025680px;}
._5{width:7.139520px;}
._c{width:8.246880px;}
._e{width:9.749520px;}
._a{width:10.756800px;}
._17{width:12.139920px;}
._18{width:13.932480px;}
._2e{width:15.041040px;}
._f{width:16.075440px;}
._b{width:17.151120px;}
._10{width:18.704880px;}
._11{width:20.052000px;}
._12{width:21.559680px;}
._9{width:22.589280px;}
._14{width:24.143040px;}
._13{width:25.756560px;}
._d{width:27.011520px;}
._15{width:28.036080px;}
._16{width:29.282400px;}
._19{width:30.459600px;}
._24{width:32.210640px;}
._1d{width:34.122960px;}
._1c{width:35.318160px;}
._23{width:36.812160px;}
._22{width:38.425680px;}
._25{width:40.278240px;}
._2b{width:41.951520px;}
._2a{width:43.266240px;}
._29{width:44.341920px;}
._26{width:46.612800px;}
._27{width:48.823920px;}
._21{width:50.578320px;}
._20{width:52.212240px;}
._1f{width:53.544960px;}
._28{width:55.756080px;}
._2d{width:61.953120px;}
._2c{width:64.002960px;}
._1a{width:68.048640px;}
._1b{width:69.067440px;}
._2f{width:71.364720px;}
._30{width:72.452160px;}
._31{width:100.966320px;}
._32{width:102.124080px;}
._4{width:554.807280px;}
._1e{width:1074.865920px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.160000px;}
.y3e{bottom:116.820000px;}
.y7d{bottom:123.120000px;}
.y3d{bottom:133.200000px;}
.y7c{bottom:139.680000px;}
.y3c{bottom:149.760000px;}
.y7b{bottom:156.060000px;}
.y3b{bottom:166.320000px;}
.y7a{bottom:172.620000px;}
.y3a{bottom:182.700000px;}
.y79{bottom:189.180000px;}
.y39{bottom:199.290000px;}
.y78{bottom:205.590000px;}
.y38{bottom:215.850000px;}
.y77{bottom:222.150000px;}
.y37{bottom:232.230000px;}
.y76{bottom:238.710000px;}
.y36{bottom:248.790000px;}
.y75{bottom:255.090000px;}
.y35{bottom:265.350000px;}
.y74{bottom:271.650000px;}
.y34{bottom:281.730000px;}
.y73{bottom:288.210000px;}
.y33{bottom:298.290000px;}
.y72{bottom:304.590000px;}
.y32{bottom:314.850000px;}
.y71{bottom:321.150000px;}
.y31{bottom:331.230000px;}
.y70{bottom:337.710000px;}
.y30{bottom:347.790000px;}
.y6f{bottom:354.090000px;}
.y2f{bottom:364.350000px;}
.y6e{bottom:370.650000px;}
.y2e{bottom:380.730000px;}
.y6d{bottom:387.210000px;}
.y2d{bottom:397.290000px;}
.y6c{bottom:403.590000px;}
.y2c{bottom:413.850000px;}
.y6b{bottom:420.150000px;}
.y2b{bottom:430.230000px;}
.y6a{bottom:436.755000px;}
.y2a{bottom:446.835000px;}
.y69{bottom:453.135000px;}
.y29{bottom:463.395000px;}
.y68{bottom:469.695000px;}
.y28{bottom:479.775000px;}
.y67{bottom:486.255000px;}
.y27{bottom:496.335000px;}
.y66{bottom:502.635000px;}
.y26{bottom:512.895000px;}
.y65{bottom:519.195000px;}
.y25{bottom:529.275000px;}
.y64{bottom:535.755000px;}
.y24{bottom:545.835000px;}
.y63{bottom:552.135000px;}
.y23{bottom:562.395000px;}
.y62{bottom:568.695000px;}
.y22{bottom:578.775000px;}
.y61{bottom:585.255000px;}
.y21{bottom:595.335000px;}
.y60{bottom:601.635000px;}
.y20{bottom:611.895000px;}
.y5f{bottom:618.195000px;}
.y1f{bottom:628.275000px;}
.y5e{bottom:634.755000px;}
.y1e{bottom:644.835000px;}
.y5d{bottom:651.135000px;}
.y1d{bottom:661.395000px;}
.y5c{bottom:667.695000px;}
.y1c{bottom:677.805000px;}
.y5b{bottom:684.285000px;}
.y1b{bottom:694.365000px;}
.y5a{bottom:700.665000px;}
.y1a{bottom:710.925000px;}
.y59{bottom:717.225000px;}
.y19{bottom:727.305000px;}
.y58{bottom:733.785000px;}
.y18{bottom:743.865000px;}
.y57{bottom:750.165000px;}
.y17{bottom:760.425000px;}
.y56{bottom:766.725000px;}
.y16{bottom:776.805000px;}
.y55{bottom:783.285000px;}
.y15{bottom:795.165000px;}
.y54{bottom:799.665000px;}
.y14{bottom:811.905000px;}
.y53{bottom:816.225000px;}
.y13{bottom:828.465000px;}
.y52{bottom:832.785000px;}
.y12{bottom:845.025000px;}
.y51{bottom:849.165000px;}
.y11{bottom:861.405000px;}
.y50{bottom:865.725000px;}
.y10{bottom:877.965000px;}
.y4f{bottom:882.285000px;}
.yf{bottom:894.525000px;}
.y4e{bottom:898.665000px;}
.ye{bottom:910.905000px;}
.y4d{bottom:915.270000px;}
.yd{bottom:927.510000px;}
.y4c{bottom:931.830000px;}
.yc{bottom:944.070000px;}
.y4b{bottom:948.210000px;}
.yb{bottom:960.450000px;}
.y4a{bottom:964.770000px;}
.ya{bottom:977.010000px;}
.y49{bottom:981.330000px;}
.y48{bottom:997.710000px;}
.y47{bottom:1014.270000px;}
.y9{bottom:1020.570000px;}
.y46{bottom:1030.830000px;}
.y8{bottom:1041.450000px;}
.y45{bottom:1047.210000px;}
.y7{bottom:1053.510000px;}
.y44{bottom:1063.770000px;}
.y6{bottom:1074.570000px;}
.y43{bottom:1080.330000px;}
.y5{bottom:1090.950000px;}
.y42{bottom:1096.710000px;}
.y41{bottom:1113.270000px;}
.y4{bottom:1126.230000px;}
.y40{bottom:1129.830000px;}
.y2{bottom:1170.720000px;}
.y3f{bottom:1170.900000px;}
.y1{bottom:1193.040000px;}
.h5{height:29.678906px;}
.h9{height:47.321367px;}
.h6{height:47.344922px;}
.hc{height:47.678906px;}
.h7{height:48.616875px;}
.hb{height:52.435898px;}
.h2{height:52.998047px;}
.h8{height:58.621992px;}
.ha{height:58.651172px;}
.h4{height:60.226875px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.235987px;}
.x6{left:122.435987px;}
.xc{left:127.475987px;}
.x4{left:164.729987px;}
.x5{left:301.034987px;}
.x8{left:318.494987px;}
.x1{left:337.574987px;}
.x9{left:338.654987px;}
.x7{left:350.534987px;}
.xf{left:406.694987px;}
.xa{left:408.854987px;}
.x3{left:439.634987px;}
.xb{left:446.474987px;}
.xd{left:457.274987px;}
.xe{left:478.544987px;}
@media print{
.v1{vertical-align:-55.040000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls1b{letter-spacing:-1.477333pt;}
.ls12{letter-spacing:-1.237333pt;}
.ls10{letter-spacing:-0.880000pt;}
.ls18{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls17{letter-spacing:-0.597333pt;}
.ls4{letter-spacing:-0.560000pt;}
.lse{letter-spacing:-0.441067pt;}
.ls1c{letter-spacing:-0.432533pt;}
.ls19{letter-spacing:-0.400533pt;}
.ls16{letter-spacing:-0.360533pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.239467pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.040320pt;}
.ls8{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.079360pt;}
.ls6{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.171520pt;}
.ls11{letter-spacing:0.198933pt;}
.ls13{letter-spacing:0.279467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls2{letter-spacing:2.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.096533pt;}
.wsb{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.264000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.999467pt;}
.wsf{word-spacing:-10.918933pt;}
.ws15{word-spacing:-10.760320pt;}
.ws6{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.558933pt;}
.wsd{word-spacing:-10.480533pt;}
.ws12{word-spacing:-10.400000pt;}
.ws16{word-spacing:-10.359467pt;}
.ws19{word-spacing:-10.319467pt;}
.wsc{word-spacing:-10.278933pt;}
.ws17{word-spacing:-10.122667pt;}
.ws18{word-spacing:-9.920000pt;}
.wse{word-spacing:-9.840000pt;}
.ws10{word-spacing:-9.482667pt;}
.ws1{word-spacing:-9.280000pt;}
.ws1a{word-spacing:-9.242667pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:-6.720000pt;}
.ws1b{word-spacing:-6.287467pt;}
.ws8{word-spacing:0.000000pt;}
._7{margin-left:-3.452800pt;}
._8{margin-left:-2.518400pt;}
._1{margin-left:-1.032960pt;}
._0{width:1.344000pt;}
._2{width:2.336000pt;}
._3{width:3.877547pt;}
._6{width:5.356160pt;}
._5{width:6.346240pt;}
._c{width:7.330560pt;}
._e{width:8.666240pt;}
._a{width:9.561600pt;}
._17{width:10.791040pt;}
._18{width:12.384427pt;}
._2e{width:13.369813pt;}
._f{width:14.289280pt;}
._b{width:15.245440pt;}
._10{width:16.626560pt;}
._11{width:17.824000pt;}
._12{width:19.164160pt;}
._9{width:20.079360pt;}
._14{width:21.460480pt;}
._13{width:22.894720pt;}
._d{width:24.010240pt;}
._15{width:24.920960pt;}
._16{width:26.028800pt;}
._19{width:27.075200pt;}
._24{width:28.631680pt;}
._1d{width:30.331520pt;}
._1c{width:31.393920pt;}
._23{width:32.721920pt;}
._22{width:34.156160pt;}
._25{width:35.802880pt;}
._2b{width:37.290240pt;}
._2a{width:38.458880pt;}
._29{width:39.415040pt;}
._26{width:41.433600pt;}
._27{width:43.399040pt;}
._21{width:44.958507pt;}
._20{width:46.410880pt;}
._1f{width:47.595520pt;}
._28{width:49.560960pt;}
._2d{width:55.069440pt;}
._2c{width:56.891520pt;}
._1a{width:60.487680pt;}
._1b{width:61.393280pt;}
._2f{width:63.435307pt;}
._30{width:64.401920pt;}
._31{width:89.747840pt;}
._32{width:90.776960pt;}
._4{width:493.162027pt;}
._1e{width:955.436373pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:49.920000pt;}
.y3e{bottom:103.840000pt;}
.y7d{bottom:109.440000pt;}
.y3d{bottom:118.400000pt;}
.y7c{bottom:124.160000pt;}
.y3c{bottom:133.120000pt;}
.y7b{bottom:138.720000pt;}
.y3b{bottom:147.840000pt;}
.y7a{bottom:153.440000pt;}
.y3a{bottom:162.400000pt;}
.y79{bottom:168.160000pt;}
.y39{bottom:177.146667pt;}
.y78{bottom:182.746667pt;}
.y38{bottom:191.866667pt;}
.y77{bottom:197.466667pt;}
.y37{bottom:206.426667pt;}
.y76{bottom:212.186667pt;}
.y36{bottom:221.146667pt;}
.y75{bottom:226.746667pt;}
.y35{bottom:235.866667pt;}
.y74{bottom:241.466667pt;}
.y34{bottom:250.426667pt;}
.y73{bottom:256.186667pt;}
.y33{bottom:265.146667pt;}
.y72{bottom:270.746667pt;}
.y32{bottom:279.866667pt;}
.y71{bottom:285.466667pt;}
.y31{bottom:294.426667pt;}
.y70{bottom:300.186667pt;}
.y30{bottom:309.146667pt;}
.y6f{bottom:314.746667pt;}
.y2f{bottom:323.866667pt;}
.y6e{bottom:329.466667pt;}
.y2e{bottom:338.426667pt;}
.y6d{bottom:344.186667pt;}
.y2d{bottom:353.146667pt;}
.y6c{bottom:358.746667pt;}
.y2c{bottom:367.866667pt;}
.y6b{bottom:373.466667pt;}
.y2b{bottom:382.426667pt;}
.y6a{bottom:388.226667pt;}
.y2a{bottom:397.186667pt;}
.y69{bottom:402.786667pt;}
.y29{bottom:411.906667pt;}
.y68{bottom:417.506667pt;}
.y28{bottom:426.466667pt;}
.y67{bottom:432.226667pt;}
.y27{bottom:441.186667pt;}
.y66{bottom:446.786667pt;}
.y26{bottom:455.906667pt;}
.y65{bottom:461.506667pt;}
.y25{bottom:470.466667pt;}
.y64{bottom:476.226667pt;}
.y24{bottom:485.186667pt;}
.y63{bottom:490.786667pt;}
.y23{bottom:499.906667pt;}
.y62{bottom:505.506667pt;}
.y22{bottom:514.466667pt;}
.y61{bottom:520.226667pt;}
.y21{bottom:529.186667pt;}
.y60{bottom:534.786667pt;}
.y20{bottom:543.906667pt;}
.y5f{bottom:549.506667pt;}
.y1f{bottom:558.466667pt;}
.y5e{bottom:564.226667pt;}
.y1e{bottom:573.186667pt;}
.y5d{bottom:578.786667pt;}
.y1d{bottom:587.906667pt;}
.y5c{bottom:593.506667pt;}
.y1c{bottom:602.493333pt;}
.y5b{bottom:608.253333pt;}
.y1b{bottom:617.213333pt;}
.y5a{bottom:622.813333pt;}
.y1a{bottom:631.933333pt;}
.y59{bottom:637.533333pt;}
.y19{bottom:646.493333pt;}
.y58{bottom:652.253333pt;}
.y18{bottom:661.213333pt;}
.y57{bottom:666.813333pt;}
.y17{bottom:675.933333pt;}
.y56{bottom:681.533333pt;}
.y16{bottom:690.493333pt;}
.y55{bottom:696.253333pt;}
.y15{bottom:706.813333pt;}
.y54{bottom:710.813333pt;}
.y14{bottom:721.693333pt;}
.y53{bottom:725.533333pt;}
.y13{bottom:736.413333pt;}
.y52{bottom:740.253333pt;}
.y12{bottom:751.133333pt;}
.y51{bottom:754.813333pt;}
.y11{bottom:765.693333pt;}
.y50{bottom:769.533333pt;}
.y10{bottom:780.413333pt;}
.y4f{bottom:784.253333pt;}
.yf{bottom:795.133333pt;}
.y4e{bottom:798.813333pt;}
.ye{bottom:809.693333pt;}
.y4d{bottom:813.573333pt;}
.yd{bottom:824.453333pt;}
.y4c{bottom:828.293333pt;}
.yc{bottom:839.173333pt;}
.y4b{bottom:842.853333pt;}
.yb{bottom:853.733333pt;}
.y4a{bottom:857.573333pt;}
.ya{bottom:868.453333pt;}
.y49{bottom:872.293333pt;}
.y48{bottom:886.853333pt;}
.y47{bottom:901.573333pt;}
.y9{bottom:907.173333pt;}
.y46{bottom:916.293333pt;}
.y8{bottom:925.733333pt;}
.y45{bottom:930.853333pt;}
.y7{bottom:936.453333pt;}
.y44{bottom:945.573333pt;}
.y6{bottom:955.173333pt;}
.y43{bottom:960.293333pt;}
.y5{bottom:969.733333pt;}
.y42{bottom:974.853333pt;}
.y41{bottom:989.573333pt;}
.y4{bottom:1001.093333pt;}
.y40{bottom:1004.293333pt;}
.y2{bottom:1040.640000pt;}
.y3f{bottom:1040.800000pt;}
.y1{bottom:1060.480000pt;}
.h5{height:26.381250pt;}
.h9{height:42.063437pt;}
.h6{height:42.084375pt;}
.hc{height:42.381250pt;}
.h7{height:43.215000pt;}
.hb{height:46.609688pt;}
.h2{height:47.109375pt;}
.h8{height:52.108438pt;}
.ha{height:52.134375pt;}
.h4{height:53.535000pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.431988pt;}
.x6{left:108.831988pt;}
.xc{left:113.311988pt;}
.x4{left:146.426655pt;}
.x5{left:267.586655pt;}
.x8{left:283.106655pt;}
.x1{left:300.066655pt;}
.x9{left:301.026655pt;}
.x7{left:311.586655pt;}
.xf{left:361.506655pt;}
.xa{left:363.426655pt;}
.x3{left:390.786655pt;}
.xb{left:396.866655pt;}
.xd{left:406.466655pt;}
.xe{left:425.373322pt;}
}




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