
    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_63d17116f4c0547cd0cb7e66.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_e0ad7af9327e76a1f2d2b0ee.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_247bce24ad0698dda4f6c872.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_0dee83c8958fa2f697998ae7.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_8c97ae562bfa25e950c310ff.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.792000px;}
.ls1{letter-spacing:64.421280px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._1a{margin-left:-4.968000px;}
._9{margin-left:-3.667200px;}
._8{margin-left:-2.635200px;}
._0{margin-left:-1.324800px;}
._1{width:1.394880px;}
._4{width:2.919840px;}
._10{width:4.469280px;}
._7{width:5.544000px;}
._15{width:6.753600px;}
._11{width:7.776000px;}
._e{width:9.000000px;}
._12{width:10.728000px;}
._f{width:12.168000px;}
._5{width:13.896000px;}
._6{width:15.048000px;}
._16{width:16.732800px;}
._d{width:19.944000px;}
._c{width:21.168000px;}
._19{width:22.176000px;}
._13{width:23.592000px;}
._14{width:24.768000px;}
._18{width:26.424000px;}
._1c{width:27.648000px;}
._1b{width:28.944000px;}
._b{width:30.024000px;}
._a{width:31.176000px;}
._17{width:35.928000px;}
._20{width:37.584000px;}
._21{width:38.953920px;}
._1d{width:45.604800px;}
._2{width:48.879120px;}
._3{width:77.511360px;}
._1e{width:202.464000px;}
._1f{width:203.905920px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs5{font-size:23.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:102.636000px;}
.y3{bottom:121.536000px;}
.y2{bottom:140.796000px;}
.y8b{bottom:162.930000px;}
.y6a{bottom:174.450000px;}
.y2e{bottom:177.510000px;}
.ybe{bottom:187.950000px;}
.yd2{bottom:192.450000px;}
.y4b{bottom:195.510000px;}
.y98{bottom:196.770000px;}
.y2d{bottom:198.210000px;}
.y8a{bottom:200.010000px;}
.y7d{bottom:205.410000px;}
.y69{bottom:205.590000px;}
.yd1{bottom:213.150000px;}
.y2c{bottom:218.910000px;}
.y4a{bottom:226.470000px;}
.y97{bottom:233.850000px;}
.ya3{bottom:234.930000px;}
.y68{bottom:236.550000px;}
.y89{bottom:237.090000px;}
.y2b{bottom:239.610000px;}
.ybd{bottom:250.050000px;}
.yd0{bottom:254.550000px;}
.y49{bottom:257.610000px;}
.y2a{bottom:260.310000px;}
.y96{bottom:264.990000px;}
.y7c{bottom:267.510000px;}
.y67{bottom:267.690000px;}
.ya2{bottom:272.010000px;}
.y88{bottom:274.170000px;}
.ycf{bottom:275.250000px;}
.yad{bottom:279.030000px;}
.y29{bottom:281.010000px;}
.y48{bottom:288.570000px;}
.y95{bottom:295.950000px;}
.y66{bottom:298.650000px;}
.y28{bottom:301.710000px;}
.ya1{bottom:303.150000px;}
.y87{bottom:311.070000px;}
.ybc{bottom:312.150000px;}
.yac{bottom:316.110000px;}
.yce{bottom:316.650000px;}
.y94{bottom:318.630000px;}
.y47{bottom:319.710000px;}
.y27{bottom:322.410000px;}
.y7b{bottom:329.610000px;}
.y65{bottom:329.790000px;}
.ya0{bottom:334.110000px;}
.ycd{bottom:337.395000px;}
.y26{bottom:343.155000px;}
.yab{bottom:347.295000px;}
.y86{bottom:348.195000px;}
.y46{bottom:350.715000px;}
.y9f{bottom:356.835000px;}
.y64{bottom:357.015000px;}
.ycc{bottom:358.095000px;}
.y7a{bottom:360.795000px;}
.y25{bottom:363.855000px;}
.ybb{bottom:374.295000px;}
.yaa{bottom:378.255000px;}
.ycb{bottom:378.795000px;}
.y45{bottom:381.855000px;}
.y24{bottom:384.555000px;}
.y85{bottom:385.275000px;}
.y63{bottom:389.595000px;}
.y79{bottom:391.755000px;}
.yca{bottom:399.495000px;}
.y23{bottom:405.255000px;}
.ya9{bottom:411.375000px;}
.y44{bottom:412.815000px;}
.yba{bottom:413.535000px;}
.y84{bottom:416.415000px;}
.yc9{bottom:420.195000px;}
.y22{bottom:425.955000px;}
.y62{bottom:426.675000px;}
.y78{bottom:430.995000px;}
.yc8{bottom:440.895000px;}
.y43{bottom:443.955000px;}
.y21{bottom:446.655000px;}
.y83{bottom:447.375000px;}
.yb9{bottom:456.555000px;}
.y61{bottom:457.635000px;}
.yc7{bottom:461.595000px;}
.y20{bottom:467.355000px;}
.y77{bottom:474.015000px;}
.y42{bottom:474.915000px;}
.y82{bottom:478.515000px;}
.y60{bottom:479.235000px;}
.yc6{bottom:482.295000px;}
.y1f{bottom:488.055000px;}
.yb8{bottom:493.635000px;}
.y5f{bottom:496.695000px;}
.yc5{bottom:502.995000px;}
.y1e{bottom:508.755000px;}
.y81{bottom:509.475000px;}
.y76{bottom:511.095000px;}
.y41{bottom:511.995000px;}
.y5e{bottom:522.435000px;}
.yc4{bottom:523.695000px;}
.yb7{bottom:524.595000px;}
.y1d{bottom:529.455000px;}
.y80{bottom:532.155000px;}
.y75{bottom:542.055000px;}
.y40{bottom:542.955000px;}
.yc3{bottom:544.395000px;}
.y5d{bottom:548.355000px;}
.y1c{bottom:550.155000px;}
.yb6{bottom:555.735000px;}
.yc2{bottom:565.095000px;}
.y1b{bottom:570.855000px;}
.y74{bottom:573.195000px;}
.y3f{bottom:574.095000px;}
.y5c{bottom:574.275000px;}
.yc1{bottom:585.795000px;}
.yb5{bottom:586.695000px;}
.y1a{bottom:591.555000px;}
.y5b{bottom:600.015000px;}
.y73{bottom:604.185000px;}
.y93{bottom:604.365000px;}
.y3e{bottom:605.085000px;}
.yc0{bottom:606.525000px;}
.y19{bottom:612.285000px;}
.yb4{bottom:617.865000px;}
.y5a{bottom:625.965000px;}
.y18{bottom:632.985000px;}
.ybf{bottom:633.705000px;}
.y72{bottom:635.325000px;}
.y3d{bottom:636.225000px;}
.y92{bottom:641.265000px;}
.y9e{bottom:642.525000px;}
.y17{bottom:653.685000px;}
.yb3{bottom:654.765000px;}
.y59{bottom:660.345000px;}
.ydf{bottom:661.965000px;}
.y71{bottom:666.285000px;}
.y3c{bottom:667.185000px;}
.y91{bottom:672.405000px;}
.y16{bottom:674.385000px;}
.y9d{bottom:679.605000px;}
.yde{bottom:682.665000px;}
.yb2{bottom:685.905000px;}
.y15{bottom:695.085000px;}
.y58{bottom:697.425000px;}
.y3b{bottom:698.325000px;}
.ya8{bottom:703.005000px;}
.y90{bottom:703.365000px;}
.y9c{bottom:710.565000px;}
.y14{bottom:715.605000px;}
.yb1{bottom:716.865000px;}
.ydd{bottom:724.065000px;}
.y57{bottom:728.385000px;}
.y3a{bottom:729.285000px;}
.y8f{bottom:734.505000px;}
.y13{bottom:736.305000px;}
.ya7{bottom:739.905000px;}
.y9b{bottom:741.705000px;}
.ydc{bottom:744.765000px;}
.yb0{bottom:748.005000px;}
.y12{bottom:757.005000px;}
.y56{bottom:759.525000px;}
.y39{bottom:760.425000px;}
.y8e{bottom:765.465000px;}
.ya6{bottom:771.045000px;}
.y9a{bottom:772.665000px;}
.y11{bottom:777.705000px;}
.yaf{bottom:778.965000px;}
.ydb{bottom:786.165000px;}
.y55{bottom:790.485000px;}
.y38{bottom:791.385000px;}
.y99{bottom:795.345000px;}
.y8d{bottom:796.605000px;}
.y10{bottom:798.405000px;}
.yae{bottom:801.645000px;}
.ya5{bottom:802.005000px;}
.yda{bottom:806.865000px;}
.y7f{bottom:815.505000px;}
.yf{bottom:819.105000px;}
.y8c{bottom:819.285000px;}
.y70{bottom:821.625000px;}
.ya4{bottom:824.685000px;}
.y54{bottom:827.565000px;}
.y37{bottom:828.465000px;}
.ye{bottom:839.805000px;}
.yd9{bottom:848.265000px;}
.y6f{bottom:852.585000px;}
.y53{bottom:858.705000px;}
.y36{bottom:859.605000px;}
.yd{bottom:860.505000px;}
.yd8{bottom:868.965000px;}
.yc{bottom:881.250000px;}
.y6e{bottom:883.770000px;}
.y52{bottom:889.710000px;}
.y35{bottom:890.610000px;}
.yd7{bottom:910.410000px;}
.y6d{bottom:914.730000px;}
.y51{bottom:920.850000px;}
.yb{bottom:921.390000px;}
.y34{bottom:921.750000px;}
.yd6{bottom:931.110000px;}
.y6c{bottom:945.870000px;}
.ya{bottom:948.930000px;}
.y50{bottom:951.810000px;}
.y33{bottom:952.710000px;}
.yd5{bottom:972.510000px;}
.y6b{bottom:976.830000px;}
.y4f{bottom:982.950000px;}
.y32{bottom:983.850000px;}
.y9{bottom:993.210000px;}
.y7e{bottom:1007.970000px;}
.y4e{bottom:1013.910000px;}
.y31{bottom:1014.810000px;}
.y8{bottom:1015.170000px;}
.yd4{bottom:1034.610000px;}
.y7{bottom:1042.890000px;}
.y4d{bottom:1045.050000px;}
.y30{bottom:1045.950000px;}
.yd3{bottom:1055.310000px;}
.y6{bottom:1070.430000px;}
.y2f{bottom:1073.130000px;}
.y4c{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h8{height:21.300469px;}
.h7{height:53.573906px;}
.h5{height:59.343750px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h4{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;}
.x4{left:106.415987px;}
.x6{left:143.675987px;}
.x2{left:148.895987px;}
.xa{left:275.969987px;}
.x10{left:277.634987px;}
.x8{left:283.934987px;}
.xe{left:313.634987px;}
.xd{left:328.574987px;}
.x9{left:330.014987px;}
.x7{left:338.114987px;}
.xb{left:340.454987px;}
.x11{left:362.054987px;}
.x5{left:446.474987px;}
.x1{left:467.744987px;}
.xc{left:750.389987px;}
.xf{left:768.749987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.704000pt;}
.ls1{letter-spacing:57.263360pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._1a{margin-left:-4.416000pt;}
._9{margin-left:-3.259733pt;}
._8{margin-left:-2.342400pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.239893pt;}
._4{width:2.595413pt;}
._10{width:3.972693pt;}
._7{width:4.928000pt;}
._15{width:6.003200pt;}
._11{width:6.912000pt;}
._e{width:8.000000pt;}
._12{width:9.536000pt;}
._f{width:10.816000pt;}
._5{width:12.352000pt;}
._6{width:13.376000pt;}
._16{width:14.873600pt;}
._d{width:17.728000pt;}
._c{width:18.816000pt;}
._19{width:19.712000pt;}
._13{width:20.970667pt;}
._14{width:22.016000pt;}
._18{width:23.488000pt;}
._1c{width:24.576000pt;}
._1b{width:25.728000pt;}
._b{width:26.688000pt;}
._a{width:27.712000pt;}
._17{width:31.936000pt;}
._20{width:33.408000pt;}
._21{width:34.625707pt;}
._1d{width:40.537600pt;}
._2{width:43.448107pt;}
._3{width:68.898987pt;}
._1e{width:179.968000pt;}
._1f{width:181.249707pt;}
.fs5{font-size:21.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:91.232000pt;}
.y3{bottom:108.032000pt;}
.y2{bottom:125.152000pt;}
.y8b{bottom:144.826667pt;}
.y6a{bottom:155.066667pt;}
.y2e{bottom:157.786667pt;}
.ybe{bottom:167.066667pt;}
.yd2{bottom:171.066667pt;}
.y4b{bottom:173.786667pt;}
.y98{bottom:174.906667pt;}
.y2d{bottom:176.186667pt;}
.y8a{bottom:177.786667pt;}
.y7d{bottom:182.586667pt;}
.y69{bottom:182.746667pt;}
.yd1{bottom:189.466667pt;}
.y2c{bottom:194.586667pt;}
.y4a{bottom:201.306667pt;}
.y97{bottom:207.866667pt;}
.ya3{bottom:208.826667pt;}
.y68{bottom:210.266667pt;}
.y89{bottom:210.746667pt;}
.y2b{bottom:212.986667pt;}
.ybd{bottom:222.266667pt;}
.yd0{bottom:226.266667pt;}
.y49{bottom:228.986667pt;}
.y2a{bottom:231.386667pt;}
.y96{bottom:235.546667pt;}
.y7c{bottom:237.786667pt;}
.y67{bottom:237.946667pt;}
.ya2{bottom:241.786667pt;}
.y88{bottom:243.706667pt;}
.ycf{bottom:244.666667pt;}
.yad{bottom:248.026667pt;}
.y29{bottom:249.786667pt;}
.y48{bottom:256.506667pt;}
.y95{bottom:263.066667pt;}
.y66{bottom:265.466667pt;}
.y28{bottom:268.186667pt;}
.ya1{bottom:269.466667pt;}
.y87{bottom:276.506667pt;}
.ybc{bottom:277.466667pt;}
.yac{bottom:280.986667pt;}
.yce{bottom:281.466667pt;}
.y94{bottom:283.226667pt;}
.y47{bottom:284.186667pt;}
.y27{bottom:286.586667pt;}
.y7b{bottom:292.986667pt;}
.y65{bottom:293.146667pt;}
.ya0{bottom:296.986667pt;}
.ycd{bottom:299.906667pt;}
.y26{bottom:305.026667pt;}
.yab{bottom:308.706667pt;}
.y86{bottom:309.506667pt;}
.y46{bottom:311.746667pt;}
.y9f{bottom:317.186667pt;}
.y64{bottom:317.346667pt;}
.ycc{bottom:318.306667pt;}
.y7a{bottom:320.706667pt;}
.y25{bottom:323.426667pt;}
.ybb{bottom:332.706667pt;}
.yaa{bottom:336.226667pt;}
.ycb{bottom:336.706667pt;}
.y45{bottom:339.426667pt;}
.y24{bottom:341.826667pt;}
.y85{bottom:342.466667pt;}
.y63{bottom:346.306667pt;}
.y79{bottom:348.226667pt;}
.yca{bottom:355.106667pt;}
.y23{bottom:360.226667pt;}
.ya9{bottom:365.666667pt;}
.y44{bottom:366.946667pt;}
.yba{bottom:367.586667pt;}
.y84{bottom:370.146667pt;}
.yc9{bottom:373.506667pt;}
.y22{bottom:378.626667pt;}
.y62{bottom:379.266667pt;}
.y78{bottom:383.106667pt;}
.yc8{bottom:391.906667pt;}
.y43{bottom:394.626667pt;}
.y21{bottom:397.026667pt;}
.y83{bottom:397.666667pt;}
.yb9{bottom:405.826667pt;}
.y61{bottom:406.786667pt;}
.yc7{bottom:410.306667pt;}
.y20{bottom:415.426667pt;}
.y77{bottom:421.346667pt;}
.y42{bottom:422.146667pt;}
.y82{bottom:425.346667pt;}
.y60{bottom:425.986667pt;}
.yc6{bottom:428.706667pt;}
.y1f{bottom:433.826667pt;}
.yb8{bottom:438.786667pt;}
.y5f{bottom:441.506667pt;}
.yc5{bottom:447.106667pt;}
.y1e{bottom:452.226667pt;}
.y81{bottom:452.866667pt;}
.y76{bottom:454.306667pt;}
.y41{bottom:455.106667pt;}
.y5e{bottom:464.386667pt;}
.yc4{bottom:465.506667pt;}
.yb7{bottom:466.306667pt;}
.y1d{bottom:470.626667pt;}
.y80{bottom:473.026667pt;}
.y75{bottom:481.826667pt;}
.y40{bottom:482.626667pt;}
.yc3{bottom:483.906667pt;}
.y5d{bottom:487.426667pt;}
.y1c{bottom:489.026667pt;}
.yb6{bottom:493.986667pt;}
.yc2{bottom:502.306667pt;}
.y1b{bottom:507.426667pt;}
.y74{bottom:509.506667pt;}
.y3f{bottom:510.306667pt;}
.y5c{bottom:510.466667pt;}
.yc1{bottom:520.706667pt;}
.yb5{bottom:521.506667pt;}
.y1a{bottom:525.826667pt;}
.y5b{bottom:533.346667pt;}
.y73{bottom:537.053333pt;}
.y93{bottom:537.213333pt;}
.y3e{bottom:537.853333pt;}
.yc0{bottom:539.133333pt;}
.y19{bottom:544.253333pt;}
.yb4{bottom:549.213333pt;}
.y5a{bottom:556.413333pt;}
.y18{bottom:562.653333pt;}
.ybf{bottom:563.293333pt;}
.y72{bottom:564.733333pt;}
.y3d{bottom:565.533333pt;}
.y92{bottom:570.013333pt;}
.y9e{bottom:571.133333pt;}
.y17{bottom:581.053333pt;}
.yb3{bottom:582.013333pt;}
.y59{bottom:586.973333pt;}
.ydf{bottom:588.413333pt;}
.y71{bottom:592.253333pt;}
.y3c{bottom:593.053333pt;}
.y91{bottom:597.693333pt;}
.y16{bottom:599.453333pt;}
.y9d{bottom:604.093333pt;}
.yde{bottom:606.813333pt;}
.yb2{bottom:609.693333pt;}
.y15{bottom:617.853333pt;}
.y58{bottom:619.933333pt;}
.y3b{bottom:620.733333pt;}
.ya8{bottom:624.893333pt;}
.y90{bottom:625.213333pt;}
.y9c{bottom:631.613333pt;}
.y14{bottom:636.093333pt;}
.yb1{bottom:637.213333pt;}
.ydd{bottom:643.613333pt;}
.y57{bottom:647.453333pt;}
.y3a{bottom:648.253333pt;}
.y8f{bottom:652.893333pt;}
.y13{bottom:654.493333pt;}
.ya7{bottom:657.693333pt;}
.y9b{bottom:659.293333pt;}
.ydc{bottom:662.013333pt;}
.yb0{bottom:664.893333pt;}
.y12{bottom:672.893333pt;}
.y56{bottom:675.133333pt;}
.y39{bottom:675.933333pt;}
.y8e{bottom:680.413333pt;}
.ya6{bottom:685.373333pt;}
.y9a{bottom:686.813333pt;}
.y11{bottom:691.293333pt;}
.yaf{bottom:692.413333pt;}
.ydb{bottom:698.813333pt;}
.y55{bottom:702.653333pt;}
.y38{bottom:703.453333pt;}
.y99{bottom:706.973333pt;}
.y8d{bottom:708.093333pt;}
.y10{bottom:709.693333pt;}
.yae{bottom:712.573333pt;}
.ya5{bottom:712.893333pt;}
.yda{bottom:717.213333pt;}
.y7f{bottom:724.893333pt;}
.yf{bottom:728.093333pt;}
.y8c{bottom:728.253333pt;}
.y70{bottom:730.333333pt;}
.ya4{bottom:733.053333pt;}
.y54{bottom:735.613333pt;}
.y37{bottom:736.413333pt;}
.ye{bottom:746.493333pt;}
.yd9{bottom:754.013333pt;}
.y6f{bottom:757.853333pt;}
.y53{bottom:763.293333pt;}
.y36{bottom:764.093333pt;}
.yd{bottom:764.893333pt;}
.yd8{bottom:772.413333pt;}
.yc{bottom:783.333333pt;}
.y6e{bottom:785.573333pt;}
.y52{bottom:790.853333pt;}
.y35{bottom:791.653333pt;}
.yd7{bottom:809.253333pt;}
.y6d{bottom:813.093333pt;}
.y51{bottom:818.533333pt;}
.yb{bottom:819.013333pt;}
.y34{bottom:819.333333pt;}
.yd6{bottom:827.653333pt;}
.y6c{bottom:840.773333pt;}
.ya{bottom:843.493333pt;}
.y50{bottom:846.053333pt;}
.y33{bottom:846.853333pt;}
.yd5{bottom:864.453333pt;}
.y6b{bottom:868.293333pt;}
.y4f{bottom:873.733333pt;}
.y32{bottom:874.533333pt;}
.y9{bottom:882.853333pt;}
.y7e{bottom:895.973333pt;}
.y4e{bottom:901.253333pt;}
.y31{bottom:902.053333pt;}
.y8{bottom:902.373333pt;}
.yd4{bottom:919.653333pt;}
.y7{bottom:927.013333pt;}
.y4d{bottom:928.933333pt;}
.y30{bottom:929.733333pt;}
.yd3{bottom:938.053333pt;}
.y6{bottom:951.493333pt;}
.y2f{bottom:953.893333pt;}
.y4c{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h8{height:18.933750pt;}
.h7{height:47.621250pt;}
.h5{height:52.750000pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h4{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;}
.x4{left:94.591988pt;}
.x6{left:127.711988pt;}
.x2{left:132.351988pt;}
.xa{left:245.306655pt;}
.x10{left:246.786655pt;}
.x8{left:252.386655pt;}
.xe{left:278.786655pt;}
.xd{left:292.066655pt;}
.x9{left:293.346655pt;}
.x7{left:300.546655pt;}
.xb{left:302.626655pt;}
.x11{left:321.826655pt;}
.x5{left:396.866655pt;}
.x1{left:415.773322pt;}
.xc{left:667.013322pt;}
.xf{left:683.333322pt;}
.x3{left:699.333322pt;}
}




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