
    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_746c2e05deddbb6d796c6b41.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.145508;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_9ae9feff86d4e25efea4eab3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_9aae2e6a56b1ebd8572c6311.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_90e7c49a4d0d44518c598b6f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923340;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_c117d6919d72ca3d1f1ca673.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.145508;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.822000px;}
.lsd{letter-spacing:-0.702000px;}
.lsb{letter-spacing:-0.472800px;}
.ls4{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.038880px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.572400px;}
.ls5{letter-spacing:0.600000px;}
.ls3{letter-spacing:1.284000px;}
.lsc{letter-spacing:1.338000px;}
.lsa{letter-spacing:1.578000px;}
.ls7{letter-spacing:3.306000px;}
.ls2{letter-spacing:55.916160px;}
.ls0{letter-spacing:844.736160px;}
.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:-71.280000px;}
.ws8{word-spacing:-22.793280px;}
.ws2{word-spacing:-22.739280px;}
.ws3{word-spacing:-22.055280px;}
.ws5{word-spacing:-22.027680px;}
.ws4{word-spacing:-21.215280px;}
.ws7{word-spacing:-20.982480px;}
.ws9{word-spacing:-20.753280px;}
.ws6{word-spacing:-20.633280px;}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-4.561920px;}
._19{margin-left:-3.507600px;}
._8{margin-left:-2.494800px;}
._1{margin-left:-1.069200px;}
._0{width:1.425600px;}
._2{width:2.637360px;}
._5{width:3.777840px;}
._9{width:5.262000px;}
._6{width:6.589920px;}
._11{width:8.553600px;}
._a{width:10.193040px;}
._c{width:11.404800px;}
._b{width:12.830400px;}
._1e{width:13.852080px;}
._d{width:14.897520px;}
._f{width:16.465680px;}
._10{width:17.748720px;}
._16{width:18.986400px;}
._e{width:20.068560px;}
._7{width:23.593680px;}
._13{width:24.682080px;}
._17{width:26.448960px;}
._1a{width:28.434960px;}
._4{width:30.365280px;}
._18{width:31.505760px;}
._3{width:32.788800px;}
._15{width:33.858000px;}
._14{width:34.927200px;}
._1c{width:43.195680px;}
._1d{width:45.476640px;}
._1b{width:258.746400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs0{font-size:47.520000px;}
.fs1{font-size:71.280000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:19.440000px;}
.yd{bottom:19.980000px;}
.y48{bottom:20.010000px;}
.y1a{bottom:20.520000px;}
.y18{bottom:20.550000px;}
.y13{bottom:21.060000px;}
.y11{bottom:21.090000px;}
.y15{bottom:21.105000px;}
.y7{bottom:23.760000px;}
.yc{bottom:50.790000px;}
.y47{bottom:51.300000px;}
.y89{bottom:83.196000px;}
.y57{bottom:98.856000px;}
.y86{bottom:104.256000px;}
.y9c{bottom:111.816000px;}
.y72{bottom:114.516000px;}
.y42{bottom:115.056000px;}
.y88{bottom:120.456000px;}
.y56{bottom:130.716000px;}
.yb1{bottom:134.496000px;}
.y85{bottom:141.516000px;}
.y9b{bottom:143.136000px;}
.y71{bottom:151.770000px;}
.y41{bottom:152.310000px;}
.y21{bottom:155.595000px;}
.y87{bottom:157.755000px;}
.yb0{bottom:165.855000px;}
.y55{bottom:168.015000px;}
.y9a{bottom:174.495000px;}
.y84{bottom:179.355000px;}
.y40{bottom:183.675000px;}
.y70{bottom:189.075000px;}
.y20{bottom:192.315000px;}
.yaf{bottom:197.175000px;}
.y54{bottom:205.275000px;}
.y99{bottom:205.815000px;}
.y1f{bottom:213.915000px;}
.y3f{bottom:214.995000px;}
.y83{bottom:216.615000px;}
.y6f{bottom:226.335000px;}
.yae{bottom:234.435000px;}
.y53{bottom:236.595000px;}
.y98{bottom:237.135000px;}
.y82{bottom:247.965000px;}
.y3e{bottom:252.285000px;}
.y1e{bottom:257.145000px;}
.y6e{bottom:263.625000px;}
.yad{bottom:265.785000px;}
.y52{bottom:267.945000px;}
.y97{bottom:274.425000px;}
.y3d{bottom:284.145000px;}
.y81{bottom:285.225000px;}
.yac{bottom:297.105000px;}
.y51{bottom:299.265000px;}
.y1d{bottom:300.345000px;}
.y6d{bottom:301.425000px;}
.y96{bottom:305.745000px;}
.y3c{bottom:316.545000px;}
.y80{bottom:322.530000px;}
.y50{bottom:330.630000px;}
.yab{bottom:334.410000px;}
.y95{bottom:337.110000px;}
.y6c{bottom:338.730000px;}
.y1c{bottom:343.590000px;}
.y3b{bottom:347.910000px;}
.y7f{bottom:359.790000px;}
.yaa{bottom:365.730000px;}
.y4f{bottom:367.890000px;}
.y94{bottom:368.430000px;}
.y6b{bottom:375.990000px;}
.y3a{bottom:379.230000px;}
.y1b{bottom:386.790000px;}
.y7e{bottom:397.050000px;}
.y93{bottom:399.750000px;}
.y4e{bottom:405.180000px;}
.y39{bottom:410.580000px;}
.y6a{bottom:413.280000px;}
.y19{bottom:430.560000px;}
.y92{bottom:431.100000px;}
.y7d{bottom:434.880000px;}
.y4d{bottom:436.500000px;}
.y38{bottom:442.980000px;}
.y69{bottom:450.540000px;}
.y91{bottom:462.960000px;}
.ya9{bottom:466.200000px;}
.y4c{bottom:468.360000px;}
.y7c{bottom:472.140000px;}
.y17{bottom:473.760000px;}
.y37{bottom:474.300000px;}
.y68{bottom:487.830000px;}
.y4b{bottom:499.710000px;}
.y90{bottom:500.250000px;}
.y7b{bottom:503.490000px;}
.y36{bottom:505.650000px;}
.y16{bottom:516.990000px;}
.y67{bottom:525.630000px;}
.ya8{bottom:534.810000px;}
.y35{bottom:536.970000px;}
.y8f{bottom:537.510000px;}
.y7a{bottom:540.750000px;}
.y14{bottom:560.190000px;}
.y66{bottom:562.890000px;}
.ya7{bottom:566.130000px;}
.y34{bottom:568.875000px;}
.y79{bottom:572.115000px;}
.y4a{bottom:574.275000px;}
.y8e{bottom:574.815000px;}
.ybf{bottom:588.855000px;}
.ya6{bottom:597.495000px;}
.y65{bottom:600.195000px;}
.y33{bottom:601.275000px;}
.y12{bottom:603.435000px;}
.y8d{bottom:606.135000px;}
.y49{bottom:611.535000px;}
.ybe{bottom:626.655000px;}
.y32{bottom:632.595000px;}
.y78{bottom:634.755000px;}
.y64{bottom:637.455000px;}
.y10{bottom:646.635000px;}
.ybd{bottom:658.005000px;}
.y31{bottom:663.945000px;}
.ya5{bottom:666.105000px;}
.y77{bottom:672.045000px;}
.y46{bottom:673.665000px;}
.y63{bottom:674.745000px;}
.ybc{bottom:689.325000px;}
.yf{bottom:689.865000px;}
.y30{bottom:696.345000px;}
.y8c{bottom:697.425000px;}
.y76{bottom:703.365000px;}
.y62{bottom:712.005000px;}
.ybb{bottom:720.645000px;}
.y2f{bottom:727.665000px;}
.ya4{bottom:728.745000px;}
.y75{bottom:734.730000px;}
.y61{bottom:749.850000px;}
.ye{bottom:750.930000px;}
.yba{bottom:757.950000px;}
.ya3{bottom:760.110000px;}
.y2e{bottom:766.050000px;}
.yb{bottom:772.530000px;}
.y60{bottom:787.110000px;}
.ya2{bottom:791.430000px;}
.yb9{bottom:795.210000px;}
.y2d{bottom:797.910000px;}
.y45{bottom:803.850000px;}
.ya1{bottom:822.780000px;}
.y5f{bottom:824.400000px;}
.y74{bottom:829.260000px;}
.yb8{bottom:833.040000px;}
.y2c{bottom:835.200000px;}
.y9{bottom:844.920000px;}
.ya0{bottom:854.640000px;}
.y73{bottom:860.580000px;}
.y5e{bottom:861.660000px;}
.yb7{bottom:865.440000px;}
.y2b{bottom:866.520000px;}
.y9f{bottom:885.960000px;}
.y2a{bottom:897.870000px;}
.y5d{bottom:898.950000px;}
.y8{bottom:905.970000px;}
.y9e{bottom:923.250000px;}
.y6{bottom:927.570000px;}
.y29{bottom:929.190000px;}
.y44{bottom:935.130000px;}
.y5c{bottom:936.210000px;}
.y28{bottom:960.510000px;}
.yb6{bottom:961.590000px;}
.y43{bottom:966.450000px;}
.y5b{bottom:974.010000px;}
.y8b{bottom:991.875000px;}
.yb5{bottom:994.575000px;}
.y27{bottom:997.815000px;}
.y5{bottom:1004.835000px;}
.y5a{bottom:1011.315000px;}
.y8a{bottom:1023.195000px;}
.yb4{bottom:1026.975000px;}
.y26{bottom:1029.135000px;}
.y59{bottom:1048.575000px;}
.y4{bottom:1056.135000px;}
.yb3{bottom:1058.295000px;}
.y25{bottom:1060.485000px;}
.y58{bottom:1085.865000px;}
.yb2{bottom:1090.725000px;}
.y24{bottom:1091.805000px;}
.y3{bottom:1093.425000px;}
.y23{bottom:1123.125000px;}
.y9d{bottom:1129.065000px;}
.y2{bottom:1130.685000px;}
.y22{bottom:1160.970000px;}
.y1{bottom:1163.670000px;}
.h6{height:39.960000px;}
.h8{height:40.500000px;}
.hf{height:40.536000px;}
.hc{height:42.120000px;}
.hb{height:42.156000px;}
.ha{height:42.660000px;}
.h9{height:42.696000px;}
.h2{height:44.503594px;}
.h5{height:48.060000px;}
.h10{height:65.363203px;}
.h3{height:66.755391px;}
.h7{height:71.316000px;}
.he{height:71.856000px;}
.hd{height:73.264608px;}
.h4{height:99.035156px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:212.370000px;}
.w3{width:510.045000px;}
.w6{width:680.295000px;}
.w5{width:723.495000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.640000px;}
.x3{left:94.572000px;}
.x1{left:106.451987px;}
.x6{left:133.451987px;}
.x7{left:160.484987px;}
.x2{left:252.869987px;}
.x5{left:605.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.730667pt;}
.lsd{letter-spacing:-0.624000pt;}
.lsb{letter-spacing:-0.420267pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.034560pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.508800pt;}
.ls5{letter-spacing:0.533333pt;}
.ls3{letter-spacing:1.141333pt;}
.lsc{letter-spacing:1.189333pt;}
.lsa{letter-spacing:1.402667pt;}
.ls7{letter-spacing:2.938667pt;}
.ls2{letter-spacing:49.703253pt;}
.ls0{letter-spacing:750.876587pt;}
.ws1{word-spacing:-63.360000pt;}
.ws8{word-spacing:-20.260693pt;}
.ws2{word-spacing:-20.212693pt;}
.ws3{word-spacing:-19.604693pt;}
.ws5{word-spacing:-19.580160pt;}
.ws4{word-spacing:-18.858027pt;}
.ws7{word-spacing:-18.651093pt;}
.ws9{word-spacing:-18.447360pt;}
.ws6{word-spacing:-18.340693pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-4.055040pt;}
._19{margin-left:-3.117867pt;}
._8{margin-left:-2.217600pt;}
._1{margin-left:-0.950400pt;}
._0{width:1.267200pt;}
._2{width:2.344320pt;}
._5{width:3.358080pt;}
._9{width:4.677333pt;}
._6{width:5.857707pt;}
._11{width:7.603200pt;}
._a{width:9.060480pt;}
._c{width:10.137600pt;}
._b{width:11.404800pt;}
._1e{width:12.312960pt;}
._d{width:13.242240pt;}
._f{width:14.636160pt;}
._10{width:15.776640pt;}
._16{width:16.876800pt;}
._e{width:17.838720pt;}
._7{width:20.972160pt;}
._13{width:21.939627pt;}
._17{width:23.510187pt;}
._1a{width:25.275520pt;}
._4{width:26.991360pt;}
._18{width:28.005120pt;}
._3{width:29.145600pt;}
._15{width:30.096000pt;}
._14{width:31.046400pt;}
._1c{width:38.396160pt;}
._1d{width:40.423680pt;}
._1b{width:229.996800pt;}
.fs0{font-size:42.240000pt;}
.fs1{font-size:63.360000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:17.280000pt;}
.yd{bottom:17.760000pt;}
.y48{bottom:17.786667pt;}
.y1a{bottom:18.240000pt;}
.y18{bottom:18.266667pt;}
.y13{bottom:18.720000pt;}
.y11{bottom:18.746667pt;}
.y15{bottom:18.760000pt;}
.y7{bottom:21.120000pt;}
.yc{bottom:45.146667pt;}
.y47{bottom:45.600000pt;}
.y89{bottom:73.952000pt;}
.y57{bottom:87.872000pt;}
.y86{bottom:92.672000pt;}
.y9c{bottom:99.392000pt;}
.y72{bottom:101.792000pt;}
.y42{bottom:102.272000pt;}
.y88{bottom:107.072000pt;}
.y56{bottom:116.192000pt;}
.yb1{bottom:119.552000pt;}
.y85{bottom:125.792000pt;}
.y9b{bottom:127.232000pt;}
.y71{bottom:134.906667pt;}
.y41{bottom:135.386667pt;}
.y21{bottom:138.306667pt;}
.y87{bottom:140.226667pt;}
.yb0{bottom:147.426667pt;}
.y55{bottom:149.346667pt;}
.y9a{bottom:155.106667pt;}
.y84{bottom:159.426667pt;}
.y40{bottom:163.266667pt;}
.y70{bottom:168.066667pt;}
.y20{bottom:170.946667pt;}
.yaf{bottom:175.266667pt;}
.y54{bottom:182.466667pt;}
.y99{bottom:182.946667pt;}
.y1f{bottom:190.146667pt;}
.y3f{bottom:191.106667pt;}
.y83{bottom:192.546667pt;}
.y6f{bottom:201.186667pt;}
.yae{bottom:208.386667pt;}
.y53{bottom:210.306667pt;}
.y98{bottom:210.786667pt;}
.y82{bottom:220.413333pt;}
.y3e{bottom:224.253333pt;}
.y1e{bottom:228.573333pt;}
.y6e{bottom:234.333333pt;}
.yad{bottom:236.253333pt;}
.y52{bottom:238.173333pt;}
.y97{bottom:243.933333pt;}
.y3d{bottom:252.573333pt;}
.y81{bottom:253.533333pt;}
.yac{bottom:264.093333pt;}
.y51{bottom:266.013333pt;}
.y1d{bottom:266.973333pt;}
.y6d{bottom:267.933333pt;}
.y96{bottom:271.773333pt;}
.y3c{bottom:281.373333pt;}
.y80{bottom:286.693333pt;}
.y50{bottom:293.893333pt;}
.yab{bottom:297.253333pt;}
.y95{bottom:299.653333pt;}
.y6c{bottom:301.093333pt;}
.y1c{bottom:305.413333pt;}
.y3b{bottom:309.253333pt;}
.y7f{bottom:319.813333pt;}
.yaa{bottom:325.093333pt;}
.y4f{bottom:327.013333pt;}
.y94{bottom:327.493333pt;}
.y6b{bottom:334.213333pt;}
.y3a{bottom:337.093333pt;}
.y1b{bottom:343.813333pt;}
.y7e{bottom:352.933333pt;}
.y93{bottom:355.333333pt;}
.y4e{bottom:360.160000pt;}
.y39{bottom:364.960000pt;}
.y6a{bottom:367.360000pt;}
.y19{bottom:382.720000pt;}
.y92{bottom:383.200000pt;}
.y7d{bottom:386.560000pt;}
.y4d{bottom:388.000000pt;}
.y38{bottom:393.760000pt;}
.y69{bottom:400.480000pt;}
.y91{bottom:411.520000pt;}
.ya9{bottom:414.400000pt;}
.y4c{bottom:416.320000pt;}
.y7c{bottom:419.680000pt;}
.y17{bottom:421.120000pt;}
.y37{bottom:421.600000pt;}
.y68{bottom:433.626667pt;}
.y4b{bottom:444.186667pt;}
.y90{bottom:444.666667pt;}
.y7b{bottom:447.546667pt;}
.y36{bottom:449.466667pt;}
.y16{bottom:459.546667pt;}
.y67{bottom:467.226667pt;}
.ya8{bottom:475.386667pt;}
.y35{bottom:477.306667pt;}
.y8f{bottom:477.786667pt;}
.y7a{bottom:480.666667pt;}
.y14{bottom:497.946667pt;}
.y66{bottom:500.346667pt;}
.ya7{bottom:503.226667pt;}
.y34{bottom:505.666667pt;}
.y79{bottom:508.546667pt;}
.y4a{bottom:510.466667pt;}
.y8e{bottom:510.946667pt;}
.ybf{bottom:523.426667pt;}
.ya6{bottom:531.106667pt;}
.y65{bottom:533.506667pt;}
.y33{bottom:534.466667pt;}
.y12{bottom:536.386667pt;}
.y8d{bottom:538.786667pt;}
.y49{bottom:543.586667pt;}
.ybe{bottom:557.026667pt;}
.y32{bottom:562.306667pt;}
.y78{bottom:564.226667pt;}
.y64{bottom:566.626667pt;}
.y10{bottom:574.786667pt;}
.ybd{bottom:584.893333pt;}
.y31{bottom:590.173333pt;}
.ya5{bottom:592.093333pt;}
.y77{bottom:597.373333pt;}
.y46{bottom:598.813333pt;}
.y63{bottom:599.773333pt;}
.ybc{bottom:612.733333pt;}
.yf{bottom:613.213333pt;}
.y30{bottom:618.973333pt;}
.y8c{bottom:619.933333pt;}
.y76{bottom:625.213333pt;}
.y62{bottom:632.893333pt;}
.ybb{bottom:640.573333pt;}
.y2f{bottom:646.813333pt;}
.ya4{bottom:647.773333pt;}
.y75{bottom:653.093333pt;}
.y61{bottom:666.533333pt;}
.ye{bottom:667.493333pt;}
.yba{bottom:673.733333pt;}
.ya3{bottom:675.653333pt;}
.y2e{bottom:680.933333pt;}
.yb{bottom:686.693333pt;}
.y60{bottom:699.653333pt;}
.ya2{bottom:703.493333pt;}
.yb9{bottom:706.853333pt;}
.y2d{bottom:709.253333pt;}
.y45{bottom:714.533333pt;}
.ya1{bottom:731.360000pt;}
.y5f{bottom:732.800000pt;}
.y74{bottom:737.120000pt;}
.yb8{bottom:740.480000pt;}
.y2c{bottom:742.400000pt;}
.y9{bottom:751.040000pt;}
.ya0{bottom:759.680000pt;}
.y73{bottom:764.960000pt;}
.y5e{bottom:765.920000pt;}
.yb7{bottom:769.280000pt;}
.y2b{bottom:770.240000pt;}
.y9f{bottom:787.520000pt;}
.y2a{bottom:798.106667pt;}
.y5d{bottom:799.066667pt;}
.y8{bottom:805.306667pt;}
.y9e{bottom:820.666667pt;}
.y6{bottom:824.506667pt;}
.y29{bottom:825.946667pt;}
.y44{bottom:831.226667pt;}
.y5c{bottom:832.186667pt;}
.y28{bottom:853.786667pt;}
.yb6{bottom:854.746667pt;}
.y43{bottom:859.066667pt;}
.y5b{bottom:865.786667pt;}
.y8b{bottom:881.666667pt;}
.yb5{bottom:884.066667pt;}
.y27{bottom:886.946667pt;}
.y5{bottom:893.186667pt;}
.y5a{bottom:898.946667pt;}
.y8a{bottom:909.506667pt;}
.yb4{bottom:912.866667pt;}
.y26{bottom:914.786667pt;}
.y59{bottom:932.066667pt;}
.y4{bottom:938.786667pt;}
.yb3{bottom:940.706667pt;}
.y25{bottom:942.653333pt;}
.y58{bottom:965.213333pt;}
.yb2{bottom:969.533333pt;}
.y24{bottom:970.493333pt;}
.y3{bottom:971.933333pt;}
.y23{bottom:998.333333pt;}
.y9d{bottom:1003.613333pt;}
.y2{bottom:1005.053333pt;}
.y22{bottom:1031.973333pt;}
.y1{bottom:1034.373333pt;}
.h6{height:35.520000pt;}
.h8{height:36.000000pt;}
.hf{height:36.032000pt;}
.hc{height:37.440000pt;}
.hb{height:37.472000pt;}
.ha{height:37.920000pt;}
.h9{height:37.952000pt;}
.h2{height:39.558750pt;}
.h5{height:42.720000pt;}
.h10{height:58.100625pt;}
.h3{height:59.338125pt;}
.h7{height:63.392000pt;}
.he{height:63.872000pt;}
.hd{height:65.124096pt;}
.h4{height:88.031250pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:188.773333pt;}
.w3{width:453.373333pt;}
.w6{width:604.706667pt;}
.w5{width:643.106667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.680000pt;}
.x3{left:84.064000pt;}
.x1{left:94.623988pt;}
.x6{left:118.623988pt;}
.x7{left:142.653322pt;}
.x2{left:224.773322pt;}
.x5{left:538.400000pt;}
}




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