
    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_b1467baa404fe511ad8bf144.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_9e5366754fd40a148fcc54c6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_23896317b6d7f3afbdcf5e05.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_823da31fbf335eea2d33509a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a9eebda246a9aff01f7c58d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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;}
.ls1{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.720000px;}
.ls6{letter-spacing:12.240000px;}
.ls7{letter-spacing:20.160000px;}
.ls2{letter-spacing:150.797280px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws6{word-spacing:-40.608000px;}
.ws5{word-spacing:-21.060000px;}
.ws9{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-4.752000px;}
._5{margin-left:-2.808000px;}
._0{margin-left:-1.481280px;}
._1{width:1.827360px;}
._7{width:3.428640px;}
._9{width:4.738560px;}
._8{width:5.832000px;}
._d{width:6.912000px;}
._e{width:8.338560px;}
._17{width:9.422400px;}
._12{width:10.584000px;}
._1a{width:12.240000px;}
._b{width:13.464000px;}
._10{width:14.561280px;}
._6{width:15.984000px;}
._11{width:16.992000px;}
._15{width:19.440000px;}
._c{width:20.448000px;}
._16{width:21.456000px;}
._13{width:22.896000px;}
._14{width:23.904000px;}
._2{width:25.456320px;}
._a{width:32.616000px;}
._18{width:36.072000px;}
._19{width:37.080000px;}
._3{width:38.878560px;}
._4{width:39.924000px;}
._23{width:50.328000px;}
._1e{width:93.360000px;}
._1f{width:94.608000px;}
._1d{width:114.456000px;}
._1b{width:162.000000px;}
._1c{width:163.584000px;}
._21{width:201.888000px;}
._22{width:202.896000px;}
._20{width:2280.048000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.ya4{bottom:166.350000px;}
.y6d{bottom:175.890000px;}
.y94{bottom:176.430000px;}
.y31{bottom:184.350000px;}
.y50{bottom:184.890000px;}
.yb5{bottom:185.430000px;}
.yc4{bottom:187.050000px;}
.yae{bottom:188.310000px;}
.y86{bottom:195.690000px;}
.ya3{bottom:197.310000px;}
.y30{bottom:205.050000px;}
.yb4{bottom:206.130000px;}
.y6c{bottom:207.030000px;}
.yc3{bottom:207.750000px;}
.y93{bottom:213.510000px;}
.y4f{bottom:216.030000px;}
.yad{bottom:219.270000px;}
.y2f{bottom:225.750000px;}
.y85{bottom:226.650000px;}
.yb3{bottom:226.830000px;}
.ya2{bottom:228.450000px;}
.y7d{bottom:237.270000px;}
.y6b{bottom:237.990000px;}
.y2e{bottom:246.450000px;}
.y4e{bottom:246.990000px;}
.yb2{bottom:247.530000px;}
.yc2{bottom:249.150000px;}
.y92{bottom:250.410000px;}
.y84{bottom:257.790000px;}
.ya1{bottom:259.410000px;}
.y2d{bottom:267.150000px;}
.yb1{bottom:268.230000px;}
.y6a{bottom:268.950000px;}
.yc1{bottom:269.850000px;}
.y4d{bottom:277.950000px;}
.y7c{bottom:280.110000px;}
.yac{bottom:281.370000px;}
.y91{bottom:281.550000px;}
.y2c{bottom:287.850000px;}
.y83{bottom:288.750000px;}
.yb0{bottom:288.930000px;}
.ya0{bottom:290.550000px;}
.y69{bottom:300.090000px;}
.y2b{bottom:308.550000px;}
.y4c{bottom:309.090000px;}
.y7b{bottom:311.250000px;}
.y90{bottom:312.510000px;}
.yaf{bottom:319.170000px;}
.y82{bottom:319.890000px;}
.y9f{bottom:321.510000px;}
.y2a{bottom:329.250000px;}
.y68{bottom:331.050000px;}
.yc0{bottom:331.950000px;}
.y4b{bottom:340.095000px;}
.y7a{bottom:342.255000px;}
.yab{bottom:343.515000px;}
.y8f{bottom:343.695000px;}
.y29{bottom:349.995000px;}
.y81{bottom:350.895000px;}
.y9e{bottom:352.695000px;}
.y67{bottom:362.235000px;}
.y28{bottom:370.695000px;}
.y4a{bottom:371.235000px;}
.y79{bottom:373.395000px;}
.yaa{bottom:374.475000px;}
.y8e{bottom:374.655000px;}
.y80{bottom:382.035000px;}
.y9d{bottom:383.655000px;}
.y27{bottom:391.395000px;}
.y66{bottom:393.195000px;}
.ybf{bottom:394.095000px;}
.y49{bottom:402.195000px;}
.y78{bottom:404.355000px;}
.ya9{bottom:405.615000px;}
.y8d{bottom:405.795000px;}
.y7f{bottom:409.035000px;}
.y26{bottom:412.095000px;}
.y9c{bottom:414.795000px;}
.y65{bottom:424.335000px;}
.y25{bottom:432.795000px;}
.y48{bottom:433.335000px;}
.y77{bottom:435.495000px;}
.ya8{bottom:436.575000px;}
.y8c{bottom:436.755000px;}
.y9b{bottom:445.755000px;}
.y24{bottom:453.495000px;}
.y64{bottom:455.295000px;}
.ybe{bottom:456.195000px;}
.y47{bottom:464.295000px;}
.y76{bottom:466.455000px;}
.ya7{bottom:467.715000px;}
.y8b{bottom:467.895000px;}
.y23{bottom:474.195000px;}
.y9a{bottom:476.895000px;}
.y63{bottom:486.435000px;}
.y22{bottom:494.895000px;}
.y46{bottom:495.435000px;}
.y75{bottom:497.595000px;}
.y8a{bottom:498.855000px;}
.ya6{bottom:499.035000px;}
.y99{bottom:507.855000px;}
.y21{bottom:515.595000px;}
.y62{bottom:517.395000px;}
.ybd{bottom:518.295000px;}
.y45{bottom:526.395000px;}
.y74{bottom:528.555000px;}
.y89{bottom:529.995000px;}
.y20{bottom:536.295000px;}
.y98{bottom:538.995000px;}
.y61{bottom:548.535000px;}
.y1f{bottom:556.995000px;}
.y44{bottom:557.535000px;}
.y73{bottom:559.695000px;}
.y88{bottom:561.315000px;}
.y97{bottom:569.955000px;}
.y1e{bottom:577.695000px;}
.y60{bottom:579.495000px;}
.ybc{bottom:580.395000px;}
.y43{bottom:588.495000px;}
.y72{bottom:590.655000px;}
.y96{bottom:601.095000px;}
.y1d{bottom:603.645000px;}
.y5f{bottom:610.665000px;}
.y42{bottom:619.665000px;}
.y1c{bottom:621.645000px;}
.y95{bottom:632.265000px;}
.y5e{bottom:641.625000px;}
.y1b{bottom:642.345000px;}
.y41{bottom:650.625000px;}
.y71{bottom:652.785000px;}
.y1a{bottom:663.045000px;}
.y5d{bottom:672.765000px;}
.y7e{bottom:677.805000px;}
.y40{bottom:681.765000px;}
.y19{bottom:683.745000px;}
.y5c{bottom:703.725000px;}
.y18{bottom:704.445000px;}
.y3f{bottom:712.725000px;}
.y70{bottom:714.885000px;}
.y17{bottom:725.145000px;}
.y5b{bottom:734.865000px;}
.y3e{bottom:743.865000px;}
.y16{bottom:745.845000px;}
.y5a{bottom:765.825000px;}
.y15{bottom:766.545000px;}
.y3d{bottom:774.825000px;}
.y6f{bottom:776.985000px;}
.y14{bottom:787.245000px;}
.y59{bottom:796.965000px;}
.y3c{bottom:805.965000px;}
.y13{bottom:807.945000px;}
.y58{bottom:827.925000px;}
.y12{bottom:828.645000px;}
.y3b{bottom:836.925000px;}
.y6e{bottom:839.085000px;}
.y11{bottom:849.345000px;}
.y57{bottom:858.165000px;}
.y3a{bottom:868.065000px;}
.y10{bottom:870.045000px;}
.yf{bottom:890.790000px;}
.ya5{bottom:895.290000px;}
.y39{bottom:899.070000px;}
.y56{bottom:901.230000px;}
.ye{bottom:911.490000px;}
.y87{bottom:926.250000px;}
.y38{bottom:930.210000px;}
.yd{bottom:932.190000px;}
.ybb{bottom:952.890000px;}
.yc{bottom:954.330000px;}
.y37{bottom:961.170000px;}
.y55{bottom:963.330000px;}
.yba{bottom:973.590000px;}
.yb{bottom:981.870000px;}
.y36{bottom:992.310000px;}
.y54{bottom:994.290000px;}
.ya{bottom:1009.410000px;}
.yb9{bottom:1014.990000px;}
.y35{bottom:1023.270000px;}
.y53{bottom:1025.430000px;}
.yb8{bottom:1035.690000px;}
.y9{bottom:1037.130000px;}
.y34{bottom:1054.410000px;}
.y52{bottom:1056.390000px;}
.y8{bottom:1064.670000px;}
.yb7{bottom:1077.090000px;}
.y33{bottom:1085.370000px;}
.y51{bottom:1087.530000px;}
.y7{bottom:1092.210000px;}
.yb6{bottom:1097.790000px;}
.y32{bottom:1115.610000px;}
.y6{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h7{height:53.573906px;}
.h4{height:59.343750px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.ha{height:69.710625px;}
.h8{height:74.820586px;}
.h9{height:75.519844px;}
.h6{height:78.927188px;}
.h5{height:85.052461px;}
.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:127.655987px;}
.x7{left:160.049987px;}
.x3{left:170.129987px;}
.x6{left:248.789987px;}
.xa{left:255.809987px;}
.xd{left:271.829987px;}
.x8{left:284.654987px;}
.xf{left:304.094987px;}
.x5{left:334.154987px;}
.xc{left:467.924987px;}
.x1{left:489.164987px;}
.x10{left:616.784987px;}
.xb{left:622.004987px;}
.xe{left:710.969987px;}
.x9{left:721.049987px;}
.x4{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls6{letter-spacing:10.880000pt;}
.ls7{letter-spacing:17.920000pt;}
.ls2{letter-spacing:134.042027pt;}
.ws2{word-spacing:-64.000000pt;}
.ws6{word-spacing:-36.096000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-4.224000pt;}
._5{margin-left:-2.496000pt;}
._0{margin-left:-1.316693pt;}
._1{width:1.624320pt;}
._7{width:3.047680pt;}
._9{width:4.212053pt;}
._8{width:5.184000pt;}
._d{width:6.144000pt;}
._e{width:7.412053pt;}
._17{width:8.375467pt;}
._12{width:9.408000pt;}
._1a{width:10.880000pt;}
._b{width:11.968000pt;}
._10{width:12.943360pt;}
._6{width:14.208000pt;}
._11{width:15.104000pt;}
._15{width:17.280000pt;}
._c{width:18.176000pt;}
._16{width:19.072000pt;}
._13{width:20.352000pt;}
._14{width:21.248000pt;}
._2{width:22.627840pt;}
._a{width:28.992000pt;}
._18{width:32.064000pt;}
._19{width:32.960000pt;}
._3{width:34.558720pt;}
._4{width:35.488000pt;}
._23{width:44.736000pt;}
._1e{width:82.986667pt;}
._1f{width:84.096000pt;}
._1d{width:101.738667pt;}
._1b{width:144.000000pt;}
._1c{width:145.408000pt;}
._21{width:179.456000pt;}
._22{width:180.352000pt;}
._20{width:2026.709333pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.ya4{bottom:147.866667pt;}
.y6d{bottom:156.346667pt;}
.y94{bottom:156.826667pt;}
.y31{bottom:163.866667pt;}
.y50{bottom:164.346667pt;}
.yb5{bottom:164.826667pt;}
.yc4{bottom:166.266667pt;}
.yae{bottom:167.386667pt;}
.y86{bottom:173.946667pt;}
.ya3{bottom:175.386667pt;}
.y30{bottom:182.266667pt;}
.yb4{bottom:183.226667pt;}
.y6c{bottom:184.026667pt;}
.yc3{bottom:184.666667pt;}
.y93{bottom:189.786667pt;}
.y4f{bottom:192.026667pt;}
.yad{bottom:194.906667pt;}
.y2f{bottom:200.666667pt;}
.y85{bottom:201.466667pt;}
.yb3{bottom:201.626667pt;}
.ya2{bottom:203.066667pt;}
.y7d{bottom:210.906667pt;}
.y6b{bottom:211.546667pt;}
.y2e{bottom:219.066667pt;}
.y4e{bottom:219.546667pt;}
.yb2{bottom:220.026667pt;}
.yc2{bottom:221.466667pt;}
.y92{bottom:222.586667pt;}
.y84{bottom:229.146667pt;}
.ya1{bottom:230.586667pt;}
.y2d{bottom:237.466667pt;}
.yb1{bottom:238.426667pt;}
.y6a{bottom:239.066667pt;}
.yc1{bottom:239.866667pt;}
.y4d{bottom:247.066667pt;}
.y7c{bottom:248.986667pt;}
.yac{bottom:250.106667pt;}
.y91{bottom:250.266667pt;}
.y2c{bottom:255.866667pt;}
.y83{bottom:256.666667pt;}
.yb0{bottom:256.826667pt;}
.ya0{bottom:258.266667pt;}
.y69{bottom:266.746667pt;}
.y2b{bottom:274.266667pt;}
.y4c{bottom:274.746667pt;}
.y7b{bottom:276.666667pt;}
.y90{bottom:277.786667pt;}
.yaf{bottom:283.706667pt;}
.y82{bottom:284.346667pt;}
.y9f{bottom:285.786667pt;}
.y2a{bottom:292.666667pt;}
.y68{bottom:294.266667pt;}
.yc0{bottom:295.066667pt;}
.y4b{bottom:302.306667pt;}
.y7a{bottom:304.226667pt;}
.yab{bottom:305.346667pt;}
.y8f{bottom:305.506667pt;}
.y29{bottom:311.106667pt;}
.y81{bottom:311.906667pt;}
.y9e{bottom:313.506667pt;}
.y67{bottom:321.986667pt;}
.y28{bottom:329.506667pt;}
.y4a{bottom:329.986667pt;}
.y79{bottom:331.906667pt;}
.yaa{bottom:332.866667pt;}
.y8e{bottom:333.026667pt;}
.y80{bottom:339.586667pt;}
.y9d{bottom:341.026667pt;}
.y27{bottom:347.906667pt;}
.y66{bottom:349.506667pt;}
.ybf{bottom:350.306667pt;}
.y49{bottom:357.506667pt;}
.y78{bottom:359.426667pt;}
.ya9{bottom:360.546667pt;}
.y8d{bottom:360.706667pt;}
.y7f{bottom:363.586667pt;}
.y26{bottom:366.306667pt;}
.y9c{bottom:368.706667pt;}
.y65{bottom:377.186667pt;}
.y25{bottom:384.706667pt;}
.y48{bottom:385.186667pt;}
.y77{bottom:387.106667pt;}
.ya8{bottom:388.066667pt;}
.y8c{bottom:388.226667pt;}
.y9b{bottom:396.226667pt;}
.y24{bottom:403.106667pt;}
.y64{bottom:404.706667pt;}
.ybe{bottom:405.506667pt;}
.y47{bottom:412.706667pt;}
.y76{bottom:414.626667pt;}
.ya7{bottom:415.746667pt;}
.y8b{bottom:415.906667pt;}
.y23{bottom:421.506667pt;}
.y9a{bottom:423.906667pt;}
.y63{bottom:432.386667pt;}
.y22{bottom:439.906667pt;}
.y46{bottom:440.386667pt;}
.y75{bottom:442.306667pt;}
.y8a{bottom:443.426667pt;}
.ya6{bottom:443.586667pt;}
.y99{bottom:451.426667pt;}
.y21{bottom:458.306667pt;}
.y62{bottom:459.906667pt;}
.ybd{bottom:460.706667pt;}
.y45{bottom:467.906667pt;}
.y74{bottom:469.826667pt;}
.y89{bottom:471.106667pt;}
.y20{bottom:476.706667pt;}
.y98{bottom:479.106667pt;}
.y61{bottom:487.586667pt;}
.y1f{bottom:495.106667pt;}
.y44{bottom:495.586667pt;}
.y73{bottom:497.506667pt;}
.y88{bottom:498.946667pt;}
.y97{bottom:506.626667pt;}
.y1e{bottom:513.506667pt;}
.y60{bottom:515.106667pt;}
.ybc{bottom:515.906667pt;}
.y43{bottom:523.106667pt;}
.y72{bottom:525.026667pt;}
.y96{bottom:534.306667pt;}
.y1d{bottom:536.573333pt;}
.y5f{bottom:542.813333pt;}
.y42{bottom:550.813333pt;}
.y1c{bottom:552.573333pt;}
.y95{bottom:562.013333pt;}
.y5e{bottom:570.333333pt;}
.y1b{bottom:570.973333pt;}
.y41{bottom:578.333333pt;}
.y71{bottom:580.253333pt;}
.y1a{bottom:589.373333pt;}
.y5d{bottom:598.013333pt;}
.y7e{bottom:602.493333pt;}
.y40{bottom:606.013333pt;}
.y19{bottom:607.773333pt;}
.y5c{bottom:625.533333pt;}
.y18{bottom:626.173333pt;}
.y3f{bottom:633.533333pt;}
.y70{bottom:635.453333pt;}
.y17{bottom:644.573333pt;}
.y5b{bottom:653.213333pt;}
.y3e{bottom:661.213333pt;}
.y16{bottom:662.973333pt;}
.y5a{bottom:680.733333pt;}
.y15{bottom:681.373333pt;}
.y3d{bottom:688.733333pt;}
.y6f{bottom:690.653333pt;}
.y14{bottom:699.773333pt;}
.y59{bottom:708.413333pt;}
.y3c{bottom:716.413333pt;}
.y13{bottom:718.173333pt;}
.y58{bottom:735.933333pt;}
.y12{bottom:736.573333pt;}
.y3b{bottom:743.933333pt;}
.y6e{bottom:745.853333pt;}
.y11{bottom:754.973333pt;}
.y57{bottom:762.813333pt;}
.y3a{bottom:771.613333pt;}
.y10{bottom:773.373333pt;}
.yf{bottom:791.813333pt;}
.ya5{bottom:795.813333pt;}
.y39{bottom:799.173333pt;}
.y56{bottom:801.093333pt;}
.ye{bottom:810.213333pt;}
.y87{bottom:823.333333pt;}
.y38{bottom:826.853333pt;}
.yd{bottom:828.613333pt;}
.ybb{bottom:847.013333pt;}
.yc{bottom:848.293333pt;}
.y37{bottom:854.373333pt;}
.y55{bottom:856.293333pt;}
.yba{bottom:865.413333pt;}
.yb{bottom:872.773333pt;}
.y36{bottom:882.053333pt;}
.y54{bottom:883.813333pt;}
.ya{bottom:897.253333pt;}
.yb9{bottom:902.213333pt;}
.y35{bottom:909.573333pt;}
.y53{bottom:911.493333pt;}
.yb8{bottom:920.613333pt;}
.y9{bottom:921.893333pt;}
.y34{bottom:937.253333pt;}
.y52{bottom:939.013333pt;}
.y8{bottom:946.373333pt;}
.yb7{bottom:957.413333pt;}
.y33{bottom:964.773333pt;}
.y51{bottom:966.693333pt;}
.y7{bottom:970.853333pt;}
.yb6{bottom:975.813333pt;}
.y32{bottom:991.653333pt;}
.y6{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h7{height:47.621250pt;}
.h4{height:52.750000pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.ha{height:61.965000pt;}
.h8{height:66.507188pt;}
.h9{height:67.128750pt;}
.h6{height:70.157500pt;}
.h5{height:75.602187pt;}
.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:113.471988pt;}
.x7{left:142.266655pt;}
.x3{left:151.226655pt;}
.x6{left:221.146655pt;}
.xa{left:227.386655pt;}
.xd{left:241.626655pt;}
.x8{left:253.026655pt;}
.xf{left:270.306655pt;}
.x5{left:297.026655pt;}
.xc{left:415.933322pt;}
.x1{left:434.813322pt;}
.x10{left:548.253322pt;}
.xb{left:552.893322pt;}
.xe{left:631.973322pt;}
.x9{left:640.933322pt;}
.x4{left:718.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; }
  