
    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_2a18f1e1e31d821a49e15572.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_fe27e83257e5756d0b4e0c42.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c046d04be3036177f0b1570e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_5fc88ceb6677d38465d4ce0a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9b667b6d4e664d0b2a9e59bc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6794ce955175d7d57d9a9053.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b00f8cb04dba749f6d8e4b3a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_772318c05c92c991c15d2bfb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-2.250000px;}
.lsa{letter-spacing:-1.512000px;}
.ls9{letter-spacing:-0.900000px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.675000px;}
.ls5{letter-spacing:1.089000px;}
.ls3{letter-spacing:1.125000px;}
.ls6{letter-spacing:1.128000px;}
.ls1{letter-spacing:1.516500px;}
.lsb{letter-spacing:1.800000px;}
.ls4{letter-spacing:1.980000px;}
.ls10{letter-spacing:2.160000px;}
.ls2{letter-spacing:2.164500px;}
.ls0{letter-spacing:2.250000px;}
.lsf{letter-spacing:2.310000px;}
.lse{letter-spacing:37.065000px;}
.lsc{letter-spacing:39.705000px;}
.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:-67.500000px;}
.ws2{word-spacing:-19.125000px;}
.ws7{word-spacing:-17.550000px;}
.ws1{word-spacing:-16.875000px;}
.ws6{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.625000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-11.988000px;}
.ws8{word-spacing:0.000000px;}
._11{margin-left:-8.145000px;}
._e{margin-left:-6.880500px;}
._9{margin-left:-5.695500px;}
._5{margin-left:-4.122000px;}
._0{margin-left:-2.448000px;}
._3{margin-left:-1.008000px;}
._2{width:1.368000px;}
._4{width:2.880000px;}
._1{width:4.464000px;}
._b{width:5.710500px;}
._f{width:6.919500px;}
._7{width:8.316000px;}
._a{width:9.768000px;}
._12{width:10.921500px;}
._8{width:12.330000px;}
._15{width:13.639500px;}
._13{width:14.746500px;}
._d{width:16.942500px;}
._14{width:18.955500px;}
._19{width:20.022000px;}
._c{width:21.996000px;}
._17{width:23.262000px;}
._16{width:24.321000px;}
._1a{width:27.675000px;}
._18{width:28.756500px;}
._10{width:31.398000px;}
._1c{width:32.535000px;}
._1b{width:37.129500px;}
._6{width:1258.587000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:49.500000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:58.500000px;}
.fs4{font-size:67.500000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:76.500000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.750000px;}
.y4{bottom:55.200000px;}
.y8f{bottom:112.612500px;}
.y68{bottom:135.150000px;}
.y3b{bottom:143.025000px;}
.y8e{bottom:150.900000px;}
.y67{bottom:156.525000px;}
.y3a{bottom:164.400000px;}
.y8d{bottom:172.305000px;}
.y66{bottom:179.055000px;}
.y39{bottom:186.930000px;}
.y8c{bottom:194.820000px;}
.y65{bottom:200.445000px;}
.y38{bottom:208.320000px;}
.y8b{bottom:216.225000px;}
.y64{bottom:221.850000px;}
.y37{bottom:230.850000px;}
.y8a{bottom:237.600000px;}
.y63{bottom:244.350000px;}
.y36{bottom:252.255000px;}
.y89{bottom:260.130000px;}
.y62{bottom:265.755000px;}
.y35{bottom:273.630000px;}
.y88{bottom:281.520000px;}
.y61{bottom:288.270000px;}
.y34{bottom:296.175000px;}
.y87{bottom:304.050000px;}
.y60{bottom:309.675000px;}
.y33{bottom:314.175000px;}
.y86{bottom:325.425000px;}
.y32{bottom:327.675000px;}
.y5f{bottom:331.050000px;}
.y31{bottom:342.345000px;}
.y85{bottom:346.830000px;}
.y5e{bottom:353.580000px;}
.y30{bottom:359.220000px;}
.y84{bottom:369.345000px;}
.y5d{bottom:374.955000px;}
.y2f{bottom:376.095000px;}
.y83{bottom:390.750000px;}
.y2e{bottom:394.125000px;}
.y5c{bottom:397.500000px;}
.y2d{bottom:411.000000px;}
.y82{bottom:413.250000px;}
.y5b{bottom:418.875000px;}
.y2c{bottom:427.905000px;}
.y81{bottom:434.655000px;}
.y5a{bottom:440.295000px;}
.y2b{bottom:445.920000px;}
.y80{bottom:456.045000px;}
.y2a{bottom:462.795000px;}
.y7f{bottom:478.575000px;}
.y29{bottom:479.700000px;}
.y59{bottom:484.200000px;}
.y28{bottom:497.700000px;}
.y7e{bottom:499.950000px;}
.y58{bottom:506.700000px;}
.y27{bottom:514.605000px;}
.y7d{bottom:522.495000px;}
.y57{bottom:528.105000px;}
.y26{bottom:531.480000px;}
.y7c{bottom:543.870000px;}
.y25{bottom:548.355000px;}
.y56{bottom:549.495000px;}
.y7b{bottom:565.275000px;}
.y24{bottom:566.400000px;}
.y55{bottom:572.025000px;}
.y23{bottom:583.275000px;}
.y7a{bottom:587.775000px;}
.y54{bottom:593.400000px;}
.y22{bottom:600.195000px;}
.y79{bottom:609.195000px;}
.y53{bottom:615.945000px;}
.y21{bottom:618.195000px;}
.y78{bottom:631.695000px;}
.y20{bottom:635.070000px;}
.y52{bottom:637.320000px;}
.y1f{bottom:651.975000px;}
.y77{bottom:653.100000px;}
.y51{bottom:658.725000px;}
.y1e{bottom:669.975000px;}
.y76{bottom:674.475000px;}
.y50{bottom:681.225000px;}
.y1d{bottom:686.880000px;}
.y75{bottom:697.005000px;}
.y4f{bottom:702.645000px;}
.y1c{bottom:703.755000px;}
.y74{bottom:718.380000px;}
.y1b{bottom:721.755000px;}
.y4e{bottom:724.005000px;}
.y1a{bottom:738.675000px;}
.y73{bottom:740.925000px;}
.y4d{bottom:746.550000px;}
.y19{bottom:755.550000px;}
.y72{bottom:762.300000px;}
.y4c{bottom:767.925000px;}
.y18{bottom:773.580000px;}
.y71{bottom:783.705000px;}
.y17{bottom:790.455000px;}
.y70{bottom:806.205000px;}
.y16{bottom:807.330000px;}
.y4b{bottom:811.830000px;}
.y15{bottom:825.375000px;}
.y6f{bottom:827.625000px;}
.y4a{bottom:833.250000px;}
.y14{bottom:844.500000px;}
.y6e{bottom:850.125000px;}
.y49{bottom:855.795000px;}
.y13{bottom:865.920000px;}
.y6d{bottom:871.545000px;}
.y48{bottom:877.170000px;}
.y12{bottom:883.920000px;}
.y6c{bottom:892.920000px;}
.y47{bottom:899.700000px;}
.y11{bottom:901.950000px;}
.y6b{bottom:915.450000px;}
.y10{bottom:919.950000px;}
.y46{bottom:921.075000px;}
.y6a{bottom:936.825000px;}
.yf{bottom:937.950000px;}
.y45{bottom:942.495000px;}
.y69{bottom:955.995000px;}
.ye{bottom:959.370000px;}
.y44{bottom:964.995000px;}
.yd{bottom:980.745000px;}
.y43{bottom:986.400000px;}
.yc{bottom:998.775000px;}
.y42{bottom:1008.900000px;}
.yb{bottom:1024.650000px;}
.y41{bottom:1030.320000px;}
.ya{bottom:1050.570000px;}
.y40{bottom:1051.695000px;}
.y9{bottom:1073.100000px;}
.y3f{bottom:1074.225000px;}
.y8{bottom:1089.975000px;}
.y3e{bottom:1095.600000px;}
.y7{bottom:1106.850000px;}
.y3d{bottom:1118.130000px;}
.y6{bottom:1124.880000px;}
.y3c{bottom:1139.505000px;}
.y5{bottom:1141.755000px;}
.y3{bottom:1165.425000px;}
.y1{bottom:1182.300000px;}
.h2{height:27.037500px;}
.hf{height:34.925537px;}
.ha{height:37.705078px;}
.h5{height:40.798828px;}
.he{height:40.847168px;}
.h6{height:41.275635px;}
.hc{height:42.246826px;}
.h10{height:47.131348px;}
.h9{height:47.625732px;}
.hd{height:48.216797px;}
.h11{height:49.141846px;}
.h4{height:50.273438px;}
.h3{height:51.996094px;}
.h8{height:53.975830px;}
.h7{height:55.245850px;}
.hb{height:55.634766px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:52.912500px;}
.w2{width:617.280000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.875000px;}
.x1{left:108.150000px;}
.x8{left:112.649987px;}
.x5{left:132.899987px;}
.xf{left:135.149987px;}
.x12{left:139.687487px;}
.x3{left:161.070000px;}
.xc{left:162.179987px;}
.xa{left:207.269987px;}
.xb{left:235.424987px;}
.x11{left:319.904987px;}
.x9{left:376.199987px;}
.x6{left:408.869987px;}
.xd{left:420.149987px;}
.xe{left:421.274987px;}
.x7{left:422.399987px;}
.x4{left:447.194987px;}
.x10{left:609.374987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-2.000000pt;}
.lsa{letter-spacing:-1.344000pt;}
.ls9{letter-spacing:-0.800000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.600000pt;}
.ls5{letter-spacing:0.968000pt;}
.ls3{letter-spacing:1.000000pt;}
.ls6{letter-spacing:1.002667pt;}
.ls1{letter-spacing:1.348000pt;}
.lsb{letter-spacing:1.600000pt;}
.ls4{letter-spacing:1.760000pt;}
.ls10{letter-spacing:1.920000pt;}
.ls2{letter-spacing:1.924000pt;}
.ls0{letter-spacing:2.000000pt;}
.lsf{letter-spacing:2.053333pt;}
.lse{letter-spacing:32.946667pt;}
.lsc{letter-spacing:35.293333pt;}
.ws3{word-spacing:-60.000000pt;}
.ws2{word-spacing:-17.000000pt;}
.ws7{word-spacing:-15.600000pt;}
.ws1{word-spacing:-15.000000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.000000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.656000pt;}
.ws8{word-spacing:0.000000pt;}
._11{margin-left:-7.240000pt;}
._e{margin-left:-6.116000pt;}
._9{margin-left:-5.062667pt;}
._5{margin-left:-3.664000pt;}
._0{margin-left:-2.176000pt;}
._3{margin-left:-0.896000pt;}
._2{width:1.216000pt;}
._4{width:2.560000pt;}
._1{width:3.968000pt;}
._b{width:5.076000pt;}
._f{width:6.150667pt;}
._7{width:7.392000pt;}
._a{width:8.682667pt;}
._12{width:9.708000pt;}
._8{width:10.960000pt;}
._15{width:12.124000pt;}
._13{width:13.108000pt;}
._d{width:15.060000pt;}
._14{width:16.849333pt;}
._19{width:17.797333pt;}
._c{width:19.552000pt;}
._17{width:20.677333pt;}
._16{width:21.618667pt;}
._1a{width:24.600000pt;}
._18{width:25.561333pt;}
._10{width:27.909333pt;}
._1c{width:28.920000pt;}
._1b{width:33.004000pt;}
._6{width:1118.744000pt;}
.fs1{font-size:44.000000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:52.000000pt;}
.fs4{font-size:60.000000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:68.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.000000pt;}
.y4{bottom:49.066667pt;}
.y8f{bottom:100.100000pt;}
.y68{bottom:120.133333pt;}
.y3b{bottom:127.133333pt;}
.y8e{bottom:134.133333pt;}
.y67{bottom:139.133333pt;}
.y3a{bottom:146.133333pt;}
.y8d{bottom:153.160000pt;}
.y66{bottom:159.160000pt;}
.y39{bottom:166.160000pt;}
.y8c{bottom:173.173333pt;}
.y65{bottom:178.173333pt;}
.y38{bottom:185.173333pt;}
.y8b{bottom:192.200000pt;}
.y64{bottom:197.200000pt;}
.y37{bottom:205.200000pt;}
.y8a{bottom:211.200000pt;}
.y63{bottom:217.200000pt;}
.y36{bottom:224.226667pt;}
.y89{bottom:231.226667pt;}
.y62{bottom:236.226667pt;}
.y35{bottom:243.226667pt;}
.y88{bottom:250.240000pt;}
.y61{bottom:256.240000pt;}
.y34{bottom:263.266667pt;}
.y87{bottom:270.266667pt;}
.y60{bottom:275.266667pt;}
.y33{bottom:279.266667pt;}
.y86{bottom:289.266667pt;}
.y32{bottom:291.266667pt;}
.y5f{bottom:294.266667pt;}
.y31{bottom:304.306667pt;}
.y85{bottom:308.293333pt;}
.y5e{bottom:314.293333pt;}
.y30{bottom:319.306667pt;}
.y84{bottom:328.306667pt;}
.y5d{bottom:333.293333pt;}
.y2f{bottom:334.306667pt;}
.y83{bottom:347.333333pt;}
.y2e{bottom:350.333333pt;}
.y5c{bottom:353.333333pt;}
.y2d{bottom:365.333333pt;}
.y82{bottom:367.333333pt;}
.y5b{bottom:372.333333pt;}
.y2c{bottom:380.360000pt;}
.y81{bottom:386.360000pt;}
.y5a{bottom:391.373333pt;}
.y2b{bottom:396.373333pt;}
.y80{bottom:405.373333pt;}
.y2a{bottom:411.373333pt;}
.y7f{bottom:425.400000pt;}
.y29{bottom:426.400000pt;}
.y59{bottom:430.400000pt;}
.y28{bottom:442.400000pt;}
.y7e{bottom:444.400000pt;}
.y58{bottom:450.400000pt;}
.y27{bottom:457.426667pt;}
.y7d{bottom:464.440000pt;}
.y57{bottom:469.426667pt;}
.y26{bottom:472.426667pt;}
.y7c{bottom:483.440000pt;}
.y25{bottom:487.426667pt;}
.y56{bottom:488.440000pt;}
.y7b{bottom:502.466667pt;}
.y24{bottom:503.466667pt;}
.y55{bottom:508.466667pt;}
.y23{bottom:518.466667pt;}
.y7a{bottom:522.466667pt;}
.y54{bottom:527.466667pt;}
.y22{bottom:533.506667pt;}
.y79{bottom:541.506667pt;}
.y53{bottom:547.506667pt;}
.y21{bottom:549.506667pt;}
.y78{bottom:561.506667pt;}
.y20{bottom:564.506667pt;}
.y52{bottom:566.506667pt;}
.y1f{bottom:579.533333pt;}
.y77{bottom:580.533333pt;}
.y51{bottom:585.533333pt;}
.y1e{bottom:595.533333pt;}
.y76{bottom:599.533333pt;}
.y50{bottom:605.533333pt;}
.y1d{bottom:610.560000pt;}
.y75{bottom:619.560000pt;}
.y4f{bottom:624.573333pt;}
.y1c{bottom:625.560000pt;}
.y74{bottom:638.560000pt;}
.y1b{bottom:641.560000pt;}
.y4e{bottom:643.560000pt;}
.y1a{bottom:656.600000pt;}
.y73{bottom:658.600000pt;}
.y4d{bottom:663.600000pt;}
.y19{bottom:671.600000pt;}
.y72{bottom:677.600000pt;}
.y4c{bottom:682.600000pt;}
.y18{bottom:687.626667pt;}
.y71{bottom:696.626667pt;}
.y17{bottom:702.626667pt;}
.y70{bottom:716.626667pt;}
.y16{bottom:717.626667pt;}
.y4b{bottom:721.626667pt;}
.y15{bottom:733.666667pt;}
.y6f{bottom:735.666667pt;}
.y4a{bottom:740.666667pt;}
.y14{bottom:750.666667pt;}
.y6e{bottom:755.666667pt;}
.y49{bottom:760.706667pt;}
.y13{bottom:769.706667pt;}
.y6d{bottom:774.706667pt;}
.y48{bottom:779.706667pt;}
.y12{bottom:785.706667pt;}
.y6c{bottom:793.706667pt;}
.y47{bottom:799.733333pt;}
.y11{bottom:801.733333pt;}
.y6b{bottom:813.733333pt;}
.y10{bottom:817.733333pt;}
.y46{bottom:818.733333pt;}
.y6a{bottom:832.733333pt;}
.yf{bottom:833.733333pt;}
.y45{bottom:837.773333pt;}
.y69{bottom:849.773333pt;}
.ye{bottom:852.773333pt;}
.y44{bottom:857.773333pt;}
.yd{bottom:871.773333pt;}
.y43{bottom:876.800000pt;}
.yc{bottom:887.800000pt;}
.y42{bottom:896.800000pt;}
.yb{bottom:910.800000pt;}
.y41{bottom:915.840000pt;}
.ya{bottom:933.840000pt;}
.y40{bottom:934.840000pt;}
.y9{bottom:953.866667pt;}
.y3f{bottom:954.866667pt;}
.y8{bottom:968.866667pt;}
.y3e{bottom:973.866667pt;}
.y7{bottom:983.866667pt;}
.y3d{bottom:993.893333pt;}
.y6{bottom:999.893333pt;}
.y3c{bottom:1012.893333pt;}
.y5{bottom:1014.893333pt;}
.y3{bottom:1035.933333pt;}
.y1{bottom:1050.933333pt;}
.h2{height:24.033333pt;}
.hf{height:31.044922pt;}
.ha{height:33.515625pt;}
.h5{height:36.265625pt;}
.he{height:36.308594pt;}
.h6{height:36.689453pt;}
.hc{height:37.552734pt;}
.h10{height:41.894531pt;}
.h9{height:42.333984pt;}
.hd{height:42.859375pt;}
.h11{height:43.681641pt;}
.h4{height:44.687500pt;}
.h3{height:46.218750pt;}
.h8{height:47.978516pt;}
.h7{height:49.107422pt;}
.hb{height:49.453125pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:47.033333pt;}
.w2{width:548.693333pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.000000pt;}
.x1{left:96.133333pt;}
.x8{left:100.133322pt;}
.x5{left:118.133322pt;}
.xf{left:120.133322pt;}
.x12{left:124.166655pt;}
.x3{left:143.173333pt;}
.xc{left:144.159988pt;}
.xa{left:184.239988pt;}
.xb{left:209.266655pt;}
.x11{left:284.359988pt;}
.x9{left:334.399988pt;}
.x6{left:363.439988pt;}
.xd{left:373.466655pt;}
.xe{left:374.466655pt;}
.x7{left:375.466655pt;}
.x4{left:397.506655pt;}
.x10{left:541.666655pt;}
}




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