
    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_12cb30b9014c98e437d4fe99.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_692becab544e644cdf8e5c96.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bacfc3992a15810748a541cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_7157438fa252c5b758dfcc96.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_d378c473308818a692f741c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_26b041830cc6a0b09ca5efb6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_ec0b0c568543bdce2ba378d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_af3e87766842bd9704ce7ff9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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;}
.ls9{letter-spacing:-1.296000px;}
.lsd{letter-spacing:-1.152000px;}
.ls7{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.013440px;}
.ls3{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.613440px;}
.ls10{letter-spacing:0.666720px;}
.ls8{letter-spacing:7.344000px;}
.lsa{letter-spacing:33.264000px;}
.lsc{letter-spacing:53.424000px;}
.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:-59.760000px;}
.ws1{word-spacing:-26.658720px;}
.ws5{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.800000px;}
.ws8{word-spacing:-17.225280px;}
.ws9{word-spacing:-16.973280px;}
.ws2{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.506480px;}
.ws0{word-spacing:-15.228000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-5.907840px;}
._e{margin-left:-4.331520px;}
._c{margin-left:-2.806560px;}
._1{margin-left:-1.602000px;}
._0{width:1.026000px;}
._2{width:2.124960px;}
._3{width:3.396240px;}
._4{width:5.169600px;}
._6{width:6.305520px;}
._7{width:7.666560px;}
._8{width:9.252720px;}
._9{width:10.398240px;}
._b{width:11.892240px;}
._a{width:12.908160px;}
._d{width:14.085360px;}
._5{width:15.212880px;}
._14{width:17.196000px;}
._12{width:18.606000px;}
._1c{width:21.096000px;}
._1b{width:22.644000px;}
._1a{width:23.724000px;}
._19{width:24.984000px;}
._18{width:26.064000px;}
._13{width:27.576000px;}
._15{width:28.584000px;}
._10{width:30.780000px;}
._f{width:32.184000px;}
._1e{width:33.228000px;}
._1f{width:34.272000px;}
._17{width:37.404000px;}
._16{width:38.592000px;}
._1d{width:39.744000px;}
._24{width:41.004000px;}
._23{width:42.192000px;}
._21{width:52.362000px;}
._20{width:53.712000px;}
._22{width:55.716000px;}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.980000px;}
.y3{bottom:53.280000px;}
.y2{bottom:57.600000px;}
.y1{bottom:76.680000px;}
.y68{bottom:109.656000px;}
.y90{bottom:121.536000px;}
.y39{bottom:125.136000px;}
.y6d{bottom:126.936000px;}
.y67{bottom:127.116000px;}
.y5f{bottom:135.756000px;}
.y8f{bottom:138.816000px;}
.y6c{bottom:144.036000px;}
.y66{bottom:144.216000px;}
.y38{bottom:146.736000px;}
.y77{bottom:148.716000px;}
.y8e{bottom:156.090000px;}
.y65{bottom:161.310000px;}
.y76{bottom:161.490000px;}
.y5e{bottom:162.750000px;}
.y6b{bottom:165.810000px;}
.y8d{bottom:173.370000px;}
.y37{bottom:173.730000px;}
.y64{bottom:178.770000px;}
.y6a{bottom:179.670000px;}
.y5d{bottom:189.750000px;}
.y8c{bottom:190.650000px;}
.y36{bottom:193.350000px;}
.y63{bottom:196.050000px;}
.y62{bottom:200.550000px;}
.y8b{bottom:207.750000px;}
.y35{bottom:210.810000px;}
.y75{bottom:213.330000px;}
.y61{bottom:214.230000px;}
.y5c{bottom:216.750000px;}
.y69{bottom:221.970000px;}
.y8a{bottom:225.030000px;}
.y34{bottom:227.910000px;}
.y74{bottom:230.610000px;}
.y89{bottom:242.310000px;}
.y5b{bottom:243.750000px;}
.y33{bottom:245.190000px;}
.y73{bottom:247.710000px;}
.y88{bottom:259.410000px;}
.y32{bottom:262.470000px;}
.y72{bottom:264.990000px;}
.y5a{bottom:270.750000px;}
.y87{bottom:276.690000px;}
.y31{bottom:279.570000px;}
.y71{bottom:282.090000px;}
.y86{bottom:293.970000px;}
.y30{bottom:296.850000px;}
.y59{bottom:297.750000px;}
.y70{bottom:299.370000px;}
.y85{bottom:311.250000px;}
.y2f{bottom:314.130000px;}
.y6f{bottom:317.730000px;}
.y58{bottom:324.750000px;}
.y84{bottom:328.350000px;}
.y2e{bottom:331.410000px;}
.y83{bottom:345.630000px;}
.y2d{bottom:348.690000px;}
.y57{bottom:351.750000px;}
.y82{bottom:362.955000px;}
.y2c{bottom:365.835000px;}
.y56{bottom:378.795000px;}
.y81{bottom:380.235000px;}
.y2b{bottom:383.115000px;}
.y80{bottom:397.515000px;}
.y2a{bottom:400.395000px;}
.y55{bottom:405.795000px;}
.y7f{bottom:414.795000px;}
.y29{bottom:417.675000px;}
.y7e{bottom:431.895000px;}
.y54{bottom:432.795000px;}
.y28{bottom:434.955000px;}
.y7d{bottom:449.175000px;}
.y27{bottom:452.235000px;}
.y53{bottom:459.795000px;}
.y7c{bottom:466.455000px;}
.y26{bottom:469.335000px;}
.y7b{bottom:483.735000px;}
.y25{bottom:486.615000px;}
.y52{bottom:486.795000px;}
.y7a{bottom:501.195000px;}
.y24{bottom:503.895000px;}
.y51{bottom:513.795000px;}
.y23{bottom:521.355000px;}
.yb5{bottom:521.535000px;}
.y79{bottom:522.255000px;}
.y22{bottom:538.635000px;}
.yb4{bottom:538.815000px;}
.y50{bottom:540.795000px;}
.y78{bottom:546.015000px;}
.y21{bottom:555.735000px;}
.yb3{bottom:556.095000px;}
.y4f{bottom:567.795000px;}
.y20{bottom:572.835000px;}
.yb2{bottom:573.375000px;}
.y1f{bottom:590.115000px;}
.yb1{bottom:590.655000px;}
.y4e{bottom:594.795000px;}
.y1e{bottom:607.395000px;}
.yb0{bottom:608.115000px;}
.y4d{bottom:621.825000px;}
.y1d{bottom:624.705000px;}
.yaf{bottom:625.065000px;}
.y1c{bottom:641.985000px;}
.yae{bottom:642.525000px;}
.y4c{bottom:648.825000px;}
.y1b{bottom:659.265000px;}
.yad{bottom:659.625000px;}
.y4b{bottom:675.825000px;}
.y1a{bottom:676.365000px;}
.yac{bottom:676.905000px;}
.y19{bottom:693.645000px;}
.yab{bottom:694.365000px;}
.y4a{bottom:702.825000px;}
.y18{bottom:710.925000px;}
.yaa{bottom:711.465000px;}
.y17{bottom:728.205000px;}
.ya9{bottom:728.745000px;}
.y49{bottom:729.825000px;}
.y16{bottom:745.485000px;}
.ya8{bottom:745.845000px;}
.y48{bottom:756.825000px;}
.y15{bottom:762.585000px;}
.ya7{bottom:763.305000px;}
.y14{bottom:779.865000px;}
.ya6{bottom:780.585000px;}
.y47{bottom:783.825000px;}
.y13{bottom:797.145000px;}
.ya5{bottom:797.685000px;}
.y46{bottom:810.825000px;}
.y12{bottom:814.425000px;}
.ya4{bottom:814.785000px;}
.y11{bottom:831.705000px;}
.ya3{bottom:832.245000px;}
.y45{bottom:837.825000px;}
.y10{bottom:849.165000px;}
.ya2{bottom:849.345000px;}
.y44{bottom:864.825000px;}
.yf{bottom:866.265000px;}
.ya1{bottom:866.805000px;}
.ye{bottom:879.990000px;}
.ya0{bottom:883.950000px;}
.y43{bottom:891.870000px;}
.y6e{bottom:897.810000px;}
.y9f{bottom:901.410000px;}
.yd{bottom:906.990000px;}
.y9e{bottom:918.510000px;}
.y42{bottom:918.870000px;}
.yc{bottom:927.330000px;}
.y9d{bottom:935.790000px;}
.y41{bottom:945.870000px;}
.yb{bottom:949.470000px;}
.y9c{bottom:952.890000px;}
.y9b{bottom:970.350000px;}
.y40{bottom:972.870000px;}
.ya{bottom:977.010000px;}
.y9a{bottom:987.450000px;}
.y3f{bottom:999.870000px;}
.y9{bottom:1003.830000px;}
.y99{bottom:1004.910000px;}
.y98{bottom:1022.010000px;}
.y3e{bottom:1026.870000px;}
.y8{bottom:1027.950000px;}
.y97{bottom:1039.110000px;}
.y7{bottom:1052.250000px;}
.y3d{bottom:1053.870000px;}
.y96{bottom:1056.570000px;}
.y95{bottom:1073.670000px;}
.y6{bottom:1076.370000px;}
.y3c{bottom:1080.870000px;}
.y94{bottom:1090.950000px;}
.y5{bottom:1095.810000px;}
.y3b{bottom:1107.870000px;}
.y93{bottom:1108.410000px;}
.y92{bottom:1125.330000px;}
.y3a{bottom:1134.900000px;}
.y60{bottom:1140.840000px;}
.y91{bottom:1142.820000px;}
.h3{height:14.580000px;}
.hd{height:40.550625px;}
.hc{height:50.312812px;}
.h9{height:53.573906px;}
.ha{height:54.140625px;}
.h8{height:62.327813px;}
.hb{height:64.546875px;}
.h2{height:74.004654px;}
.h4{height:75.093750px;}
.h5{height:87.695156px;}
.h6{height:87.859687px;}
.h7{height:99.874688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:48.276000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.415987px;}
.xb{left:111.815987px;}
.x7{left:148.895987px;}
.x1{left:172.469987px;}
.x8{left:246.449973px;}
.x9{left:253.109987px;}
.x2{left:281.594987px;}
.xa{left:322.454987px;}
.x4{left:362.954987px;}
.x3{left:430.455000px;}
.xe{left:629.204973px;}
.xf{left:635.909987px;}
.xc{left:698.549973px;}
.xd{left:705.209987px;}
.x6{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.152000pt;}
.lsd{letter-spacing:-1.024000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011947pt;}
.ls3{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.545280pt;}
.ls10{letter-spacing:0.592640pt;}
.ls8{letter-spacing:6.528000pt;}
.lsa{letter-spacing:29.568000pt;}
.lsc{letter-spacing:47.488000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws1{word-spacing:-23.696640pt;}
.ws5{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.600000pt;}
.ws8{word-spacing:-15.311360pt;}
.ws9{word-spacing:-15.087360pt;}
.ws2{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.672427pt;}
.ws0{word-spacing:-13.536000pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-5.251413pt;}
._e{margin-left:-3.850240pt;}
._c{margin-left:-2.494720pt;}
._1{margin-left:-1.424000pt;}
._0{width:0.912000pt;}
._2{width:1.888853pt;}
._3{width:3.018880pt;}
._4{width:4.595200pt;}
._6{width:5.604907pt;}
._7{width:6.814720pt;}
._8{width:8.224640pt;}
._9{width:9.242880pt;}
._b{width:10.570880pt;}
._a{width:11.473920pt;}
._d{width:12.520320pt;}
._5{width:13.522560pt;}
._14{width:15.285333pt;}
._12{width:16.538667pt;}
._1c{width:18.752000pt;}
._1b{width:20.128000pt;}
._1a{width:21.088000pt;}
._19{width:22.208000pt;}
._18{width:23.168000pt;}
._13{width:24.512000pt;}
._15{width:25.408000pt;}
._10{width:27.360000pt;}
._f{width:28.608000pt;}
._1e{width:29.536000pt;}
._1f{width:30.464000pt;}
._17{width:33.248000pt;}
._16{width:34.304000pt;}
._1d{width:35.328000pt;}
._24{width:36.448000pt;}
._23{width:37.504000pt;}
._21{width:46.544000pt;}
._20{width:47.744000pt;}
._22{width:49.525333pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.760000pt;}
.y3{bottom:47.360000pt;}
.y2{bottom:51.200000pt;}
.y1{bottom:68.160000pt;}
.y68{bottom:97.472000pt;}
.y90{bottom:108.032000pt;}
.y39{bottom:111.232000pt;}
.y6d{bottom:112.832000pt;}
.y67{bottom:112.992000pt;}
.y5f{bottom:120.672000pt;}
.y8f{bottom:123.392000pt;}
.y6c{bottom:128.032000pt;}
.y66{bottom:128.192000pt;}
.y38{bottom:130.432000pt;}
.y77{bottom:132.192000pt;}
.y8e{bottom:138.746667pt;}
.y65{bottom:143.386667pt;}
.y76{bottom:143.546667pt;}
.y5e{bottom:144.666667pt;}
.y6b{bottom:147.386667pt;}
.y8d{bottom:154.106667pt;}
.y37{bottom:154.426667pt;}
.y64{bottom:158.906667pt;}
.y6a{bottom:159.706667pt;}
.y5d{bottom:168.666667pt;}
.y8c{bottom:169.466667pt;}
.y36{bottom:171.866667pt;}
.y63{bottom:174.266667pt;}
.y62{bottom:178.266667pt;}
.y8b{bottom:184.666667pt;}
.y35{bottom:187.386667pt;}
.y75{bottom:189.626667pt;}
.y61{bottom:190.426667pt;}
.y5c{bottom:192.666667pt;}
.y69{bottom:197.306667pt;}
.y8a{bottom:200.026667pt;}
.y34{bottom:202.586667pt;}
.y74{bottom:204.986667pt;}
.y89{bottom:215.386667pt;}
.y5b{bottom:216.666667pt;}
.y33{bottom:217.946667pt;}
.y73{bottom:220.186667pt;}
.y88{bottom:230.586667pt;}
.y32{bottom:233.306667pt;}
.y72{bottom:235.546667pt;}
.y5a{bottom:240.666667pt;}
.y87{bottom:245.946667pt;}
.y31{bottom:248.506667pt;}
.y71{bottom:250.746667pt;}
.y86{bottom:261.306667pt;}
.y30{bottom:263.866667pt;}
.y59{bottom:264.666667pt;}
.y70{bottom:266.106667pt;}
.y85{bottom:276.666667pt;}
.y2f{bottom:279.226667pt;}
.y6f{bottom:282.426667pt;}
.y58{bottom:288.666667pt;}
.y84{bottom:291.866667pt;}
.y2e{bottom:294.586667pt;}
.y83{bottom:307.226667pt;}
.y2d{bottom:309.946667pt;}
.y57{bottom:312.666667pt;}
.y82{bottom:322.626667pt;}
.y2c{bottom:325.186667pt;}
.y56{bottom:336.706667pt;}
.y81{bottom:337.986667pt;}
.y2b{bottom:340.546667pt;}
.y80{bottom:353.346667pt;}
.y2a{bottom:355.906667pt;}
.y55{bottom:360.706667pt;}
.y7f{bottom:368.706667pt;}
.y29{bottom:371.266667pt;}
.y7e{bottom:383.906667pt;}
.y54{bottom:384.706667pt;}
.y28{bottom:386.626667pt;}
.y7d{bottom:399.266667pt;}
.y27{bottom:401.986667pt;}
.y53{bottom:408.706667pt;}
.y7c{bottom:414.626667pt;}
.y26{bottom:417.186667pt;}
.y7b{bottom:429.986667pt;}
.y25{bottom:432.546667pt;}
.y52{bottom:432.706667pt;}
.y7a{bottom:445.506667pt;}
.y24{bottom:447.906667pt;}
.y51{bottom:456.706667pt;}
.y23{bottom:463.426667pt;}
.yb5{bottom:463.586667pt;}
.y79{bottom:464.226667pt;}
.y22{bottom:478.786667pt;}
.yb4{bottom:478.946667pt;}
.y50{bottom:480.706667pt;}
.y78{bottom:485.346667pt;}
.y21{bottom:493.986667pt;}
.yb3{bottom:494.306667pt;}
.y4f{bottom:504.706667pt;}
.y20{bottom:509.186667pt;}
.yb2{bottom:509.666667pt;}
.y1f{bottom:524.546667pt;}
.yb1{bottom:525.026667pt;}
.y4e{bottom:528.706667pt;}
.y1e{bottom:539.906667pt;}
.yb0{bottom:540.546667pt;}
.y4d{bottom:552.733333pt;}
.y1d{bottom:555.293333pt;}
.yaf{bottom:555.613333pt;}
.y1c{bottom:570.653333pt;}
.yae{bottom:571.133333pt;}
.y4c{bottom:576.733333pt;}
.y1b{bottom:586.013333pt;}
.yad{bottom:586.333333pt;}
.y4b{bottom:600.733333pt;}
.y1a{bottom:601.213333pt;}
.yac{bottom:601.693333pt;}
.y19{bottom:616.573333pt;}
.yab{bottom:617.213333pt;}
.y4a{bottom:624.733333pt;}
.y18{bottom:631.933333pt;}
.yaa{bottom:632.413333pt;}
.y17{bottom:647.293333pt;}
.ya9{bottom:647.773333pt;}
.y49{bottom:648.733333pt;}
.y16{bottom:662.653333pt;}
.ya8{bottom:662.973333pt;}
.y48{bottom:672.733333pt;}
.y15{bottom:677.853333pt;}
.ya7{bottom:678.493333pt;}
.y14{bottom:693.213333pt;}
.ya6{bottom:693.853333pt;}
.y47{bottom:696.733333pt;}
.y13{bottom:708.573333pt;}
.ya5{bottom:709.053333pt;}
.y46{bottom:720.733333pt;}
.y12{bottom:723.933333pt;}
.ya4{bottom:724.253333pt;}
.y11{bottom:739.293333pt;}
.ya3{bottom:739.773333pt;}
.y45{bottom:744.733333pt;}
.y10{bottom:754.813333pt;}
.ya2{bottom:754.973333pt;}
.y44{bottom:768.733333pt;}
.yf{bottom:770.013333pt;}
.ya1{bottom:770.493333pt;}
.ye{bottom:782.213333pt;}
.ya0{bottom:785.733333pt;}
.y43{bottom:792.773333pt;}
.y6e{bottom:798.053333pt;}
.y9f{bottom:801.253333pt;}
.yd{bottom:806.213333pt;}
.y9e{bottom:816.453333pt;}
.y42{bottom:816.773333pt;}
.yc{bottom:824.293333pt;}
.y9d{bottom:831.813333pt;}
.y41{bottom:840.773333pt;}
.yb{bottom:843.973333pt;}
.y9c{bottom:847.013333pt;}
.y9b{bottom:862.533333pt;}
.y40{bottom:864.773333pt;}
.ya{bottom:868.453333pt;}
.y9a{bottom:877.733333pt;}
.y3f{bottom:888.773333pt;}
.y9{bottom:892.293333pt;}
.y99{bottom:893.253333pt;}
.y98{bottom:908.453333pt;}
.y3e{bottom:912.773333pt;}
.y8{bottom:913.733333pt;}
.y97{bottom:923.653333pt;}
.y7{bottom:935.333333pt;}
.y3d{bottom:936.773333pt;}
.y96{bottom:939.173333pt;}
.y95{bottom:954.373333pt;}
.y6{bottom:956.773333pt;}
.y3c{bottom:960.773333pt;}
.y94{bottom:969.733333pt;}
.y5{bottom:974.053333pt;}
.y3b{bottom:984.773333pt;}
.y93{bottom:985.253333pt;}
.y92{bottom:1000.293333pt;}
.y3a{bottom:1008.800000pt;}
.y60{bottom:1014.080000pt;}
.y91{bottom:1015.840000pt;}
.h3{height:12.960000pt;}
.hd{height:36.045000pt;}
.hc{height:44.722500pt;}
.h9{height:47.621250pt;}
.ha{height:48.125000pt;}
.h8{height:55.402500pt;}
.hb{height:57.375000pt;}
.h2{height:65.781915pt;}
.h4{height:66.750000pt;}
.h5{height:77.951250pt;}
.h6{height:78.097500pt;}
.h7{height:88.777500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:42.912000pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.591988pt;}
.xb{left:99.391988pt;}
.x7{left:132.351988pt;}
.x1{left:153.306655pt;}
.x8{left:219.066643pt;}
.x9{left:224.986655pt;}
.x2{left:250.306655pt;}
.xa{left:286.626655pt;}
.x4{left:322.626655pt;}
.x3{left:382.626667pt;}
.xe{left:559.293310pt;}
.xf{left:565.253322pt;}
.xc{left:620.933310pt;}
.xd{left:626.853322pt;}
.x6{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; }
  