
    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_33484901d08794172945afd1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d80574547fe151a5f1475334.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_83e66d57dcd358d6d447530d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b14db3ee6b8ae53b064a7e40.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6618c4d898a5ee31b7969605.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.110352;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_0431b5c4ae710504a9e115c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.680176;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_058be63e91f2cf0334cc69d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_162f30b6e1e0b9b0db3ea707.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.392578;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);}
.v1{vertical-align:-70.560000px;}
.v3{vertical-align:-69.120000px;}
.v5{vertical-align:-58.320000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.ls15{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.538800px;}
.ls11{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.900000px;}
.ls0{letter-spacing:15.300000px;}
.ls1{letter-spacing:58.013280px;}
.ls12{letter-spacing:70.140000px;}
.ls9{letter-spacing:70.164000px;}
.lse{letter-spacing:82.146720px;}
.ls5{letter-spacing:155.844000px;}
.ls13{letter-spacing:1431.120000px;}
.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;}
}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws3{word-spacing:-12.598800px;}
.ws1{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws0{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-2.447280px;}
._0{margin-left:-1.263600px;}
._2{width:1.015920px;}
._1{width:2.532480px;}
._6{width:3.779520px;}
._8{width:4.932000px;}
._a{width:6.215040px;}
._9{width:7.230960px;}
._b{width:8.426160px;}
._5{width:9.740880px;}
._4{width:10.962480px;}
._1b{width:12.011760px;}
._c{width:13.685040px;}
._7{width:16.493760px;}
._22{width:17.569440px;}
._1d{width:18.585360px;}
._13{width:19.609920px;}
._12{width:20.796480px;}
._1e{width:22.361760px;}
._e{width:23.463840px;}
._f{width:24.485520px;}
._17{width:26.052240px;}
._16{width:27.131040px;}
._25{width:28.386000px;}
._18{width:29.581200px;}
._d{width:31.134960px;}
._19{width:32.569200px;}
._1a{width:33.632400px;}
._28{width:34.972080px;}
._11{width:36.916560px;}
._10{width:37.935120px;}
._24{width:38.980560px;}
._23{width:40.027680px;}
._15{width:41.063760px;}
._14{width:42.668640px;}
._20{width:43.684560px;}
._1f{width:44.820000px;}
._2c{width:46.672560px;}
._2b{width:48.286080px;}
._26{width:51.572880px;}
._27{width:52.588800px;}
._32{width:54.389520px;}
._29{width:55.568880px;}
._2a{width:57.138480px;}
._31{width:58.556880px;}
._30{width:61.249440px;}
._21{width:62.449200px;}
._2e{width:68.955120px;}
._2f{width:70.038720px;}
._1c{width:76.433040px;}
._2d{width:116.292960px;}
._33{width:189.655920px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:19.056300px;}
.y40{bottom:24.298200px;}
.y42{bottom:35.256300px;}
.y41{bottom:51.456300px;}
.yb2{bottom:114.156000px;}
.y3f{bottom:117.936000px;}
.y3b{bottom:118.296000px;}
.y7e{bottom:125.136000px;}
.y9b{bottom:126.036000px;}
.ya8{bottom:126.396000px;}
.y3e{bottom:135.216000px;}
.y3a{bottom:135.576000px;}
.ya7{bottom:140.256000px;}
.y7d{bottom:142.416000px;}
.y9a{bottom:143.316000px;}
.y39{bottom:152.850000px;}
.ya6{bottom:154.110000px;}
.y7c{bottom:159.690000px;}
.y99{bottom:160.590000px;}
.ya5{bottom:167.790000px;}
.y38{bottom:170.130000px;}
.y7b{bottom:176.970000px;}
.y98{bottom:177.690000px;}
.ya4{bottom:178.590000px;}
.y37{bottom:187.230000px;}
.y7a{bottom:194.250000px;}
.y97{bottom:194.970000px;}
.y36{bottom:204.510000px;}
.y79{bottom:211.530000px;}
.y96{bottom:212.250000px;}
.y35{bottom:221.790000px;}
.y78{bottom:228.630000px;}
.y95{bottom:229.530000px;}
.y34{bottom:239.070000px;}
.y77{bottom:245.910000px;}
.y94{bottom:246.810000px;}
.y33{bottom:256.350000px;}
.y76{bottom:263.190000px;}
.y93{bottom:263.910000px;}
.y32{bottom:273.630000px;}
.y75{bottom:280.470000px;}
.y92{bottom:281.190000px;}
.y31{bottom:290.370000px;}
.y3d{bottom:290.730000px;}
.y74{bottom:297.750000px;}
.y91{bottom:298.470000px;}
.y30{bottom:307.650000px;}
.y3c{bottom:308.010000px;}
.y73{bottom:315.075000px;}
.y90{bottom:315.795000px;}
.y2f{bottom:325.335000px;}
.y72{bottom:332.175000px;}
.y8f{bottom:333.075000px;}
.y2e{bottom:342.615000px;}
.y71{bottom:349.455000px;}
.y8e{bottom:350.355000px;}
.y2d{bottom:359.535000px;}
.yab{bottom:366.375000px;}
.y70{bottom:366.735000px;}
.y8d{bottom:367.455000px;}
.y2c{bottom:377.175000px;}
.yaa{bottom:383.655000px;}
.yac{bottom:384.015000px;}
.y8c{bottom:384.735000px;}
.y2b{bottom:394.275000px;}
.ya9{bottom:400.935000px;}
.y6f{bottom:401.295000px;}
.y8b{bottom:402.015000px;}
.ya3{bottom:403.995000px;}
.y2a{bottom:411.555000px;}
.y6e{bottom:418.215000px;}
.ya2{bottom:418.575000px;}
.y8a{bottom:419.295000px;}
.y29{bottom:428.835000px;}
.y6d{bottom:435.675000px;}
.y89{bottom:436.575000px;}
.y28{bottom:446.115000px;}
.y6c{bottom:452.955000px;}
.y88{bottom:453.855000px;}
.y27{bottom:463.395000px;}
.y6b{bottom:470.235000px;}
.y87{bottom:470.955000px;}
.y26{bottom:480.495000px;}
.y6a{bottom:487.515000px;}
.y86{bottom:488.235000px;}
.y25{bottom:497.775000px;}
.y69{bottom:504.795000px;}
.y85{bottom:505.515000px;}
.y24{bottom:515.055000px;}
.y68{bottom:521.895000px;}
.y84{bottom:522.795000px;}
.y23{bottom:532.335000px;}
.y67{bottom:539.175000px;}
.y83{bottom:539.355000px;}
.y22{bottom:549.615000px;}
.y82{bottom:553.035000px;}
.y66{bottom:556.455000px;}
.y21{bottom:566.895000px;}
.y65{bottom:573.735000px;}
.y81{bottom:577.695000px;}
.y20{bottom:584.025000px;}
.y64{bottom:591.045000px;}
.y1f{bottom:601.305000px;}
.y63{bottom:608.325000px;}
.y1e{bottom:618.585000px;}
.yb1{bottom:625.065000px;}
.y62{bottom:625.425000px;}
.y1d{bottom:635.865000px;}
.yb0{bottom:642.345000px;}
.y61{bottom:642.705000px;}
.y1c{bottom:653.145000px;}
.ya1{bottom:659.625000px;}
.y60{bottom:659.985000px;}
.y1b{bottom:670.425000px;}
.ya0{bottom:676.905000px;}
.y5f{bottom:677.265000px;}
.y1a{bottom:687.525000px;}
.y9f{bottom:694.185000px;}
.y5e{bottom:694.545000px;}
.y19{bottom:704.805000px;}
.y5d{bottom:711.825000px;}
.y18{bottom:722.085000px;}
.y5c{bottom:728.925000px;}
.y17{bottom:739.365000px;}
.y5b{bottom:746.205000px;}
.y16{bottom:756.645000px;}
.y5a{bottom:763.485000px;}
.y15{bottom:773.925000px;}
.yaf{bottom:780.405000px;}
.y59{bottom:780.765000px;}
.yae{bottom:797.685000px;}
.y58{bottom:798.045000px;}
.y14{bottom:808.305000px;}
.y57{bottom:815.145000px;}
.y13{bottom:825.585000px;}
.y56{bottom:832.425000px;}
.y12{bottom:842.145000px;}
.y55{bottom:849.705000px;}
.y80{bottom:852.405000px;}
.y11{bottom:855.870000px;}
.y54{bottom:867.030000px;}
.y10{bottom:869.730000px;}
.yf{bottom:883.590000px;}
.y53{bottom:884.310000px;}
.ye{bottom:897.270000px;}
.y52{bottom:901.590000px;}
.yd{bottom:911.130000px;}
.y51{bottom:918.690000px;}
.yc{bottom:924.990000px;}
.y50{bottom:935.970000px;}
.yb{bottom:938.670000px;}
.ya{bottom:952.530000px;}
.y4f{bottom:953.250000px;}
.y9{bottom:966.390000px;}
.y4e{bottom:970.530000px;}
.y8{bottom:980.790000px;}
.y4d{bottom:987.810000px;}
.y7{bottom:997.710000px;}
.y4c{bottom:1005.090000px;}
.y9e{bottom:1021.830000px;}
.y4b{bottom:1022.190000px;}
.y6{bottom:1032.630000px;}
.y9d{bottom:1039.110000px;}
.y4a{bottom:1039.470000px;}
.y5{bottom:1049.910000px;}
.y9c{bottom:1056.390000px;}
.y49{bottom:1056.750000px;}
.y4{bottom:1067.550000px;}
.y48{bottom:1074.030000px;}
.y3{bottom:1088.790000px;}
.yad{bottom:1090.950000px;}
.y47{bottom:1091.310000px;}
.y46{bottom:1108.590000px;}
.y2{bottom:1112.910000px;}
.y45{bottom:1125.690000px;}
.y1{bottom:1137.060000px;}
.y44{bottom:1142.640000px;}
.y7f{bottom:1143.000000px;}
.he{height:47.321367px;}
.h7{height:47.344922px;}
.h6{height:49.583118px;}
.hc{height:53.573906px;}
.h9{height:58.621992px;}
.hb{height:58.640625px;}
.h4{height:58.651172px;}
.h8{height:60.226875px;}
.hd{height:61.423863px;}
.ha{height:62.115000px;}
.hf{height:65.518594px;}
.h5{height:66.543750px;}
.h3{height:70.628906px;}
.h2{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:729.486000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:84.960000px;}
.x4{left:88.560000px;}
.xe{left:93.420000px;}
.x1{left:98.856000px;}
.x9{left:106.236000px;}
.x7{left:111.816000px;}
.x8{left:127.656000px;}
.x6{left:215.490000px;}
.x2{left:329.475000px;}
.xf{left:419.655000px;}
.x3{left:446.475000px;}
.xa{left:473.115000px;}
.xc{left:481.575000px;}
.xb{left:494.385000px;}
.x10{left:502.845000px;}
.xd{left:807.990000px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v3{vertical-align:-61.440000pt;}
.v5{vertical-align:-51.840000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.ls15{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.478933pt;}
.ls11{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls0{letter-spacing:13.600000pt;}
.ls1{letter-spacing:51.567360pt;}
.ls12{letter-spacing:62.346667pt;}
.ls9{letter-spacing:62.368000pt;}
.lse{letter-spacing:73.019307pt;}
.ls5{letter-spacing:138.528000pt;}
.ls13{letter-spacing:1272.106667pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws3{word-spacing:-11.198933pt;}
.ws1{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-2.175360pt;}
._0{margin-left:-1.123200pt;}
._2{width:0.903040pt;}
._1{width:2.251093pt;}
._6{width:3.359573pt;}
._8{width:4.384000pt;}
._a{width:5.524480pt;}
._9{width:6.427520pt;}
._b{width:7.489920pt;}
._5{width:8.658560pt;}
._4{width:9.744427pt;}
._1b{width:10.677120pt;}
._c{width:12.164480pt;}
._7{width:14.661120pt;}
._22{width:15.617280pt;}
._1d{width:16.520320pt;}
._13{width:17.431040pt;}
._12{width:18.485760pt;}
._1e{width:19.877120pt;}
._e{width:20.856747pt;}
._f{width:21.764907pt;}
._17{width:23.157547pt;}
._16{width:24.116480pt;}
._25{width:25.232000pt;}
._18{width:26.294400pt;}
._d{width:27.675520pt;}
._19{width:28.950400pt;}
._1a{width:29.895467pt;}
._28{width:31.086293pt;}
._11{width:32.814720pt;}
._10{width:33.720107pt;}
._24{width:34.649387pt;}
._23{width:35.580160pt;}
._15{width:36.501120pt;}
._14{width:37.927680pt;}
._20{width:38.830720pt;}
._1f{width:39.840000pt;}
._2c{width:41.486720pt;}
._2b{width:42.920960pt;}
._26{width:45.842560pt;}
._27{width:46.745600pt;}
._32{width:48.346240pt;}
._29{width:49.394560pt;}
._2a{width:50.789760pt;}
._31{width:52.050560pt;}
._30{width:54.443947pt;}
._21{width:55.510400pt;}
._2e{width:61.293440pt;}
._2f{width:62.256640pt;}
._1c{width:67.940480pt;}
._2d{width:103.371520pt;}
._33{width:168.583040pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:16.938933pt;}
.y40{bottom:21.598400pt;}
.y42{bottom:31.338933pt;}
.y41{bottom:45.738933pt;}
.yb2{bottom:101.472000pt;}
.y3f{bottom:104.832000pt;}
.y3b{bottom:105.152000pt;}
.y7e{bottom:111.232000pt;}
.y9b{bottom:112.032000pt;}
.ya8{bottom:112.352000pt;}
.y3e{bottom:120.192000pt;}
.y3a{bottom:120.512000pt;}
.ya7{bottom:124.672000pt;}
.y7d{bottom:126.592000pt;}
.y9a{bottom:127.392000pt;}
.y39{bottom:135.866667pt;}
.ya6{bottom:136.986667pt;}
.y7c{bottom:141.946667pt;}
.y99{bottom:142.746667pt;}
.ya5{bottom:149.146667pt;}
.y38{bottom:151.226667pt;}
.y7b{bottom:157.306667pt;}
.y98{bottom:157.946667pt;}
.ya4{bottom:158.746667pt;}
.y37{bottom:166.426667pt;}
.y7a{bottom:172.666667pt;}
.y97{bottom:173.306667pt;}
.y36{bottom:181.786667pt;}
.y79{bottom:188.026667pt;}
.y96{bottom:188.666667pt;}
.y35{bottom:197.146667pt;}
.y78{bottom:203.226667pt;}
.y95{bottom:204.026667pt;}
.y34{bottom:212.506667pt;}
.y77{bottom:218.586667pt;}
.y94{bottom:219.386667pt;}
.y33{bottom:227.866667pt;}
.y76{bottom:233.946667pt;}
.y93{bottom:234.586667pt;}
.y32{bottom:243.226667pt;}
.y75{bottom:249.306667pt;}
.y92{bottom:249.946667pt;}
.y31{bottom:258.106667pt;}
.y3d{bottom:258.426667pt;}
.y74{bottom:264.666667pt;}
.y91{bottom:265.306667pt;}
.y30{bottom:273.466667pt;}
.y3c{bottom:273.786667pt;}
.y73{bottom:280.066667pt;}
.y90{bottom:280.706667pt;}
.y2f{bottom:289.186667pt;}
.y72{bottom:295.266667pt;}
.y8f{bottom:296.066667pt;}
.y2e{bottom:304.546667pt;}
.y71{bottom:310.626667pt;}
.y8e{bottom:311.426667pt;}
.y2d{bottom:319.586667pt;}
.yab{bottom:325.666667pt;}
.y70{bottom:325.986667pt;}
.y8d{bottom:326.626667pt;}
.y2c{bottom:335.266667pt;}
.yaa{bottom:341.026667pt;}
.yac{bottom:341.346667pt;}
.y8c{bottom:341.986667pt;}
.y2b{bottom:350.466667pt;}
.ya9{bottom:356.386667pt;}
.y6f{bottom:356.706667pt;}
.y8b{bottom:357.346667pt;}
.ya3{bottom:359.106667pt;}
.y2a{bottom:365.826667pt;}
.y6e{bottom:371.746667pt;}
.ya2{bottom:372.066667pt;}
.y8a{bottom:372.706667pt;}
.y29{bottom:381.186667pt;}
.y6d{bottom:387.266667pt;}
.y89{bottom:388.066667pt;}
.y28{bottom:396.546667pt;}
.y6c{bottom:402.626667pt;}
.y88{bottom:403.426667pt;}
.y27{bottom:411.906667pt;}
.y6b{bottom:417.986667pt;}
.y87{bottom:418.626667pt;}
.y26{bottom:427.106667pt;}
.y6a{bottom:433.346667pt;}
.y86{bottom:433.986667pt;}
.y25{bottom:442.466667pt;}
.y69{bottom:448.706667pt;}
.y85{bottom:449.346667pt;}
.y24{bottom:457.826667pt;}
.y68{bottom:463.906667pt;}
.y84{bottom:464.706667pt;}
.y23{bottom:473.186667pt;}
.y67{bottom:479.266667pt;}
.y83{bottom:479.426667pt;}
.y22{bottom:488.546667pt;}
.y82{bottom:491.586667pt;}
.y66{bottom:494.626667pt;}
.y21{bottom:503.906667pt;}
.y65{bottom:509.986667pt;}
.y81{bottom:513.506667pt;}
.y20{bottom:519.133333pt;}
.y64{bottom:525.373333pt;}
.y1f{bottom:534.493333pt;}
.y63{bottom:540.733333pt;}
.y1e{bottom:549.853333pt;}
.yb1{bottom:555.613333pt;}
.y62{bottom:555.933333pt;}
.y1d{bottom:565.213333pt;}
.yb0{bottom:570.973333pt;}
.y61{bottom:571.293333pt;}
.y1c{bottom:580.573333pt;}
.ya1{bottom:586.333333pt;}
.y60{bottom:586.653333pt;}
.y1b{bottom:595.933333pt;}
.ya0{bottom:601.693333pt;}
.y5f{bottom:602.013333pt;}
.y1a{bottom:611.133333pt;}
.y9f{bottom:617.053333pt;}
.y5e{bottom:617.373333pt;}
.y19{bottom:626.493333pt;}
.y5d{bottom:632.733333pt;}
.y18{bottom:641.853333pt;}
.y5c{bottom:647.933333pt;}
.y17{bottom:657.213333pt;}
.y5b{bottom:663.293333pt;}
.y16{bottom:672.573333pt;}
.y5a{bottom:678.653333pt;}
.y15{bottom:687.933333pt;}
.yaf{bottom:693.693333pt;}
.y59{bottom:694.013333pt;}
.yae{bottom:709.053333pt;}
.y58{bottom:709.373333pt;}
.y14{bottom:718.493333pt;}
.y57{bottom:724.573333pt;}
.y13{bottom:733.853333pt;}
.y56{bottom:739.933333pt;}
.y12{bottom:748.573333pt;}
.y55{bottom:755.293333pt;}
.y80{bottom:757.693333pt;}
.y11{bottom:760.773333pt;}
.y54{bottom:770.693333pt;}
.y10{bottom:773.093333pt;}
.yf{bottom:785.413333pt;}
.y53{bottom:786.053333pt;}
.ye{bottom:797.573333pt;}
.y52{bottom:801.413333pt;}
.yd{bottom:809.893333pt;}
.y51{bottom:816.613333pt;}
.yc{bottom:822.213333pt;}
.y50{bottom:831.973333pt;}
.yb{bottom:834.373333pt;}
.ya{bottom:846.693333pt;}
.y4f{bottom:847.333333pt;}
.y9{bottom:859.013333pt;}
.y4e{bottom:862.693333pt;}
.y8{bottom:871.813333pt;}
.y4d{bottom:878.053333pt;}
.y7{bottom:886.853333pt;}
.y4c{bottom:893.413333pt;}
.y9e{bottom:908.293333pt;}
.y4b{bottom:908.613333pt;}
.y6{bottom:917.893333pt;}
.y9d{bottom:923.653333pt;}
.y4a{bottom:923.973333pt;}
.y5{bottom:933.253333pt;}
.y9c{bottom:939.013333pt;}
.y49{bottom:939.333333pt;}
.y4{bottom:948.933333pt;}
.y48{bottom:954.693333pt;}
.y3{bottom:967.813333pt;}
.yad{bottom:969.733333pt;}
.y47{bottom:970.053333pt;}
.y46{bottom:985.413333pt;}
.y2{bottom:989.253333pt;}
.y45{bottom:1000.613333pt;}
.y1{bottom:1010.720000pt;}
.y44{bottom:1015.680000pt;}
.y7f{bottom:1016.000000pt;}
.he{height:42.063437pt;}
.h7{height:42.084375pt;}
.h6{height:44.073883pt;}
.hc{height:47.621250pt;}
.h9{height:52.108438pt;}
.hb{height:52.125000pt;}
.h4{height:52.134375pt;}
.h8{height:53.535000pt;}
.hd{height:54.598989pt;}
.ha{height:55.213333pt;}
.hf{height:58.238750pt;}
.h5{height:59.150000pt;}
.h3{height:62.781250pt;}
.h2{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:648.432000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:75.520000pt;}
.x4{left:78.720000pt;}
.xe{left:83.040000pt;}
.x1{left:87.872000pt;}
.x9{left:94.432000pt;}
.x7{left:99.392000pt;}
.x8{left:113.472000pt;}
.x6{left:191.546667pt;}
.x2{left:292.866667pt;}
.xf{left:373.026667pt;}
.x3{left:396.866667pt;}
.xa{left:420.546667pt;}
.xc{left:428.066667pt;}
.xb{left:439.453333pt;}
.x10{left:446.973333pt;}
.xd{left:718.213333pt;}
}




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